Searched refs:xc (Results 1 – 2 of 2) sorted by relevance
/picolibc-3.7.0-3.6.0/newlib/libc/stdlib/ |
D | mprec.c | 363 __ULong *x, *xa, *xae, *xb, *xbe, *xc, *xc0; in mult() local 399 xc = xc0; in mult() 403 z = (*x & 0xffff) * y + (*xc & 0xffff) + carry; in mult() 405 z2 = (*x++ >> 16) * y + (*xc >> 16) + carry; in mult() 407 Storeinc (xc, z2, z); in mult() 410 *xc = carry; in mult() 415 xc = xc0; in mult() 417 z2 = *xc; in mult() 420 z = (*x & 0xffff) * y + (*xc >> 16) + carry; in mult() 422 Storeinc (xc, z, z2); in mult() [all …]
|
D | strtodg.c | 59 __ULong carry, *xc, *xa, *xb, *xe, y; in sum() local 74 xc = c->_x; in sum() 75 xe = xc + b->_wds; in sum() 82 Storeinc(xc, z, y); in sum() 84 while(xc < xe); in sum() 86 while(xc < xe) { in sum() 91 Storeinc(xc, z, y); in sum() 97 *xc++ = y & 0xffff; in sum() 99 while(xc < xe); in sum() 101 while(xc < xe) { in sum() [all …]
|