Lines Matching refs:arg_long
242 int64_t arg_long = 0; in str2int() local
246 if ( (rc = str2long(str, &arg_long)) != 0 ) { in str2int()
251 if (arg_long < INT32_MIN || arg_long > INT32_MAX) in str2int()
254 *int_ptr = (int32_t)arg_long; in str2int()
296 int64_t arg_long = 0; in str2short() local
300 if ( (rc = str2long(str, &arg_long)) != 0 ) { in str2short()
305 if (arg_long < INT16_MIN || arg_long > INT16_MAX) in str2short()
308 *shrt_ptr = (int16_t)arg_long; in str2short()
350 int64_t arg_long = 0; in str2char() local
354 if ((rc = str2long(str, &arg_long)) != 0) { in str2char()
358 if (arg_long < INT8_MIN || arg_long > INT8_MAX) { in str2char()
361 *chr_ptr = (uint8_t)arg_long; in str2char()