Home
last modified time | relevance | path

Searched refs:Bit (Results 1 – 25 of 329) sorted by relevance

12345678910>>...14

/third_party/node/deps/v8/src/codegen/arm64/
Ddecoder-arm64-inl.h115 DCHECK_EQ(0x1, instr->Bit(28)); in DecodePCRelAddressing()
131 if (instr->Bit(25) == 0) { in DecodeBranchSystemException()
139 if (instr->Bit(25) == 0) { in DecodeBranchSystemException()
140 if ((instr->Bit(24) == 0x1) || in DecodeBranchSystemException()
152 if (instr->Bit(25) == 0) { in DecodeBranchSystemException()
153 if (instr->Bit(24) == 0) { in DecodeBranchSystemException()
191 if ((instr->Bit(24) == 0x1) || (instr->Bits(20, 16) != 0x1F) || in DecodeBranchSystemException()
213 if ((instr->Bit(28) == 0) && (instr->Bit(29) == 0) && (instr->Bit(26) == 1)) { in DecodeLoadStore()
218 if (instr->Bit(24) == 0) { in DecodeLoadStore()
219 if (instr->Bit(28) == 0) { in DecodeLoadStore()
[all …]
/third_party/node/deps/v8/src/codegen/arm/
Dconstants-arm.h449 inline int Bit(int nr) const { return (InstructionBits() >> nr) & 1; } in Bit() function
496 inline int NValue() const { return Bit(7); } in NValue()
497 inline int MValue() const { return Bit(5); } in MValue()
498 inline int DValue() const { return Bit(22); } in DValue()
500 inline int PValue() const { return Bit(24); } in PValue()
501 inline int UValue() const { return Bit(23); } in UValue()
502 inline int Opc1Value() const { return (Bit(23) << 2) | Bits(21, 20); } in Opc1Value()
505 inline int SzValue() const { return Bit(8); } in SzValue()
506 inline int VLValue() const { return Bit(20); } in VLValue()
507 inline int VCValue() const { return Bit(8); } in VCValue()
[all …]
Dconstants-arm.cc22 high16 |= (0xFF * Bit(18)) << 6; // xxbbbbbb,bbxxxxxx. in DoubleImmedVmov()
23 high16 |= (Bit(18) ^ 1) << 14; // xBxxxxxx,xxxxxxxx. in DoubleImmedVmov()
24 high16 |= Bit(19) << 15; // axxxxxxx,xxxxxxxx. in DoubleImmedVmov()
/third_party/node/deps/v8/src/diagnostics/arm/
Ddisasm-arm.cc240 shift_names[instr->Bit(6) * 2], instr->Bits(11, 7)); in PrintShiftSat()
350 if ((instr->TypeValue() == 7) && (instr->Bit(24) == 0x0) && in FormatVFPRegister()
351 (instr->Bits(11, 9) == 0x5) && (instr->Bit(4) == 0x1)) { in FormatVFPRegister()
353 reg = instr->Bits(19, 16) | (instr->Bit(7) << 4); in FormatVFPRegister()
437 if (instr->Bit(21) == 0) { in FormatOption()
464 if (instr->Bit(21) == 0) { in FormatOption()
513 if ((instr->Bits(27, 25) == 0) && (instr->Bit(20) == 0) && in FormatOption()
514 (instr->Bits(7, 6) == 3) && (instr->Bit(4) == 1)) { in FormatOption()
515 if (instr->Bit(5) == 1) { in FormatOption()
618 if (instr->Bit(22) == 0) { in FormatOption()
[all …]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/
DvktApiBufferMemoryRequirementsTestsUtils.hpp52 template<class Flag, class Bit, class... Ignored>
53 struct BitsSet : public std::set<std::tuple<Bit, Ignored...>, tc<std::tuple<Bit, Ignored...>>>
55 typedef Bit bit_type;
57 typedef std::tuple<Bit, Ignored...> value_type;
81 bool contains(const Bit& bit) const { in contains()
86 bool any(std::initializer_list<Bit> bits) const { in any()
91 bool all(std::initializer_list<Bit> bits) const { in all()
99 const_iterator find(const Bit& bit) const { in find()
109 const value_type& get(const Bit& bit) const { in get()
114 static Bit extract(const value_type& bit) { in extract()
[all …]
/third_party/json/tests/thirdparty/Fuzzer/
DFuzzerTracePC.h133 unsigned Bit = 0; in CollectFeatures() local
134 /**/ if (Counter >= 128) Bit = 7; in CollectFeatures()
135 else if (Counter >= 32) Bit = 6; in CollectFeatures()
136 else if (Counter >= 16) Bit = 5; in CollectFeatures()
137 else if (Counter >= 8) Bit = 4; in CollectFeatures()
138 else if (Counter >= 4) Bit = 3; in CollectFeatures()
139 else if (Counter >= 3) Bit = 2; in CollectFeatures()
140 else if (Counter >= 2) Bit = 1; in CollectFeatures()
141 size_t Feature = (i * 8 + Bit); in CollectFeatures()
/third_party/node/deps/v8/src/regexp/
Dregexp-flags.h30 #define V(Lower, Camel, LowerCamel, Char, Bit) k##Camel = 1 << Bit, argument
39 #define V(Lower, Camel, LowerCamel, Char, Bit) < Char) && (Char argument
44 #define V(Lower, Camel, LowerCamel, Char, Bit) | (1 << Bit) argument
60 #define V(Lower, Camel, LowerCamel, Char, Bit) \ in REGEXP_FLAG_LIST() argument
/third_party/skia/third_party/externals/tint/src/utils/
Denum_set.h88 out.set = set | Bit(e);
96 out.set = set & ~Bit(e);
126 inline bool Contains(Enum e) const { return (set & Bit(e)) != 0; } in Contains()
144 inline bool operator==(Enum rhs) const { return set == Bit(rhs); }
149 inline bool operator!=(Enum rhs) const { return set != Bit(rhs); }
208 static constexpr uint64_t Bit(Enum value) { in Bit() function
216 return Bit(first) | Union(values...); in Union()
/third_party/node/deps/v8/src/execution/arm/
Dsimulator-arm.cc1308 if (instr->Bit(4) == 0) { in GetShiftRm()
2034 if (instr->Bit(24) == 0) { in DecodeType01()
2042 if (instr->Bit(23) == 0) { in DecodeType01()
2043 if (instr->Bit(21) == 0) { in DecodeType01()
2057 if (instr->Bit(22) == 0) { in DecodeType01()
2088 if (instr->Bit(22) == 1) { in DecodeType01()
2110 if (instr->Bit(20) == 1) { in DecodeType01()
2197 if (instr->Bit(22) == 0) { in DecodeType01()
2283 if (((instr->Bits(7, 4) & 0xD) == 0xD) && (instr->Bit(20) == 0)) { in DecodeType01()
2698 if (instr->Bit(4) == 0) { in DecodeType3()
[all …]
/third_party/node/deps/v8/src/execution/ppc/
Dsimulator-ppc.cc1413 if (instr->Bit(0) == 1) { // LK flag set in ExecuteBranchConditional()
1446 if (instr->Bit(10)) { // RC bit set. in VectorCompareOp()
1549 DCHECK_NE(instr->Bit(20), 1); in ExecuteGeneric()
1677 int L = instr->Bit(21); in ExecuteGeneric()
1716 int L = instr->Bit(21); in ExecuteGeneric()
1798 if (instr->Bit(0) == 1) { // LK flag set in ExecuteGeneric()
1881 if (instr->Bit(0)) { // RC bit set in ExecuteGeneric()
1921 if (instr->Bit(0)) { // RC bit set in ExecuteGeneric()
1991 if (instr->Bit(0)) { // RC bit set in ExecuteGeneric()
2005 if (instr->Bit(0)) { // RC bit set in ExecuteGeneric()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/TableGen/
DRecord.h416 virtual Init *getBit(unsigned Bit) const = 0;
473 Init *getBit(unsigned Bit) const override { in getBit() argument
502 Init *getBit(unsigned Bit) const override { in getBit() argument
503 assert(Bit < 1 && "Bit index out of range!"); in getBit()
557 Init *getBit(unsigned Bit) const override { in getBit() argument
558 assert(Bit < NumBits && "Bit index out of range!"); in getBit()
559 return getTrailingObjects<Init *>()[Bit]; in getBit()
588 Init *getBit(unsigned Bit) const override { in getBit() argument
589 return BitInit::get((Value & (1ULL << Bit)) != 0); in getBit()
619 Init *getBit(unsigned Bit) const override { in getBit() argument
[all …]
/third_party/node/deps/v8/src/diagnostics/ppc/
Ddisasm-ppc.cc257 if (instr->Bit(10) == 1) { in FormatOption()
263 if (instr->Bit(0) == 1) { in FormatOption()
278 if (instr->Bit(0) == 1) { in FormatOption()
332 if (instr->Bit(0) == 1) { in FormatOption()
339 if (instr->Bit(1) == 1) { in FormatOption()
377 value = (sh | (instr->Bit(1) << 5)); in FormatOption()
394 value = (instr->Bits(10, 6) | (instr->Bit(5) << 5)); in FormatOption()
402 value = (instr->Bits(10, 6) | (instr->Bit(5) << 5)); in FormatOption()
470 DCHECK_NE(instr->Bit(20), 1); in DecodeExtP()
730 if (instr->Bit(0) == 1) { in DecodeExt1()
[all …]
/third_party/typescript/tests/baselines/reference/
DliteralTypes2.types758 type Bit = 0 | 1;
759 >Bit : 0 | 1
761 let aa = makeArray<Bit>(0);
762 >aa : Bit[]
763 >makeArray<Bit>(0) : Bit[]
768 >aa = append(aa, 1) : Bit[]
769 >aa : Bit[]
770 >append(aa, 1) : Bit[]
772 >aa : Bit[]
/third_party/node/deps/v8/src/codegen/
Doptimized-compilation-info.h75 #define DEF_ENUM(Camel, Lower, Bit) k##Camel = 1 << Bit, argument
80 #define DEF_GETTER(Camel, Lower, Bit) \ argument
87 #define DEF_SETTER(Camel, Lower, Bit) \ argument
/third_party/skia/third_party/externals/angle2/src/common/
Dbitset_utils_unittest.cpp600 TEST(Bit, Test) in TEST() argument
602 EXPECT_EQ(Bit<uint32_t>(0), 1u); in TEST()
603 EXPECT_EQ(Bit<uint32_t>(1), 2u); in TEST()
604 EXPECT_EQ(Bit<uint32_t>(2), 4u); in TEST()
605 EXPECT_EQ(Bit<uint32_t>(3), 8u); in TEST()
606 EXPECT_EQ(Bit<uint32_t>(31), 0x8000'0000u); in TEST()
607 EXPECT_EQ(Bit<uint64_t>(63), static_cast<uint64_t>(0x8000'0000'0000'0000llu)); in TEST()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/X86/
DX86GenRegisterInfo.inc1319 // GR8 Bit set.
1329 // GRH8 Bit set.
1339 // GR8_NOREX Bit set.
1349 // GR8_ABCD_H Bit set.
1359 // GR8_ABCD_L Bit set.
1369 // GRH16 Bit set.
1379 // GR16 Bit set.
1389 // GR16_NOREX Bit set.
1399 // VK1 Bit set.
1409 // VK16 Bit set.
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/Mips/
DMipsGenRegisterInfo.inc1920 // MSA128F16 Bit set.
1930 // CCR Bit set.
1940 // COP0 Bit set.
1950 // COP2 Bit set.
1960 // COP3 Bit set.
1970 // DSPR Bit set.
1980 // FGR32 Bit set.
1990 // FGRCC Bit set.
2000 // GPR32 Bit set.
2010 // HWRegs Bit set.
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/
DRecord.cpp381 if (auto *Bit = dyn_cast<BitInit>(getBit(i))) in convertInitializerTo() local
382 Result |= static_cast<int64_t>(Bit->getValue()) << i; in convertInitializerTo()
415 if (Init *Bit = getBit(e-i-1)) in getAsString() local
416 Result += Bit->getAsString(); in getAsString()
680 Init *OpInit::getBit(unsigned Bit) const { in getBit()
683 return VarBitInit::get(const_cast<OpInit*>(this), Bit); in getBit()
1357 Init *FoldOpInit::getBit(unsigned Bit) const { in getBit()
1358 return VarBitInit::get(const_cast<FoldOpInit *>(this), Bit); in getBit()
1420 Init *IsAOpInit::getBit(unsigned Bit) const { in getBit()
1421 return VarBitInit::get(const_cast<IsAOpInit *>(this), Bit); in getBit()
[all …]
DJSONBackend.cpp51 } else if (auto *Bit = dyn_cast<BitInit>(&I)) { in translateInit() local
52 return Bit->getValue() ? 1 : 0; in translateInit()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DGlobalObject.h197 void setGlobalObjectFlag(unsigned Bit, bool Val) { in setGlobalObjectFlag() argument
198 unsigned Mask = 1 << Bit; in setGlobalObjectFlag()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/ARM/
DARMGenRegisterInfo.inc1570 // HPR Bit set.
1580 // FPWithVPR Bit set.
1590 // SPR Bit set.
1600 // FPWithVPR_with_ssub_0 Bit set.
1610 // GPR Bit set.
1620 // GPRwithAPSR Bit set.
1630 // GPRwithZR Bit set.
1640 // SPR_8 Bit set.
1650 // GPRnopc Bit set.
1660 // GPRwithAPSRnosp Bit set.
[all …]
/third_party/typescript/tests/cases/conformance/types/literal/
DliteralTypes2.ts175 type Bit = 0 | 1; alias
177 let aa = makeArray<Bit>(0);
/third_party/python/Lib/test/test_email/data/
Dmsg_40.txt6 Content-Transfer-Encoding: 7Bit
/third_party/node/deps/v8/src/diagnostics/loong64/
Ddisasm-loong64.cc620 if (instr->Bit(8)) in DecodeTypekOp6()
716 if (instr->Bit(21) != 0) { in DecodeTypekOp10()
717 if (instr->Bit(15) == 0) { in DecodeTypekOp10()
980 if (instr->Bit(17)) in DecodeTypekOp14()
995 if (instr->Bit(16)) in DecodeTypekOp14()
1001 if (instr->Bit(16)) in DecodeTypekOp14()
1007 if (instr->Bit(16)) in DecodeTypekOp14()
1013 if (instr->Bit(16)) in DecodeTypekOp14()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/
DNaClBitstreamReader.cpp24 std::string llvm::naclbitc::getBitAddress(uint64_t Bit) { in getBitAddress() argument
27 Stream << (Bit / 8) << ":" << (Bit % 8); in getBitAddress()

12345678910>>...14