Searched refs:lobits (Results 1 – 6 of 6) sorted by relevance
32 const doublebits lobits = {.d = x.s.lo}; in __fixtfdi() local33 int64_t tailMantissa = lobits.x & INT64_C(0x000fffffffffffff); in __fixtfdi()38 const int64_t loNegationMask = ((int64_t)(lobits.x)) >> 63; in __fixtfdi()44 const int biasedTailExponent = (int)(lobits.x >> 52) & 0x7ff; in __fixtfdi()76 const doublebits lobits = {.d = x.s.lo}; in __fixtfdi() local77 int64_t tailMantissa = lobits.x & INT64_C(0x000fffffffffffff); in __fixtfdi()84 const int biasedTailExponent = (int)(lobits.x >> 52) & 0x7ff; in __fixtfdi()
27 const doublebits lobits = {.d = x.s.lo}; in __fixunstfdi() local28 int64_t tailMantissa = lobits.x & INT64_C(0x000fffffffffffff); in __fixunstfdi()33 const int64_t negationMask = ((int64_t)(lobits.x)) >> 63; in __fixunstfdi()38 const int biasedTailExponent = (int)(lobits.x >> 52) & 0x7ff; in __fixunstfdi()
87 uint64_t hibits, lobits; in add_adjusted() local94 EXTRACT_WORD64(lobits, sum.lo); in add_adjusted()95 hibits += 1 - ((hibits ^ lobits) >> 62); in add_adjusted()111 uint64_t hibits, lobits; in add_and_denormalize() local131 EXTRACT_WORD64(lobits, sum.lo); in add_and_denormalize()132 hibits += 1 - (((hibits ^ lobits) >> 62) & 2); in add_and_denormalize()
584 uint64_t *baseptr, limit, addr, mask, lobits, bar; in pci_emul_alloc_bar() local604 addr = mask = lobits = enbit = 0; in pci_emul_alloc_bar()610 lobits = PCIM_BAR_IO_SPACE; in pci_emul_alloc_bar()625 lobits = PCIM_BAR_MEM_SPACE | PCIM_BAR_MEM_64 | in pci_emul_alloc_bar()631 lobits = PCIM_BAR_MEM_SPACE | PCIM_BAR_MEM_64; in pci_emul_alloc_bar()639 lobits = PCIM_BAR_MEM_SPACE | PCIM_BAR_MEM_32; in pci_emul_alloc_bar()658 bar = (addr & mask) | lobits; in pci_emul_alloc_bar()
851 uint64_t lobits = Tmp.U.pVal[hiWord-1] >> (11 + n % APINT_BITS_PER_WORD); in roundToDouble() local852 mantissa = hibits | lobits; in roundToDouble()
5958 int lobits = e->X_add_number & 0x3; local5959 if (((bfd_vma) e->X_add_number & 0x3C) != 0 && lobits == 0)