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

1 2 3 4 5

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
and.hpp 48 struct and_ struct in namespace:boost::mpl
58 , and_
66 , and_
  /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
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/detail/
meta.hpp 106 typedef typename mpl::and_<expr0,expr1>::type caseTT ;
107 typedef typename mpl::and_<expr0,not_expr1>::type caseTF ;
108 typedef typename mpl::and_<not_expr0,expr1>::type caseFT ;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
and.hpp 54 # define AUX778076_OP_NAME and_
iter_fold_if.hpp 42 : and_<
49 typedef and_<
is_sequence.hpp 52 : and_<
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/tools/
promotion.hpp 88 typename mpl::and_<is_floating_point<T1P>, is_floating_point<T2P> >::type, // both T1P and T2P are floating-point?
97 typename mpl::if_< typename mpl::and_<mpl::not_<is_floating_point<T2P> >, ::boost::is_convertible<T1P, T2P> >, T2P, T1P>::type>::type type;
  /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/ic/ia32/
stub-cache-ia32.cc 52 __ and_(offset, ~Code::kFlagsNotUsedInLookup);
107 __ and_(offset, ~Code::kFlagsNotUsedInLookup);
183 __ and_(offset, (kPrimaryTableSize - 1) << kCacheIndexShift);
196 __ and_(offset, (kPrimaryTableSize - 1) << kCacheIndexShift);
199 __ and_(offset, (kSecondaryTableSize - 1) << kCacheIndexShift);
  /external/v8/src/ic/x87/
stub-cache-x87.cc 52 __ and_(offset, ~Code::kFlagsNotUsedInLookup);
107 __ and_(offset, ~Code::kFlagsNotUsedInLookup);
183 __ and_(offset, (kPrimaryTableSize - 1) << kCacheIndexShift);
196 __ and_(offset, (kPrimaryTableSize - 1) << kCacheIndexShift);
199 __ and_(offset, (kSecondaryTableSize - 1) << kCacheIndexShift);
  /external/v8/test/cctest/
test-disasm-ppc.cc 106 COMPARE(and_(r3, r6, r5), "7cc32838 and r3, r6, r5");
107 COMPARE(and_(r6, r0, r6, SetRC), "7c063039 and. r6, r0, r6");
test-disasm-arm.cc 104 COMPARE(and_(r0, r1, Operand(r2)),
106 COMPARE(and_(r1, r2, Operand(r3), LeaveCC),
108 COMPARE(and_(r2, r3, Operand(r4), SetCC),
110 COMPARE(and_(r3, r4, Operand(r5), LeaveCC, eq),
301 COMPARE(and_(r3, r5, Operand(0xfc03ffff)),
335 COMPARE(and_(r0, r1, Operand(0x00000000)),
337 COMPARE(and_(r1, r2, Operand(0x00000001), LeaveCC),
339 COMPARE(and_(r2, r3, Operand(0x00000010), SetCC),
341 COMPARE(and_(r3, r4, Operand(0x00000100), LeaveCC, eq),
343 COMPARE(and_(r4, r5, Operand(0x00001000), SetCC, ne)
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/detail/
facade_iterator_category.hpp 89 mpl::and_<
103 mpl::and_<
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/
indirect_traits.hpp 98 : mpl::and_<
122 : mpl::and_<
176 : mpl::and_<
190 : mpl::and_<
  /external/v8/src/ic/arm/
stub-cache-arm.cc 149 // Prefer and_ to ubfx here because ubfx takes 2 cycles.
150 __ and_(scratch, scratch, Operand(mask));
160 __ and_(scratch, scratch, Operand(mask2));
  /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);
macro-assembler-x87.cc 232 and_(result_reg, Immediate(255));
846 and_(eax, Immediate(0x4700));
859 and_(eax, Immediate(0x0200));
869 and_(eax, Immediate(0x0041));
882 and_(MemOperand(esp, 0), Immediate(0xF3FF));
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/
sequence.hpp 141 boost::mpl::and_<
  /external/bison/lib/
bbitset.h 134 void (*and_) (bitset, bitset, bitset); member in struct:bitset_vtable
230 #define BITSET_AND_(DST, SRC1, SRC2) (SRC1)->b.vtable->and_ (DST, SRC1, SRC2)
  /external/v8/src/ia32/
macro-assembler-ia32.cc 242 and_(result_reg, Immediate(255));
307 and_(result_reg, 1);
326 and_(result_reg, HeapNumber::kExponentMask);
702 and_(tmp, Immediate(1));
    [all...]

Completed in 2949 milliseconds

1 2 3 4 5