Lines Matching refs:num
84 commp_atoi(const char *begin, const char *end, int *num) in commp_atoi() argument
88 *num = 0; in commp_atoi()
91 *num = (*num * 10) + (*begin - '0'); in commp_atoi()
107 commp_strtoull(const char *begin, const char *end, uint64_t *num) in commp_strtoull() argument
111 *num = 0; in commp_strtoull()
114 *num = (*num * 10) + (*begin - '0'); in commp_strtoull()
130 commp_strtoub(const char *begin, const char *end, uint8_t *num) in commp_strtoub() argument
134 *num = 0; in commp_strtoub()
137 *num = (*num * 10) + (*begin - '0'); in commp_strtoub()
153 commp_atoui(const char *begin, const char *end, uint_t *num) in commp_atoui() argument
157 *num = 0; in commp_atoui()
160 *num = (*num * 10) + (*begin - '0'); in commp_atoui()
192 commp_time_to_secs(const char *begin, const char *end, uint64_t *num) in commp_time_to_secs() argument
215 if (commp_strtoull(begin, end, num) != 0) in commp_time_to_secs()
218 (*num) = (*num) * factor; in commp_time_to_secs()