HomeSort by relevance Sort by last modified time
    Searched refs:and_ (Results 1 - 25 of 109) sorted by null

1 2 3 4 5

  /external/protobuf/src/google/protobuf/stubs/
template_util_unittest.cc 94 value = and_<true_, true_>::value;
97 value = and_<true_, false_>::value;
100 value = and_<false_, true_>::value;
103 value = and_<false_, false_>::value;
template_util.h 121 // and_ is a template && operator.
122 // and_<A, B>::value evaluates "A::value && B::value".
124 struct and_ : public integral_constant<bool, (A::value && B::value)> { struct in namespace:google::protobuf::internal
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/stubs/
template_util.h 121 // and_ is a template && operator.
122 // and_<A, B>::value evaluates "A::value && B::value".
124 struct and_ : public integral_constant<bool, (A::value && B::value)> { struct in namespace:google::protobuf::internal
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/stubs/
template_util.h 121 // and_ is a template && operator.
122 // and_<A, B>::value evaluates "A::value && B::value".
124 struct and_ : public integral_constant<bool, (A::value && B::value)> { struct in namespace:google::protobuf::internal
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/stubs/
template_util.h 121 // and_ is a template && operator.
122 // and_<A, B>::value evaluates "A::value && B::value".
124 struct and_ : public integral_constant<bool, (A::value && B::value)> { struct in namespace:google::protobuf::internal
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
template_util.h 121 // and_ is a template && operator.
122 // and_<A, B>::value evaluates "A::value && B::value".
124 struct and_ : public integral_constant<bool, (A::value && B::value)> { struct in namespace:google::protobuf::internal
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/stubs/
template_util.h 121 // and_ is a template && operator.
122 // and_<A, B>::value evaluates "A::value && B::value".
124 struct and_ : public integral_constant<bool, (A::value && B::value)> { struct in namespace:google::protobuf::internal
  /external/v8/src/ia32/
codegen-ia32.cc 227 __ and_(edx, 0xF);
243 __ and_(count, 0xF);
272 __ and_(count, 0xF);
295 __ and_(edx, 0xF);
309 __ and_(count, 0xF);
340 __ and_(count, 0xF);
508 __ and_(result, Immediate(kStringRepresentationMask));
macro-assembler-ia32.cc 241 and_(result_reg, Immediate(255));
306 and_(result_reg, 1);
325 and_(result_reg, HeapNumber::kExponentMask);
703 and_(tmp, Immediate(1));
    [all...]
code-stubs-ia32.cc 165 __ and_(ecx, HeapNumber::kExponentMask);
208 __ and_(result_reg,
567 __ and_(ebx, kIsNotStringMask |
576 __ and_(ebx, Immediate(kIsNotStringMask |
    [all...]
  /external/v8/src/x87/
deoptimizer-x87.cc 218 __ and_(ecx, 0x7);
224 __ and_(ebx, 0x7); // Extract the st_x index into ebx.
362 __ and_(ecx, 0x7);
369 __ and_(eax, 0x7);
assembler-x87.h 668 void and_(Register dst, int32_t imm32);
669 void and_(Register dst, const Immediate& x);
670 void and_(Register dst, Register src) { and_(dst, Operand(src)); }
671 void and_(Register dst, const Operand& src);
672 void and_(const Operand& dst, Register src);
673 void and_(const Operand& dst, const Immediate& x);
    [all...]
macro-assembler-x87.cc 231 and_(result_reg, Immediate(255));
772 and_(eax, Immediate(0x4700));
785 and_(eax, Immediate(0x0200));
795 and_(eax, Immediate(0x0041));
808 and_(MemOperand(esp, 0), Immediate(0xF3FF));
1067 and_(esp, -kFrameAlignment);
    [all...]
  /external/v8/src/arm/
macro-assembler-arm.cc 323 and_(dst, src1, src2, LeaveCC, cond);
333 and_(dst, src1, Operand(mask), LeaveCC, cond);
349 and_(dst, src1, Operand(mask), LeaveCC, cond);
379 and_(scratch, src, Operand((1 << width) - 1));
    [all...]
  /external/python/cpython3/Lib/
operator.py 13 __all__ = ['abs', 'add', 'and_', 'attrgetter', 'concat', 'contains', 'countOf',
79 def and_(a, b): function
429 __and__ = and_
  /external/v8/src/ppc/
macro-assembler-ppc.cc     [all...]
  /external/v8/src/regexp/arm/
regexp-macro-assembler-arm.cc 427 __ and_(r0, current_character(), Operand(mask));
440 __ and_(r0, current_character(), Operand(mask));
454 __ and_(r0, r0, Operand(mask));
485 __ and_(r1, current_character(), Operand(kTableSize - 1));
    [all...]
  /external/v8/src/regexp/ia32/
regexp-macro-assembler-ia32.cc 445 __ and_(eax, current_character());
459 __ and_(eax, current_character());
476 __ and_(eax, mask);
510 __ and_(ebx, current_character());
    [all...]
  /external/v8/src/regexp/x87/
regexp-macro-assembler-x87.cc 444 __ and_(eax, current_character());
458 __ and_(eax, current_character());
475 __ and_(eax, mask);
509 __ and_(ebx, current_character());
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_operator.py 115 self.assertRaises(TypeError, operator.and_)
116 self.assertRaises(TypeError, operator.and_, None, None)
117 self.assertTrue(operator.and_(0xf, 0xa) == 0xa)
  /external/python/cpython2/Lib/test/
test_operator.py 115 self.assertRaises(TypeError, operator.and_)
116 self.assertRaises(TypeError, operator.and_, None, None)
117 self.assertTrue(operator.and_(0xf, 0xa) == 0xa)
  /external/v8/src/compiler/mips64/
code-generator-mips64.cc     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_operator.py 115 self.assertRaises(TypeError, operator.and_)
116 self.assertRaises(TypeError, operator.and_, None, None)
117 self.assertTrue(operator.and_(0xf, 0xa) == 0xa)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_operator.py 115 self.assertRaises(TypeError, operator.and_)
116 self.assertRaises(TypeError, operator.and_, None, None)
117 self.assertTrue(operator.and_(0xf, 0xa) == 0xa)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_operator.py 115 self.assertRaises(TypeError, operator.and_)
116 self.assertRaises(TypeError, operator.and_, None, None)
117 self.assertTrue(operator.and_(0xf, 0xa) == 0xa)

Completed in 766 milliseconds

1 2 3 4 5