Searched refs:ret_long (Results 1 – 1 of 1) sorted by relevance
1529 long ret_long; in profile_get_integer() local1546 ret_long = strtol (value, &end_value, 10); in profile_get_integer()1549 if ((ret_long == LONG_MIN || ret_long == LONG_MAX) && errno != 0) in profile_get_integer()1552 if ((long) (int) ret_long != ret_long) in profile_get_integer()1559 *ret_int = ret_long; in profile_get_integer()1571 unsigned long ret_long; in profile_get_uint() local1588 ret_long = strtoul (value, &end_value, 10); in profile_get_uint()1591 if ((ret_long == ULONG_MAX) && errno != 0) in profile_get_uint()1594 if ((unsigned long) (unsigned int) ret_long != ret_long) in profile_get_uint()1600 *ret_int = ret_long; in profile_get_uint()