Lines Matching refs:acc
39 u64 acc; member
59 u64 acc; in str_to_int_convert() local
124 for (acc = 0, any = 0;; c = *s++) { in str_to_int_convert()
135 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) { in str_to_int_convert()
139 acc *= qbase; in str_to_int_convert()
140 acc += c; in str_to_int_convert()
146 info->acc = acc; in str_to_int_convert()
165 u64 acc; in strtoq() local
173 acc = info->acc; in strtoq()
176 acc = info->neg ? LLONG_MIN : LLONG_MAX; in strtoq()
178 acc = -acc; in strtoq()
184 return acc; in strtoq()
200 u64 acc; in strtouq() local
208 acc = info->acc; in strtouq()
211 acc = ULLONG_MAX; in strtouq()
213 acc = -acc; in strtouq()
219 return acc; in strtouq()