Home | History | Annotate | Download | only in math

Lines Matching refs:j0

26   int64_t j0;
32 j0 = ((i0 >> 48) & 0x7fff) - 0x3fff;
37 if (j0 < (int32_t) (8 * sizeof (long int)) - 1)
39 if (j0 < 48)
41 if (j0 < 0)
42 return j0 < -1 ? 0 : sign;
45 i0 += 0x0000800000000000LL >> j0;
46 result = i0 >> (48 - j0);
56 else if (j0 >= 112)
57 result = ((long int) i0 << (j0 - 48)) | (i1 << (j0 - 112));
60 uint64_t j = i1 + (0x8000000000000000ULL >> (j0 - 48));
64 if (j0 == 48)
68 result = ((long int) i0 << (j0 - 48)) | (j >> (112 - j0));