Searched refs:ret_long (Results 1 – 1 of 1) sorted by relevance
1532 long ret_long; in profile_get_integer() local1549 ret_long = strtol(value, &end_value, 0); in profile_get_integer()1552 if ((ret_long == LONG_MIN || ret_long == LONG_MAX) && errno != 0) in profile_get_integer()1555 if ((long) (int) ret_long != ret_long) in profile_get_integer()1562 *ret_int = ret_long; in profile_get_integer()1574 unsigned long ret_long; in profile_get_uint() local1591 ret_long = strtoul(value, &end_value, 0); in profile_get_uint()1594 if ((ret_long == ULONG_MAX) && errno != 0) in profile_get_uint()1597 if ((unsigned long) (unsigned int) ret_long != ret_long) in profile_get_uint()1603 *ret_int = ret_long; in profile_get_uint()