| /openbsd-src/gnu/llvm/llvm/tools/llvm-exegesis/lib/ |
| H A D | CodeTemplate.cpp | 79 StringRef getName(ExecutionMode Bit) { in getName() argument 80 assert(isEnumValue(Bit) && "Bit must be a power of two"); in getName() 81 switch (Bit) { in getName() 117 for (const auto Bit : getAllExecutionBits()) in getExecutionModeBits() local 118 if ((Execution & Bit) == Bit) in getExecutionModeBits() 119 Result.push_back(Bit); in getExecutionModeBits()
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerTracePC.h | 226 unsigned Bit = 0; in CounterToFeature() local 227 /**/ if (Counter >= 128) Bit = 7; in CounterToFeature() 228 else if (Counter >= 32) Bit = 6; in CounterToFeature() 229 else if (Counter >= 16) Bit = 5; in CounterToFeature() 230 else if (Counter >= 8) Bit = 4; in CounterToFeature() 231 else if (Counter >= 4) Bit = 3; in CounterToFeature() 232 else if (Counter >= 3) Bit = 2; in CounterToFeature() 233 else if (Counter >= 2) Bit = 1; in CounterToFeature() 234 return Bit; in CounterToFeature()
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/ |
| H A D | size_class_map.h | 153 for (u8 Bit = 0; Bit != 64; ++Bit) { in LSBTable() local 154 if (Config::Classes[I] & (1 << Bit)) { in LSBTable() 155 Tab[I] = Bit; in LSBTable() 156 if (Bit < Min) in LSBTable() 157 Min = Bit; in LSBTable() 158 if (Bit > Max) in LSBTable() 159 Max = Bit; in LSBTable()
|
| /openbsd-src/gnu/llvm/llvm/docs/PDB/ |
| H A D | HashTable.rst | 34 | Present Bit Vector | 36 | Deleted Bit Vector | 54 - **Present Bit Vector** - A serialized bit vector which contains information 60 - **Deleted Bit Vector** - A serialized bit vector which contains information 72 Present and Deleted Bit Vectors
|
| /openbsd-src/gnu/llvm/llvm/lib/Frontend/OpenMP/ |
| H A D | OMPContext.cpp | 88 for (unsigned Bit : ActiveTraits.set_bits()) { in OMPContext() 89 TraitProperty Property = TraitProperty(Bit); in OMPContext() 136 for (unsigned Bit : VMI0.RequiredTraits.set_bits()) in isStrictSubset() local 137 if (!VMI1.RequiredTraits.test(Bit)) in isStrictSubset() 194 for (unsigned Bit : VMI.RequiredTraits.set_bits()) { in isVariantApplicableInContextHelper() local 195 TraitProperty Property = TraitProperty(Bit); in isVariantApplicableInContextHelper() 275 for (unsigned Bit : VMI.RequiredTraits.set_bits()) { in getVariantMatchScore() local 276 TraitProperty Property = TraitProperty(Bit); in getVariantMatchScore()
|
| /openbsd-src/sys/dev/eisa/ |
| H A D | eisadevs | 157 product ADI 0001 32-Bit Ethernet 175 product AIM 0002 AUVA OPTi/EISA 32-Bit 486 All-in-One System Board 293 product COG 5000 eMASTER+ AT Combo 16-Bit Workstation Ethernet 295 product COG 9002 eMASTER+ XL 32-Bit Burst-mode Ethernet 327 product CPQ 4001 32-Bit Intelligent Drive Array Controller 329 product CPQ 4010 32-Bit Intelligent Drive Array Expansion Controller 333 product CPQ 4410 Integrated 32-Bit Fast-SCSI-2 Controller 334 product CPQ 4411 32-Bit Fast-SCSI-2 Controller 345 product CPQ 6000 32-Bit DualSpeed Token Ring Controller 346 product CPQ 6001 32-Bit DualSpeed Token Ring Controller [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/TableGen/ |
| H A D | Record.h | 413 virtual Init *getBit(unsigned Bit) const = 0; 482 Init *getBit(unsigned Bit) const override { in getBit() argument 517 Init *getBit(unsigned Bit) const override { in getBit() argument 518 assert(Bit < 1 && "Bit index out of range!"); in getBit() 572 Init *getBit(unsigned Bit) const override { in getBit() argument 573 assert(Bit < NumBits && "Bit index out of range!"); in getBit() 574 return getTrailingObjects<Init *>()[Bit]; in getBit() 603 Init *getBit(unsigned Bit) const override { in getBit() argument 604 return BitInit::get(getRecordKeeper(), (Value & (1ULL << Bit)) != 0); in getBit() 633 Init *getBit(unsigned Bit) const override { in getBit() argument [all …]
|
| /openbsd-src/gnu/llvm/llvm/docs/CommandGuide/ |
| H A D | llvm-bcanalyzer.rst | 197 The total number of 32-bit integers encoded using the Variable Bit Rate 202 The total number of 64-bit integers encoded using the Variable Bit Rate encoding 208 the Variable Bit Rate encoding scheme. 213 integers had they not been compressed with the Variable Bit Rage encoding 218 The total number of bytes saved by using the Variable Bit Rate encoding scheme. 278 integers that use the Variable Bit Rate encoding scheme. 284 Bit Rate encoding scheme. 288 The total number of bytes saved in this function by using the Variable Bit
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ADT/ |
| H A D | BitVector.h | 157 for (auto Bit : Bits) in count() local 158 NumBits += llvm::popcount(Bit); in count() 164 return any_of(Bits, [](BitWord Bit) { return Bit != 0; }); in any() 425 for (auto &Bit : Bits) in flip() 426 Bit = ~Bit; in flip()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/IR/ |
| H A D | GlobalObject.h | 160 void setGlobalObjectFlag(unsigned Bit, bool Val) { in setGlobalObjectFlag() argument 161 unsigned Mask = 1 << Bit; in setGlobalObjectFlag()
|
| /openbsd-src/gnu/llvm/clang/utils/TableGen/ |
| H A D | ClangSACheckersEmitter.cpp | 67 const auto *Bit = dyn_cast<BitInit>(B->getBit(i)); in getValueFromBitsInit() local 68 if (Bit) in getValueFromBitsInit() 69 Value |= uint64_t(Bit->getValue()) << i; in getValueFromBitsInit()
|
| /openbsd-src/gnu/llvm/llvm/lib/TableGen/ |
| H A D | JSONBackend.cpp | 50 } else if (auto *Bit = dyn_cast<BitInit>(&I)) { in translateInit() local 51 return Bit->getValue() ? 1 : 0; in translateInit()
|
| H A D | Record.cpp | 438 if (auto *Bit = dyn_cast<BitInit>(getBit(i))) in convertInitializerTo() local 439 Result |= static_cast<int64_t>(Bit->getValue()) << i; in convertInitializerTo() 472 if (Init *Bit = getBit(e-i-1)) in getAsString() local 473 Result += Bit->getAsString(); in getAsString() 747 Init *OpInit::getBit(unsigned Bit) const { in getBit() 750 return VarBitInit::get(const_cast<OpInit*>(this), Bit); in getBit() 1676 Init *FoldOpInit::getBit(unsigned Bit) const { in getBit() 1677 return VarBitInit::get(const_cast<FoldOpInit *>(this), Bit); in getBit() 1739 Init *IsAOpInit::getBit(unsigned Bit) const { in getBit() 1740 return VarBitInit::get(const_cast<IsAOpInit *>(this), Bit); in getBit() [all …]
|
| /openbsd-src/gnu/llvm/llvm/docs/AMDGPU/ |
| H A D | gfx10_probe.rst | 19 Bit Number Description
|
| H A D | gfx940_probe.rst | 19 Bit Number Description
|
| H A D | gfx8_probe.rst | 19 Bit Number Description
|
| H A D | gfx90a_probe.rst | 19 Bit Number Description
|
| H A D | gfx9_probe.rst | 19 Bit Number Description
|
| /openbsd-src/gnu/llvm/llvm/utils/TableGen/ |
| H A D | X86EVEX2VEXTablesEmitter.cpp | 97 if (BitInit *Bit = dyn_cast<BitInit>(B->getBit(i))) in getValueFromBitsInit() local 98 Value |= uint64_t(Bit->getValue()) << i; in getValueFromBitsInit()
|
| /openbsd-src/regress/lib/libcrypto/x509/bettertls/certificates/ |
| H A D | 3553.key | 10 Bit/xvMfum5o3VKia2Z10ciVaCZ/1h+ch3p/gkq5vCy8p3VJ34QWadP4F7y6Iebb
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/ |
| H A D | RISCVScheduleV.td | 191 // 11.6. Vector Single-Width Bit Shift Instructions 316 // 15.3. Vector Find-First-Set Mask Bit 318 // 15.4. Vector Set-Before-First Mask Bit 319 // 15.5. Vector Set-Including-First Mask Bit 320 // 15.6. Vector Set-only-First Mask Bit 414 // 11.6. Vector Single-Width Bit Shift Instructions 538 // 15.3. Vector Find-First-Set Mask Bit 540 // 15.4. Vector Set-Before-First Mask Bit 541 // 15.5. Vector Set-Including-First Mask Bit 542 // 15.6. Vector Set-only-First Mask Bit
|
| H A D | RISCVFeatures.td | 151 "'Zbb' (Basic Bit-Manipulation)">; 154 "'Zbb' (Basic Bit-Manipulation)">; 165 "'Zbs' (Single-Bit Instructions)">; 168 "'Zbs' (Single-Bit Instructions)">; 187 "'Zbb' (Basic Bit-Manipulation) or "
|
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFDie.cpp | 44 uint64_t Bit = 1ULL << Shift; in dumpApplePropertyAttribute() local 45 auto PropName = ApplePropertyString(Bit); in dumpApplePropertyAttribute() 49 OS << format("DW_APPLE_PROPERTY_0x%" PRIx64, Bit); in dumpApplePropertyAttribute() 50 if (!(Val ^= Bit)) in dumpApplePropertyAttribute()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Utility/ |
| H A D | Log.h | 126 template <MaskType Bit> 127 static constexpr MaskType ChannelFlag = MaskType(1) << Bit;
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/MCTargetDesc/ |
| H A D | RISCVMatInt.cpp | 291 unsigned Bit = llvm::countr_zero(Hi); in generateInstSeq() local 292 TmpSeq.emplace_back(Opc, Bit + 32); in generateInstSeq()
|