/freebsd/contrib/llvm-project/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()
|
/freebsd/sys/contrib/dev/acpica/components/utilities/ |
H A D | utownerid.c | 304 UINT32 Bit; in AcpiUtReleaseOwnerId() local 337 Bit = (UINT32) 1 << ACPI_MOD_32 (OwnerId); in AcpiUtReleaseOwnerId() 341 if (AcpiGbl_OwnerIdMask[Index] & Bit) in AcpiUtReleaseOwnerId() 343 AcpiGbl_OwnerIdMask[Index] ^= Bit; in AcpiUtReleaseOwnerId()
|
/freebsd/contrib/llvm-project/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()
|
/freebsd/sys/contrib/device-tree/Bindings/media/ |
H A D | ti-am437x-vpfe.txt | 15 1 - 8 Bit BT656 Interface. 16 2 - 10 Bit BT656 Interface. 17 3 - YCbCr 8 Bit Interface. 18 4 - YCbCr 16 Bit Interface.
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | smile | 14 # Bit 2 (mask 0x04): Whether raw binary (unescaped 8-bit) values may be present in content 15 # Bit 1 (mask 0x02): Whether shared String value checking was enabled during encoding, default … 16 # Bit 0 (mask 0x01): Whether shared property name checking was enabled during encoding, default…
|
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/ |
H A D | DXILShaderFlags.h | 43 constexpr uint64_t getMask(int Bit) const { in getMask() 44 return Bit != -1 ? 1ull << Bit : 0; in getMask()
|
/freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/ |
H A D | OMPContext.cpp | 89 for (unsigned Bit : ActiveTraits.set_bits()) { in OMPContext() 90 TraitProperty Property = TraitProperty(Bit); in OMPContext() 137 for (unsigned Bit : VMI0.RequiredTraits.set_bits()) in isStrictSubset() local 138 if (!VMI1.RequiredTraits.test(Bit)) in isStrictSubset() 195 for (unsigned Bit : VMI.RequiredTraits.set_bits()) { in isVariantApplicableInContextHelper() local 196 TraitProperty Property = TraitProperty(Bit); in isVariantApplicableInContextHelper() 276 for (unsigned Bit : VMI.RequiredTraits.set_bits()) { in getVariantMatchScore() local 277 TraitProperty Property = TraitProperty(Bit); in getVariantMatchScore()
|
/freebsd/sys/contrib/device-tree/Bindings/input/ |
H A D | pxa27x-keypad.txt | 28 - marvell,rotary0 : It is a u32 value. Bit[31:16] is the 29 linux key-code for rotary up. Bit[15:0] is the linux key-code 34 axes measurement in the device. It is a u32 value. Bit[31:16] 35 is for rotary 1, and Bit[15:0] is for rotary 0.
|
/freebsd/contrib/llvm-project/llvm/include/llvm/TargetParser/ |
H A D | AArch64TargetParser.h | 72 CPUFeatures Bit; // Index of the bit in the FMV feature bitset. member 75 FMVInfo(StringRef Name, CPUFeatures Bit, StringRef Features, in FMVInfo() 77 : Name(Name), Bit(Bit), Features(Features), Priority(Priority){}; in FMVInfo()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/TableGen/ |
H A D | Record.h | 404 virtual Init *getBit(unsigned Bit) const = 0; 472 Init *getBit(unsigned Bit) const override { in getBit() argument 540 Init *getBit(unsigned Bit) const override { return Value->getBit(Bit); } in getBit() argument 569 Init *getBit(unsigned Bit) const override { in getBit() argument 570 assert(Bit < 1 && "Bit index out of range!"); in getBit() 624 Init *getBit(unsigned Bit) const override { in getBit() argument 625 assert(Bit < NumBits && "Bit index out of range!"); in getBit() 626 return getTrailingObjects<Init *>()[Bit]; in getBit() 655 Init *getBit(unsigned Bit) const override { in getBit() argument 656 return BitInit::get(getRecordKeeper(), (Value & (1ULL << Bit)) != 0); in getBit() [all …]
|
/freebsd/sys/contrib/device-tree/src/arm/marvell/ |
H A D | armada-xp-crs305-1g-4s-bit.dts | 3 * Device Tree file for MikroTik CRS305-1G-4S+ Bit board 12 model = "MikroTik CRS305-1G-4S+ Bit";
|
H A D | armada-xp-crs326-24g-2s-bit.dts | 3 * Device Tree file for MikroTik CRS326-24G-2S+ Bit board 12 model = "MikroTik CRS326-24G-2S+ Bit";
|
H A D | armada-xp-crs328-4c-20s-4s-bit.dts | 3 * Device Tree file for MikroTik CRS328-4C-20S-4S+ Bit board 12 model = "MikroTik CRS328-4C-20S-4S+ Bit";
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | BitVector.h | 164 for (auto Bit : Bits) in count() local 165 NumBits += llvm::popcount(Bit); in count() 171 return any_of(Bits, [](BitWord Bit) { return Bit != 0; }); in any() 432 for (auto &Bit : Bits) in flip() 433 Bit = ~Bit; in flip()
|
/freebsd/sys/contrib/device-tree/Bindings/hsi/ |
H A D | client-devices.txt | 9 - hsi-rx-mode: Receiver Bit transmission mode ("stream" or "frame") 10 - hsi-tx-mode: Transmitter Bit transmission mode ("stream" or "frame")
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | GlobalObject.h | 168 void setGlobalObjectFlag(unsigned Bit, bool Val) { in setGlobalObjectFlag() 169 unsigned Mask = 1 << Bit; in setGlobalObjectFlag() 166 setGlobalObjectFlag(unsigned Bit,bool Val) setGlobalObjectFlag() argument
|
/freebsd/contrib/llvm-project/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()
|
/freebsd/sys/contrib/device-tree/Bindings/clock/ |
H A D | renesas,emev2-smu.txt | 22 - reg: Byte offset from SMU base and Bit position in the register 33 - reg: Byte offset from SMU base and Bit position in the register
|
H A D | zynq-7000.txt | 26 - fclk-enable : Bit mask to enable FCLKs statically at boot time. 27 Bit [0..3] correspond to FCLK0..FCLK3. The corresponding
|
/freebsd/contrib/llvm-project/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 | 474 if (auto *Bit = dyn_cast<BitInit>(getBit(i))) in convertInitializerTo() local 475 Result |= static_cast<int64_t>(Bit->getValue()) << i; in convertInitializerTo() 508 if (Init *Bit = getBit(e-i-1)) in getAsString() local 509 Result += Bit->getAsString(); in getAsString() 766 Init *OpInit::getBit(unsigned Bit) const { in getBit() 769 return VarBitInit::get(const_cast<OpInit*>(this), Bit); in getBit() 1953 Init *FoldOpInit::getBit(unsigned Bit) const { in getBit() 1954 return VarBitInit::get(const_cast<FoldOpInit *>(this), Bit); in getBit() 2016 Init *IsAOpInit::getBit(unsigned Bit) const { in getBit() 2017 return VarBitInit::get(const_cast<IsAOpInit *>(this), Bit); in getBit() [all …]
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | X86EVEX2VEXTablesEmitter.cpp |
|
/freebsd/sys/contrib/device-tree/Bindings/sound/ |
H A D | ak5386.txt | 1 AK5386 Single-ended 24-Bit 192kHz delta-sigma ADC
|
/freebsd/sys/contrib/device-tree/src/arm/qcom/ |
H A D | qcom-ipq4018-ap120c-ac-bit.dts | 7 model = "ALFA Network AP120C-AC Bit";
|
/freebsd/sys/contrib/device-tree/Bindings/dma/ |
H A D | fsl-imx-sdma.txt | 114 SDMA remap. Bit 15 of GPR0 selects between UART4_RX and SAI1_RX. 117 SDMA remap. Bit 16 of GPR0 selects between UART4_TX and SAI1_TX.
|