Searched refs:ret_long (Results 1 – 1 of 1) sorted by relevance
1527 long ret_long; in profile_get_integer() local1544 ret_long = strtol (value, &end_value, 10); in profile_get_integer()1547 if ((ret_long == LONG_MIN || ret_long == LONG_MAX) && errno != 0) in profile_get_integer()1550 if ((long) (int) ret_long != ret_long) in profile_get_integer()1557 *ret_int = ret_long; in profile_get_integer()1569 unsigned long ret_long; in profile_get_uint() local1586 ret_long = strtoul (value, &end_value, 10); in profile_get_uint()1589 if ((ret_long == ULONG_MAX) && errno != 0) in profile_get_uint()1592 if ((unsigned long) (unsigned int) ret_long != ret_long) in profile_get_uint()1598 *ret_int = ret_long; in profile_get_uint()