Searched refs:ret_long (Results 1 – 1 of 1) sorted by relevance
1536 long ret_long; in profile_get_integer() local1553 ret_long = strtol(value, &end_value, 0); in profile_get_integer()1556 if ((ret_long == LONG_MIN || ret_long == LONG_MAX) && errno != 0) in profile_get_integer()1559 if ((long) (int) ret_long != ret_long) in profile_get_integer()1566 *ret_int = ret_long; in profile_get_integer()1578 unsigned long ret_long; in profile_get_uint() local1595 ret_long = strtoul(value, &end_value, 0); in profile_get_uint()1598 if ((ret_long == ULONG_MAX) && errno != 0) in profile_get_uint()1601 if ((unsigned long) (unsigned int) ret_long != ret_long) in profile_get_uint()1607 *ret_int = ret_long; in profile_get_uint()