Lines Matching defs:bits
234 // The first byte of a relocation record has a tag in its low 2 bits:
279 // 00 [6 bits pc delta]
283 // [7 bits data] 0
285 // [7 bits data] 1
286 // (Bits 6..31 of pc delta, with leading zeroes
332 // Return if the pc_delta can fit in kSmallPCDeltaBits bits.
333 // Otherwise write a variable length PC jump for the bits that do
334 // not fit in the kSmallPCDeltaBits bits.
545 // Read the 32-kSmallPCDeltaBits most significant bits of the
554 // The least significant kSmallPCDeltaBits bits will be added
927 uint64_t bits = bit_cast<uint64_t, double>(value);
928 bits &= (static_cast<uint64_t>(1) << 52) - 1;
929 double mantissa = bit_cast<double, uint64_t>(bits);