Lines Matching refs:RawValue

3409   if (SegmentOffset + sizeof(RawValue) > SegmentData.size()) {  in moveNext()
3417 static_assert(sizeof(RawValue) == sizeof(MachO::dyld_chained_import_addend)); in moveNext()
3418 memcpy(&RawValue, SegmentData.data() + SegmentOffset, sizeof(RawValue)); in moveNext()
3420 sys::swapByteOrder(RawValue); in moveNext()
3426 return (RawValue >> Right) & ((1ULL << Count) - 1); in moveNext()
5150 std::array<T, N> RawValue; in getArray() local
5151 memcpy(RawValue.data(), Ptr, N * sizeof(T)); in getArray()
5153 for (auto &Element : RawValue) in getArray()
5155 return RawValue; in getArray()
5217 auto RawValue = getArray<uint32_t, 1>(*this, ImportPtr); in getDyldChainedFixupTargets() local
5219 LibOrdinal = getEncodedOrdinal<uint8_t>(RawValue[0] & 0xFF); in getDyldChainedFixupTargets()
5220 WeakImport = (RawValue[0] >> 8) & 1; in getDyldChainedFixupTargets()
5221 NameOffset = RawValue[0] >> 9; in getDyldChainedFixupTargets()
5226 auto RawValue = getArray<uint32_t, 2>(*this, ImportPtr); in getDyldChainedFixupTargets() local
5228 LibOrdinal = getEncodedOrdinal<uint8_t>(RawValue[0] & 0xFF); in getDyldChainedFixupTargets()
5229 WeakImport = (RawValue[0] >> 8) & 1; in getDyldChainedFixupTargets()
5230 NameOffset = RawValue[0] >> 9; in getDyldChainedFixupTargets()
5231 Addend = bit_cast<int32_t>(RawValue[1]); in getDyldChainedFixupTargets()
5235 auto RawValue = getArray<uint64_t, 2>(*this, ImportPtr); in getDyldChainedFixupTargets() local
5237 LibOrdinal = getEncodedOrdinal<uint16_t>(RawValue[0] & 0xFFFF); in getDyldChainedFixupTargets()
5238 NameOffset = (RawValue[0] >> 16) & 1; in getDyldChainedFixupTargets()
5239 WeakImport = RawValue[0] >> 17; in getDyldChainedFixupTargets()
5240 Addend = RawValue[1]; in getDyldChainedFixupTargets()