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

/darwin-on-arm/xnu/bsd/libkern/
H A Dstrtol.c113 register unsigned long acc; local
165 for (acc = 0, any = 0;; c = *s++) {
174 if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim)
178 acc *= base;
179 acc += c;
183 acc = neg ? LONG_MIN : LONG_MAX;
186 acc = -acc;
189 return (acc);
205 register unsigned long acc; local
[all...]
/darwin-on-arm/xnu/iokit/Kernel/
H A DIOStringFuncs.c130 register unsigned long acc; local
182 for (acc = 0, any = 0;; c = *s++) {
191 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim) )
195 acc *= base;
196 acc += c;
200 acc = neg ? LONG_MIN : LONG_MAX;
203 acc = -acc;
215 return (acc);
222 register unsigned long acc; local
300 register u_quad_t acc; local
403 register u_quad_t acc; local
[all...]
/darwin-on-arm/xnu/osfmk/i386/
H A Dseg.h147 #define MAKE_REAL_DESCRIPTOR(base,lim,gran,acc) { \
153 .access = acc, \
H A Dmp_desc.c330 uint8_t acc; local
335 acc = desc[7];
340 desc[5] = acc;
/darwin-on-arm/xnu/libkern/c++/
H A DOSUnserializeXML.y549 int numeq = 0, acc = 0, cntr = 0;
569 acc <<= 6;
570 acc += __CFPLDataDecodeTable[c];
576 tmpbuf[tmpbufpos++] = (acc >> 16) & 0xff;
578 tmpbuf[tmpbufpos++] = (acc >> 8) & 0xff;
580 tmpbuf[tmpbufpos++] = acc & 0xff;

Completed in 30 milliseconds