HomeSort by relevance Sort by last modified time
    Searched full:hibits (Results 1 - 10 of 10) sorted by null

  /external/llvm/test/CodeGen/AArch64/
global-alignment.ll 14 ; CHECK: adrp [[HIBITS:x[0-9]+]], var32
15 ; CHECK: add x[[ADDR:[0-9]+]], [[HIBITS]], #:lo12:var32
28 ; CHECK: adrp x[[HIBITS:[0-9]+]], var64
29 ; CHECK-NOT: add x[[HIBITS]]
30 ; CHECK: ldr x0, [x[[HIBITS]], #:lo12:var64]
42 ; CHECK: adrp x[[HIBITS:[0-9]+]], var32_align64
43 ; CHECK-NOT: add x[[HIBITS]]
44 ; CHECK: ldr x0, [x[[HIBITS]], #:lo12:var32_align64]
58 ; CHECK: adrp [[HIBITS:x[0-9]+]], yet_another_var
59 ; CHECK: add x[[ADDR:[0-9]+]], [[HIBITS]], #:lo12:yet_another_va
    [all...]
  /external/compiler-rt/lib/ppc/
fixunstfdi.c 13 const doublebits hibits = { .d = x.s.hi }; local
15 const uint32_t highWordMinusOne = (uint32_t)(hibits.x >> 32) - UINT32_C(0x3ff00000);
22 uint64_t result = hibits.x & UINT64_C(0x000fffffffffffff); /* mantissa(hi) */
fixtfdi.c 15 const doublebits hibits = { .d = x.s.hi }; local
17 const uint32_t absHighWord = (uint32_t)(hibits.x >> 32) & UINT32_C(0x7fffffff);
26 int64_t result = hibits.x & INT64_C(0x000fffffffffffff); /* mantissa(hi) */
30 const int64_t hiNegationMask = ((int64_t)(hibits.x)) >> 63;
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fma.c 78 uint64_t hibits, lobits; local
82 EXTRACT_WORD64(hibits, sum.hi);
83 if ((hibits & 1) == 0) {
84 /* hibits += (int)copysign(1.0, sum.hi * sum.lo) */
86 hibits += 1 - ((hibits ^ lobits) >> 62);
87 INSERT_WORD64(sum.hi, hibits);
102 uint64_t hibits, lobits; local
118 EXTRACT_WORD64(hibits, sum.hi);
119 bits_lost = -((int)(hibits >> 52) & 0x7ff) - scale + 1
    [all...]
s_modfl.c 53 #define HIBITS (LDBL_MANT_DIG - LDBL_MANL_SIZE)
65 if (e < HIBITS) { /* Integer part is in manh. */
70 if ((GETFRAC(ux.bits.manh, HIBITS - 1 - e) |
76 ux.bits.manh >>= HIBITS - 1 - e;
77 ux.bits.manh <<= HIBITS - 1 - e;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
values.h 48 #define HIBITS MINSHORT
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
values.h 48 #define HIBITS MINSHORT
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
values.h 48 #define HIBITS MINSHORT
  /external/llvm/lib/Support/
APInt.cpp 670 /// HiBits - This function returns the high "numBits" bits of this APInt.
903 uint64_t hibits = Tmp.pVal[hiWord] << (52 - n % APINT_BITS_PER_WORD);
905 mantissa = hibits | lobits;
    [all...]
  /external/valgrind/main/coregrind/
m_transtab.c 904 UInt hiBits = (hi >> ECLASS_SHIFT) & mask;
905 if (loBits == hiBits) {
    [all...]

Completed in 331 milliseconds