/third_party/protobuf/src/google/protobuf/stubs/ |
H A D | template_util_unittest.cc | 107 value = or_<true_, true_>::value; in TEST() 110 value = or_<true_, false_>::value; in TEST() 113 value = or_<false_, true_>::value; in TEST() 116 value = or_<false_, false_>::value; in TEST()
|
H A D | template_util.h | 127 // or_ is a template || operator. 128 // or_<A, B>::value evaluates "A::value || B::value". 130 struct or_ : public integral_constant<bool, (A::value || B::value)> { struct
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | parse_dependency.py | 130 and_, or_ = map(Literal, '+,') 132 boolop = and_ | or_ 152 ',': operator.or_,
|
/third_party/vulkan-headers/registry/ |
H A D | parse_dependency.py | 130 and_, or_ = map(Literal, '+,') 132 boolop = and_ | or_ 152 ',': operator.or_,
|
/third_party/python/Lib/ |
H A D | operator.py | 19 'mul', 'ne', 'neg', 'not_', 'or_', 'pos', 'pow', 'rshift', 116 def or_(a, b): function 442 __or__ = or_
|
H A D | copyreg.py | 41 return functools.reduce, (operator.or_, obj.__args__)
|
H A D | typing.py | 391 return functools.reduce(operator.or_, ev_args) 2397 return functools.reduce(operator.or_, stripped_args)
|
/third_party/node/deps/v8/src/regexp/ia32/ |
H A D | regexp-macro-assembler-ia32.cc | 267 __ or_(eax, 0x20); // Convert match character to lower-case. in CheckNotBackReferenceIgnoreCase() 281 __ or_(ecx, 0x20); in CheckNotBackReferenceIgnoreCase() 363 __ or_(eax, eax); in CheckNotBackReferenceIgnoreCase() 542 __ or_(eax, eax); in CheckCharacterInRangeArray() 550 __ or_(eax, eax); in CheckCharacterNotInRangeArray() 798 __ or_(eax, eax); in GetCode() 988 __ or_(eax, eax); in GetCode() 1021 __ or_(eax, eax); in GetCode()
|
/third_party/node/deps/v8/src/codegen/riscv64/ |
H A D | macro-assembler-riscv64.cc | 690 or_(rd, rs, rt.rm()); in Or() 700 or_(rd, rs, scratch); in Or() 729 or_(rd, rs, rt.rm()); in Nor() 969 or_(rd, scratch, rd); in Ror() 981 or_(rd, scratch, rd); in Ror() 994 or_(rd, scratch, rd); in Dror() 1005 or_(rd, scratch, rd); in Dror() 1039 or_(x0, rd, x0); // x0 <- x0 << 16 | x0 >> 16 in ByteSwap() 1045 or_(rd, rd, x2); // (((x0 & x1) << 8) | ((x0 & (x1 << 8)) >> 8)) in ByteSwap() 1061 or_(x in ByteSwap() [all...] |
H A D | assembler-riscv64.h | 450 void or_(Register rd, Register rs1, Register rs2); 1159 or_(rd, rs, rt); in nor()
|
/third_party/node/deps/v8/src/codegen/ia32/ |
H A D | assembler-ia32.h | 644 void or_(Register dst, int32_t imm32); 645 void or_(Register dst, Register src) { or_(dst, Operand(src)); } in or_() function in v8::internal::Assembler 646 void or_(Register dst, Operand src); 647 void or_(Operand dst, Register src); 648 void or_(Register dst, const Immediate& imm) { or_(Operand(dst), imm); } in or_() function in v8::internal::Assembler 649 void or_(Operand dst, const Immediate& x);
|
H A D | macro-assembler-ia32.cc | 601 or_(tmp, Immediate(1)); in CallRecordWriteStub() 616 or_(dst, Immediate(0x80000000)); in CallRecordWriteStub()
|
H A D | assembler-ia32.cc | 1115 void Assembler::or_(Register dst, int32_t imm32) { in or_() function in v8::internal::Assembler 1120 void Assembler::or_(Register dst, Operand src) { in or_() function in v8::internal::Assembler 1126 void Assembler::or_(Operand dst, const Immediate& x) { in or_() function in v8::internal::Assembler 1131 void Assembler::or_(Operand dst, Register src) { in or_() function in v8::internal::Assembler
|
/third_party/python/Lib/test/ |
H A D | test_operator.py | 261 self.assertRaises(TypeError, operator.or_) 262 self.assertRaises(TypeError, operator.or_, None, None) 263 self.assertEqual(operator.or_(0xa, 0x5), 0xf)
|
/third_party/node/deps/v8/src/codegen/mips/ |
H A D | macro-assembler-mips.cc | 720 or_(rd, rs, rt.rm()); in CallRecordWriteStub() 730 or_(rd, rs, scratch); in CallRecordWriteStub() 894 or_(rd, rd, scratch); in CallRecordWriteStub() 903 or_(rd, rd, scratch); in CallRecordWriteStub() 973 or_(dest, dest, at); in CallRecordWriteStub() 990 or_(tmp, tmp, tmp2); in CallRecordWriteStub() 994 or_(tmp, tmp, tmp2); in CallRecordWriteStub() 997 or_(dest, tmp, tmp2); in CallRecordWriteStub() 1014 or_(dest, dest, at); in CallRecordWriteStub() 1095 or_(r in CallRecordWriteStub() [all...] |
H A D | assembler-mips.cc | 1863 void Assembler::or_(Register rd, Register rs, Register rt) { in or_() function in v8::internal::Assembler 3799 or_(tf, ra, zero_reg); in GenPCRelativeJump() 3808 or_(ra, tf, zero_reg); in GenPCRelativeJump() 3812 or_(ra, tf, zero_reg); in GenPCRelativeJump()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | IceAssemblerMIPS32.h | 251 void or_(const Operand *OpRd, const Operand *OpRs, const Operand *OpRt);
|
H A D | IceInstMIPS32.cpp | 998 Asm->or_(getDest(), getSrc(0), getSrc(1)); in emitIAS()
|
/third_party/node/deps/v8/src/codegen/mips64/ |
H A D | macro-assembler-mips64.cc | 853 or_(rd, rs, rt.rm()); in CallRecordWriteStub() 863 or_(rd, rs, scratch); in CallRecordWriteStub() 1206 or_(rd, rd, scratch); in CallRecordWriteStub() 1240 or_(rd, rd, scratch); in CallRecordWriteStub() 2160 or_(t9, t9, rs); in CallRecordWriteStub() 2214 or_(t9, t9, rs); in CallRecordWriteStub() 4513 or_(t8, ra, zero_reg); in CallRecordWriteStub() 4519 or_(ra, t8, zero_reg); in CallRecordWriteStub() 4522 // Emit a or_ in the branch delay slot if it's protected. in CallRecordWriteStub() 4523 if (bdslot == PROTECT) or_(r in CallRecordWriteStub() [all...] |
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | test_util.py | 833 return NonStandardInteger(operator.or_(self.val, y)) 842 return NonStandardInteger(operator.or_(y, self.val))
|
/third_party/node/deps/v8/src/wasm/baseline/ia32/ |
H A D | liftoff-assembler-ia32.h | 616 or_(Operand(esp, 0), Immediate(0)); in AtomicStore() 803 __ or_(scratch, value_reg); in AtomicBinop32() 911 __ or_(new_lo, value_op_lo); in AtomicBinop64() 912 __ or_(new_hi, value_op_hi); in AtomicBinop64() 1453 liftoff::EmitCommutativeBinOp<&Assembler::or_>(this, dst, lhs, rhs); in emit_i32_or() 1457 liftoff::EmitCommutativeBinOpImm<&Assembler::or_>(this, dst, lhs, imm); in emit_i32_ori() 2015 or_(scratch, scratch2); // combine {scratch2} into {scratch}. in emit_f32_copysign() 2145 or_(scratch, scratch2); // combine {scratch2} into {scratch}. in emit_f64_copysign() 2538 or_(dst, src.high_gp()); in emit_i64_eqz() 2541 or_(ds in emit_i64_eqz() [all...] |
/third_party/node/deps/v8/src/codegen/loong64/ |
H A D | macro-assembler-loong64.cc | 617 or_(rd, rj, rk.rm()); in CallRecordWriteStub() 627 or_(rd, rj, scratch); in CallRecordWriteStub() 1448 or_(t7, t7, rj); in CallRecordWriteStub() 1494 or_(t7, t7, rj); in CallRecordWriteStub() 1909 or_(rd, rd, scratch); in CallRecordWriteStub() 1917 or_(rd, rd, scratch); in CallRecordWriteStub()
|
H A D | macro-assembler-loong64.h | 593 void mov(Register rd, Register rj) { or_(rd, rj, zero_reg); } in mov()
|
/third_party/node/deps/v8/src/compiler/backend/ia32/ |
H A D | code-generator-ia32.cc | 1123 ASSEMBLE_BINOP(or_); in AssembleArchInstruction() 3639 ATOMIC_BINOP_CASE(Or, or_) in AssembleArchInstruction() 3650 ATOMIC_BINOP_CASE(Or, or_, or_) in AssembleArchInstruction()
|
/third_party/node/deps/v8/src/wasm/baseline/loong64/ |
H A D | liftoff-assembler-loong64.h | 1057 I32_BINOP(or, or_) 1175 I64_BINOP(or, or_)
|