Home
last modified time | relevance | path

Searched refs:Bit (Results 1 - 25 of 88) sorted by relevance

1234

/third_party/node/deps/v8/src/codegen/arm64/
H A 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(2 in DecodeLoadStore()
[all...]
/third_party/node/deps/v8/src/codegen/arm/
H A Dconstants-arm.h134 BIC = 14 << 21, // Bit Clear.
258 // Bit encoding P U W.
270 // Bit encoding P U W .
331 // standard SoftwareInterrupCode. Bit 23 is reserved for the stop feature.
449 inline int Bit(int nr) const { return (InstructionBits() >> nr) & 1; } in Bit() function in v8::internal::Instruction
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(2 in PValue()
[all...]
H A 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/vk-gl-cts/external/vulkancts/modules/vulkan/api/
H A 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 in find()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/
H A 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 in find()
[all...]
/third_party/json/tests/thirdparty/Fuzzer/
H A DFuzzerTracePC.h133 unsigned Bit = 0;
134 /**/ if (Counter >= 128) Bit = 7;
135 else if (Counter >= 32) Bit = 6;
136 else if (Counter >= 16) Bit = 5;
137 else if (Counter >= 8) Bit = 4;
138 else if (Counter >= 4) Bit = 3;
139 else if (Counter >= 3) Bit = 2;
140 else if (Counter >= 2) Bit = 1;
141 size_t Feature = (i * 8 + Bit);
/third_party/node/deps/v8/src/regexp/
H A Dregexp-flags.h30 #define V(Lower, Camel, LowerCamel, Char, Bit) k##Camel = 1 << Bit,
39 #define V(Lower, Camel, LowerCamel, Char, Bit) < Char) && (Char
44 #define V(Lower, Camel, LowerCamel, Char, Bit) | (1 << Bit)
60 #define V(Lower, Camel, LowerCamel, Char, Bit) \
/third_party/skia/third_party/externals/tint/src/utils/
H A Denum_set.h88 out.set = set | Bit(e); in operator +()
96 out.set = set & ~Bit(e); in operator -()
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); } in operator ==()
149 inline bool operator!=(Enum rhs) const { return set != Bit(rhs); } in operator !=()
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/
H A 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( in DecodeType3()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/TableGen/
H A DRecord.h416 virtual Init *getBit(unsigned Bit) const = 0;
473 Init *getBit(unsigned Bit) const override {
502 Init *getBit(unsigned Bit) const override {
503 assert(Bit < 1 && "Bit index out of range!");
557 Init *getBit(unsigned Bit) const override {
558 assert(Bit < NumBits && "Bit index out of range!");
559 return getTrailingObjects<Init *>()[Bit];
588 Init *getBit(unsigned Bit) cons
1107 unsigned Bit; global() member in llvm::final
[all...]
/third_party/node/deps/v8/src/execution/ppc/
H A 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( in ExecuteGeneric()
[all...]
/third_party/node/deps/v8/src/diagnostics/ppc/
H A 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()
331 // Link (LK) Bit 0 in FormatOption()
332 if (instr->Bit(0) == 1) { in FormatOption()
338 // Absolute Address Bit 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( in FormatOption()
[all...]
/third_party/node/deps/v8/src/codegen/
H A Doptimized-compilation-info.h75 #define DEF_ENUM(Camel, Lower, Bit) k##Camel = 1 << Bit,
80 #define DEF_GETTER(Camel, Lower, Bit) \
87 #define DEF_SETTER(Camel, Lower, Bit) \
/third_party/node/deps/v8/src/diagnostics/arm/
H A 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(2 in FormatOption()
[all...]
/third_party/skia/third_party/externals/angle2/src/common/
H A Dbitset_utils_unittest.cpp599 // Unit test for angle::Bit
600 TEST(Bit, Test) in TEST()
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()
H A Dbitset_utils.h26 constexpr BitsT Bit(ParamT x) in Bit() function
42 return ((Bit<BitsT>(static_cast<ParamT>(static_cast<size_t>(x) - 1)) - 1) << 1) | 1; in BitMask()
188 mBits |= Bit<BitsT>(element) & Mask(N); in BitSetT()
224 return (mBits & Bit<BitsT>(pos)) != 0; in test()
342 mBits |= Bit<BitsT>(pos) & Mask(N); in set()
363 mBits &= ~Bit<BitsT>(pos); in reset()
379 mBits ^= Bit<BitsT>(pos) & Mask(N); in flip()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
H A 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/llvm/lib/TableGen/
H A DRecord.cpp381 if (auto *Bit = dyn_cast<BitInit>(getBit(i)))
382 Result |= static_cast<int64_t>(Bit->getValue()) << i;
415 if (Init *Bit = getBit(e-i-1))
416 Result += Bit->getAsString();
680 Init *OpInit::getBit(unsigned Bit) const {
683 return VarBitInit::get(const_cast<OpInit*>(this), Bit);
1357 Init *FoldOpInit::getBit(unsigned Bit) const {
1358 return VarBitInit::get(const_cast<FoldOpInit *>(this), Bit);
1420 Init *IsAOpInit::getBit(unsigned Bit) const {
1421 return VarBitInit::get(const_cast<IsAOpInit *>(this), Bit);
[all...]
H A DJSONBackend.cpp51 } else if (auto *Bit = dyn_cast<BitInit>(&I)) { in translateInit()
52 return Bit->getValue() ? 1 : 0; in translateInit()
/third_party/node/deps/v8/src/compiler/
H A Dpersistent-map.h43 enum Bit : int { kLeft = 0, kRight = 1 };
140 Bit bit);
205 Bit operator[](int pos) const {
476 Bit bit) { in GetChild()
/third_party/node/deps/v8/src/diagnostics/s390/
H A Ddisasm-s390.cc235 if (instr->Bit(10) == 1) { in FormatOption()
241 if (instr->Bit(0) == 1) { in FormatOption()
264 // Link (LK) Bit 0 in FormatOption()
265 if (instr->Bit(0) == 1) { in FormatOption()
271 // Absolute Address Bit 1 in FormatOption()
272 if (instr->Bit(1) == 1) { in FormatOption()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
H A DIceBitVector.h69 *Data |= _1 << Bit; in operator =()
71 *Data &= ~(_1 << Bit); in operator =()
75 operator bool() const { return (*Data & (_1 << Bit)) != 0; } in operator bool()
79 Reference(ElementType *D, SizeT B) : Data(D), Bit(B) { in Reference()
84 const SizeT Bit;
544 assert(Idx < Size && "Out-of-bounds Bit access.");
549 assert(Idx < Size && "Out-of-bounds Bit access.");
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/
H A DNaClBitstreamReader.cpp24 std::string llvm::naclbitc::getBitAddress(uint64_t Bit) { in getBitAddress() argument
27 Stream << (Bit / 8) << ":" << (Bit % 8); in getBitAddress()
/third_party/typescript/tests/baselines/reference/
H A DliteralTypes2.js176 type Bit = 0 | 1;
178 let aa = makeArray<Bit>(0);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
H A DDWARFDie.cpp45 uint64_t Bit = 1ULL << Shift; in dumpApplePropertyAttribute()
46 auto PropName = ApplePropertyString(Bit); in dumpApplePropertyAttribute()
50 OS << format("DW_APPLE_PROPERTY_0x%" PRIx64, Bit); in dumpApplePropertyAttribute()
51 if (!(Val ^= Bit)) in dumpApplePropertyAttribute()

Completed in 31 milliseconds

1234