Searched refs:arg_long (Results 1 – 1 of 1) sorted by relevance
242 int64_t arg_long = 0; in str2int() local246 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() local300 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() local354 if ((rc = str2long(str, &arg_long)) != 0) { in str2char()[all …]