HomeSort by relevance Sort by last modified time
    Searched defs:Bits (Results 101 - 125 of 465) sorted by null

1 2 3 45 6 7 8 91011>>

  /device/linaro/bootloader/edk2/PcAtChipsetPkg/Include/Register/
IoApic.h 49 } Bits;
59 } Bits;
76 } Bits;
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Acpi/Dxe/BootScriptExecutorDxe/
ScriptExecute.c 37 } Bits;
  /device/linaro/bootloader/edk2/UefiCpuPkg/Include/Register/
Microcode.h 34 } Bits;
51 } Bits;
106 /// Platform type information is encoded in the lower 8 bits of this 4-
109 /// the platform Id bits in MSR (17H) to determine whether or not an
110 /// update is appropriate to load on a processor. Multiple bits may be set
175 /// Platform type information is encoded in the lower 8 bits of this 4-
178 /// the platform Id bits in MSR (17H) to determine whether or not an
179 /// update is appropriate to load on a processor. Multiple bits may be set
  /external/llvm/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 34 // A bit vector that keeps track of which bits are used. We use this to
39 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
84 // The bits that will be stored before and after a particular vtable.
105 VTableBits *Bits;
111 return Bits < other.Bits || (Bits == other.Bits && Offset < other.Offset);
148 uint64_t minAfterBytes() const { return TM->Bits->ObjectSize - TM->Offset; }
153 return minBeforeBytes() + TM->Bits->Before.Bytes.size()
    [all...]
  /external/llvm/lib/TableGen/
TGParser.h 36 std::vector<unsigned> Bits;
41 : Name(N), Bits(B), Value(V), Loc(L) {
  /external/llvm/lib/Target/AArch64/Utils/
AArch64BaseInfo.cpp 94 uint32_t Bits;
100 Bits = (Op0 << 14) | (Op1 << 11) | (CRn << 7) | (CRm << 3) | Op2;
102 return Bits;
105 std::string AArch64SysReg::genericRegisterString(uint32_t Bits) {
106 assert(Bits < 0x10000);
107 uint32_t Op0 = (Bits >> 14) & 0x3;
108 uint32_t Op1 = (Bits >> 11) & 0x7;
109 uint32_t CRn = (Bits >> 7) & 0xf;
110 uint32_t CRm = (Bits >> 3) & 0xf;
111 uint32_t Op2 = Bits & 0x7
    [all...]
  /external/llvm/lib/Target/ARM/
ARMSubtarget.cpp 197 const FeatureBitset &Bits = getFeatureBits();
198 if ((Bits[ARM::ProcA5] || Bits[ARM::ProcA8]) && // Where this matters
ARMTargetTransformInfo.cpp 21 unsigned Bits = Ty->getPrimitiveSizeInBits();
22 if (Bits == 0 || Imm.getActiveBits() >= 64)
512 // vldN/vstN only support legal vector types of size 64 or 128 in bits.
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCTargetDesc.cpp 158 auto Bits = STI.getFeatureBits();
160 if (Bits[Hexagon::ArchV60])
162 else if (Bits[Hexagon::ArchV55])
164 else if (Bits[Hexagon::ArchV5])
166 else if (Bits[Hexagon::ArchV4])
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCCodeEmitter.cpp 111 uint64_t Bits = getBinaryCodeForInstr(MI, Fixups, STI);
120 support::endian::Writer<support::little>(OS).write<uint32_t>(Bits);
122 support::endian::Writer<support::big>(OS).write<uint32_t>(Bits);
127 // always in the top 32 bits, even on little-endian.
129 uint64_t Swapped = (Bits << 32) | (Bits >> 32);
132 support::endian::Writer<support::big>(OS).write<uint64_t>(Bits);
218 // Encode (imm, reg) as a memri, which has the low 16-bits as the
219 // displacement and the next 5 bits as the register #.
237 // Encode (imm, reg) as a memrix, which has the low 14-bits as th
    [all...]
  /external/llvm/lib/Target/SystemZ/MCTargetDesc/
SystemZMCCodeEmitter.cpp 59 // the low 12 bits are encoded before the high 8 bits.
126 uint64_t Bits = getBinaryCodeForInstr(MI, Fixups, STI);
131 OS << uint8_t(Bits >> ShiftValue);
  /external/skia/include/effects/
SkLayerDrawLooper.h 21 * Bits specifies which aspects of the layer's paint should replace the
27 enum Bits {
  /external/skqp/include/effects/
SkLayerDrawLooper.h 21 * Bits specifies which aspects of the layer's paint should replace the
27 enum Bits {
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
BitVector.h 31 BitWord *Bits; // Actual bits.
32 unsigned Size; // Size of bitvector in bits.
47 WordRef = &b.Bits[Idx / BITWORD_SIZE];
74 Bits = 0;
77 /// BitVector ctor - Creates a bitvector of specified number of bits. All
78 /// bits are initialized to the specified value.
81 Bits = (BitWord *)std::malloc(Capacity * sizeof(BitWord));
82 init_words(Bits, Capacity, t);
90 Bits = 0
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
SubtargetFeature.cpp 193 void SetImpliedBits(uint64_t &Bits, const SubtargetFeatureKV *FeatureEntry,
202 Bits |= FE.Value;
203 SetImpliedBits(Bits, &FE, FeatureTable, FeatureTableSize);
212 void ClearImpliedBits(uint64_t &Bits, const SubtargetFeatureKV *FeatureEntry,
221 Bits &= ~FE.Value;
222 ClearImpliedBits(Bits, &FE, FeatureTable, FeatureTableSize);
228 /// bits.
230 SubtargetFeatures::ToggleFeature(uint64_t Bits, const StringRef Feature,
238 if ((Bits & FeatureEntry->Value) == FeatureEntry->Value) {
239 Bits &= ~FeatureEntry->Value
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 34 // A bit vector that keeps track of which bits are used. We use this to
39 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
84 // The bits that will be stored before and after a particular vtable.
105 VTableBits *Bits;
111 return Bits < other.Bits || (Bits == other.Bits && Offset < other.Offset);
151 uint64_t minAfterBytes() const { return TM->Bits->ObjectSize - TM->Offset; }
156 return minBeforeBytes() + TM->Bits->Before.Bytes.size()
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 34 // A bit vector that keeps track of which bits are used. We use this to
39 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
84 // The bits that will be stored before and after a particular vtable.
105 VTableBits *Bits;
111 return Bits < other.Bits || (Bits == other.Bits && Offset < other.Offset);
151 uint64_t minAfterBytes() const { return TM->Bits->ObjectSize - TM->Offset; }
156 return minBeforeBytes() + TM->Bits->Before.Bytes.size()
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 34 // A bit vector that keeps track of which bits are used. We use this to
39 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
84 // The bits that will be stored before and after a particular vtable.
105 VTableBits *Bits;
111 return Bits < other.Bits || (Bits == other.Bits && Offset < other.Offset);
151 uint64_t minAfterBytes() const { return TM->Bits->ObjectSize - TM->Offset; }
156 return minBeforeBytes() + TM->Bits->Before.Bytes.size()
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 34 // A bit vector that keeps track of which bits are used. We use this to
39 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
84 // The bits that will be stored before and after a particular vtable.
105 VTableBits *Bits;
111 return Bits < other.Bits || (Bits == other.Bits && Offset < other.Offset);
151 uint64_t minAfterBytes() const { return TM->Bits->ObjectSize - TM->Offset; }
156 return minBeforeBytes() + TM->Bits->Before.Bytes.size()
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 34 // A bit vector that keeps track of which bits are used. We use this to
39 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
84 // The bits that will be stored before and after a particular vtable.
105 VTableBits *Bits;
111 return Bits < other.Bits || (Bits == other.Bits && Offset < other.Offset);
151 uint64_t minAfterBytes() const { return TM->Bits->ObjectSize - TM->Offset; }
156 return minBeforeBytes() + TM->Bits->Before.Bytes.size()
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 34 // A bit vector that keeps track of which bits are used. We use this to
39 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
84 // The bits that will be stored before and after a particular vtable.
105 VTableBits *Bits;
111 return Bits < other.Bits || (Bits == other.Bits && Offset < other.Offset);
151 uint64_t minAfterBytes() const { return TM->Bits->ObjectSize - TM->Offset; }
156 return minBeforeBytes() + TM->Bits->Before.Bytes.size()
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 34 // A bit vector that keeps track of which bits are used. We use this to
39 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
84 // The bits that will be stored before and after a particular vtable.
105 VTableBits *Bits;
111 return Bits < other.Bits || (Bits == other.Bits && Offset < other.Offset);
151 uint64_t minAfterBytes() const { return TM->Bits->ObjectSize - TM->Offset; }
156 return minBeforeBytes() + TM->Bits->Before.Bytes.size()
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 34 // A bit vector that keeps track of which bits are used. We use this to
39 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
84 // The bits that will be stored before and after a particular vtable.
105 VTableBits *Bits;
111 return Bits < other.Bits || (Bits == other.Bits && Offset < other.Offset);
151 uint64_t minAfterBytes() const { return TM->Bits->ObjectSize - TM->Offset; }
156 return minBeforeBytes() + TM->Bits->Before.Bytes.size()
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 34 // A bit vector that keeps track of which bits are used. We use this to
39 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
84 // The bits that will be stored before and after a particular vtable.
105 VTableBits *Bits;
111 return Bits < other.Bits || (Bits == other.Bits && Offset < other.Offset);
151 uint64_t minAfterBytes() const { return TM->Bits->ObjectSize - TM->Offset; }
156 return minBeforeBytes() + TM->Bits->Before.Bytes.size()
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 34 // A bit vector that keeps track of which bits are used. We use this to
39 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
84 // The bits that will be stored before and after a particular vtable.
105 VTableBits *Bits;
111 return Bits < other.Bits || (Bits == other.Bits && Offset < other.Offset);
151 uint64_t minAfterBytes() const { return TM->Bits->ObjectSize - TM->Offset; }
156 return minBeforeBytes() + TM->Bits->Before.Bytes.size()
    [all...]

Completed in 453 milliseconds

1 2 3 45 6 7 8 91011>>