Searched refs:acc (Results 1 - 3 of 3) sorted by relevance

/bind-9.6-ESV-R11/lib/isc/
H A Dstrtoul.c72 unsigned long acc; local
98 for (acc = 0, any = 0;; c = *s++) {
109 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
113 acc *= base;
114 acc += c;
118 acc = ULONG_MAX;
121 acc = -acc;
124 return (acc);
[all...]
H A Dsafe.c32 isc_uint8_t acc = 0; local
38 acc |= *p1++ ^ *p2++;
41 return (ISC_TF(acc == 0));
/bind-9.6-ESV-R11/lib/lwres/
H A Dstrtoul.c78 unsigned long acc; local
104 for (acc = 0, any = 0;; c = *s++) {
115 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
119 acc *= base;
120 acc += c;
124 acc = ULONG_MAX;
127 acc = -acc;
130 return (acc);
[all...]

Completed in 10 milliseconds