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

/bind-9.11.3/lib/isc/
H A Dstrtoul.c63 unsigned long acc; local
89 for (acc = 0, any = 0;; c = *s++) {
100 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
104 acc *= base;
105 acc += c;
109 acc = ULONG_MAX;
112 acc = -acc;
115 return (acc);
[all...]
H A Dsafe.c27 isc_uint8_t acc = 0; local
33 acc |= *p1++ ^ *p2++;
36 return (ISC_TF(acc == 0));
/bind-9.11.3/lib/lwres/
H A Dcompat.c68 unsigned long acc; local
94 for (acc = 0, any = 0;; c = *s++) {
105 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
109 acc *= base;
110 acc += c;
114 acc = ULONG_MAX;
117 /* XXX: acc was declared unsigned! */
118 acc = -acc;
[all...]

Completed in 10 milliseconds