Searched defs:xc (Results 1 - 4 of 4) sorted by relevance
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/gdtoa/ |
H A D | sum.c | 45 ULong carry, *xc, *xa, *xb, *xe, y; local 60 xc = c->x; 61 xe = xc + b->wds; 68 Storeinc(xc, z, y); 70 while(xc < xe); 72 while(xc < xe) { 77 Storeinc(xc, z, y); 83 *xc++ = y & 0xffff; 85 while(xc < xe); 87 while(xc < x [all...] |
H A D | misc.c | 282 ULong *x, *xa, *xae, *xb, *xbe, *xc, *xc0; local 318 xc = xc0; 321 z = *x++ * (ULLong)y + *xc + carry; 324 *xc++ = (uint32_t)(z & 0xffffffffUL); 328 *xc = (uint32_t)carry; 336 xc = xc0; 339 z = (*x & 0xffff) * y + (*xc & 0xffff) + carry; 341 z2 = (*x++ >> 16) * y + (*xc >> 16) + carry; 343 Storeinc(xc, z2, z); 346 *xc 557 ULong *xa, *xae, *xb, *xbe, *xc; local [all...] |
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/ |
H A D | dt_provider.c | 244 int i, nc, xc; local 272 xc = i; 280 xargs = dt_probe_alloc_args(pvp, xc); 283 if ((xc != 0 && xargs == NULL) || (nc != 0 && nargs == NULL)) 296 nargs, nc, xargs, xc)) == NULL) { 308 for (adp = adv, i = 0; i < xc; i++, adp++) {
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/ |
H A D | prdtoa.c | 840 ULong *x, *xa, *xae, *xb, *xbe, *xc, *xc0; local 874 xc = xc0; 877 z = *x++ * (ULLong)y + *xc + carry; 879 *xc++ = z & FFFFFFFF; 882 *xc = carry; 890 xc = xc0; 893 z = (*x & 0xffff) * y + (*xc & 0xffff) + carry; 895 z2 = (*x++ >> 16) * y + (*xc >> 16) + carry; 897 Storeinc(xc, z2, z); 900 *xc 1103 ULong *xa, *xae, *xb, *xbe, *xc; local [all...] |
Completed in 1718 milliseconds