Searched refs:arg_ulong (Results 1 – 1 of 1) sorted by relevance
269 uint64_t arg_ulong = 0; in str2uint() local273 if ( (rc = str2ulong(str, &arg_ulong)) != 0) { in str2uint()278 if (arg_ulong > UINT32_MAX) in str2uint()281 *uint_ptr = (uint32_t)arg_ulong; in str2uint()323 uint64_t arg_ulong = 0; in str2ushort() local327 if ( (rc = str2ulong(str, &arg_ulong)) != 0 ) { in str2ushort()332 if (arg_ulong > UINT16_MAX) in str2ushort()335 *ushrt_ptr = (uint16_t)arg_ulong; in str2ushort()376 uint64_t arg_ulong = 0; in str2uchar() local380 if ( (rc = str2ulong(str, &arg_ulong)) != 0 ) { in str2uchar()[all …]