Home
last modified time | relevance | path

Searched refs:pint (Results 1 – 4 of 4) sorted by relevance

/Linux-v4.19/lib/
Dcmdline.c26 static int get_range(char **str, int *pint, int n) in get_range() argument
32 inc_counter = upper_range - *pint; in get_range()
33 for (x = *pint; n && x < upper_range; x++, n--) in get_range()
34 *pint++ = x; in get_range()
53 int get_option(char **str, int *pint) in get_option() argument
59 *pint = simple_strtol(cur, str, 0); in get_option()
/Linux-v4.19/drivers/staging/rtlwifi/rtl8822be/
Dphy.c700 static bool _rtl8822be_get_integer_from_string(char *str, u8 *pint) in _rtl8822be_get_integer_from_string() argument
703 *pint = 0; in _rtl8822be_get_integer_from_string()
707 *pint *= 10; in _rtl8822be_get_integer_from_string()
708 *pint += (str[i] - '0'); in _rtl8822be_get_integer_from_string()
/Linux-v4.19/include/linux/
Dkernel.h503 extern int get_option(char **str, int *pint);
/Linux-v4.19/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/
Dphy.c1611 static bool _rtl8812ae_get_integer_from_string(char *str, u8 *pint) in _rtl8812ae_get_integer_from_string() argument
1614 *pint = 0; in _rtl8812ae_get_integer_from_string()
1618 *pint *= 10; in _rtl8812ae_get_integer_from_string()
1619 *pint += (str[i] - '0'); in _rtl8812ae_get_integer_from_string()