• Home
  • Raw
  • Download

Lines Matching refs:ULong

154 typedef uint32_t ULong;  typedef
179 typedef union { double d; ULong L[2]; } U;
324 ULong x[1];
365 len = (sizeof(Bigint) + (x-1)*sizeof(ULong) + sizeof(double) - 1) in Balloc()
415 len = (sizeof(Bigint) + (x-1)*sizeof(ULong) + sizeof(double) - 1) in Balloc()
451 ULong *x; in multadd()
462 *x++ = (ULong)(y & FFFFFFFF); in multadd()
476 b->x[wds++] = (ULong)carry; in multadd()
489 s2b(const char *s, int nd0, int nd, ULong y9) in s2b()
524 hi0bits(ULong x) in hi0bits()
556 lo0bits(ULong *y) in lo0bits()
559 ULong x = *y; in lo0bits()
621 ULong *x, *xa, *xae, *xb, *xbe, *xc, *xc0; in mult()
622 ULong y; in mult()
663 *xc++ = (ULong)(z & FFFFFFFF); in mult()
666 *xc = (ULong)carry; in mult()
796 ULong *x, *x1, *xe, z; in lshift()
841 ULong *xa, *xa0, *xb, *xb0; in cmp()
876 ULong *xa, *xae, *xb, *xbe, *xc; in diff()
910 borrow = y >> 32 & (ULong)1; in diff()
911 *xc++ = (ULong)(y & FFFFFFFF); in diff()
916 borrow = y >> 32 & (ULong)1; in diff()
917 *xc++ = (ULong)(y & FFFFFFFF); in diff()
945 ULong *xa, *xa0, w, y, z; in b2d()
1061 ULong *x, y, z; in d2b()
1162 ULong *bx, *bxe, q, *sx, *sxe; in quorem()
1188 borrow = y >> 32 & (ULong)1; in quorem()
1189 *bx++ = (ULong)(y & FFFFFFFF); in quorem()
1209 borrow = y >> 32 & (ULong)1; in quorem()
1210 *bx++ = (ULong)(y & FFFFFFFF); in quorem()
1441 ULong y, z, abs_exp; in _Py_dg_strtod()
2077 if ((z = (ULong)aadj) <= 0) in _Py_dg_strtod()
2163 j = sizeof(ULong); in rv_alloc()
2165 sizeof(Bigint) - sizeof(ULong) - sizeof(int) + j <= (unsigned)i; in rv_alloc()
2285 ULong x; in _Py_dg_dtoa()