/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.obs/ |
not_less_than.fail.cpp | 24 const std::weak_ptr<int> w2(p2); 26 bool b = w1 < w2;
|
owner_before_weak_ptr.pass.cpp | 25 const std::weak_ptr<int> w2(p2); 27 assert(!w1.owner_before(w2)); 28 assert(!w2.owner_before(w1)); 30 assert(w3.owner_before(w1) == w3.owner_before(w2));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.obs/ |
not_less_than.fail.cpp | 24 const std::weak_ptr<int> w2(p2); 26 bool b = w1 < w2;
|
owner_before_weak_ptr.pass.cpp | 25 const std::weak_ptr<int> w2(p2); 27 assert(!w1.owner_before(w2)); 28 assert(!w2.owner_before(w1)); 30 assert(w3.owner_before(w1) == w3.owner_before(w2));
|
/external/openfst/src/test/ |
weight-tester.h | 43 Weight w2 = weight_generator_(); local 48 VLOG(1) << "w2 = " << w2; 51 TestSemiring(w1, w2, w3); 53 TestDivision(w1, w2); 54 TestReverse(w1, w2); 55 TestEquality(w1, w2, w3); 66 void TestSemiring(Weight w1, Weight w2, Weight w3) { 68 CHECK(Plus(w1, w2).Member()); 69 CHECK(Times(w1, w2).Member()) [all...] |
/external/openfst/src/include/fst/ |
float-weight.h | 114 const FloatWeightTpl<T> &w2) { 118 volatile T v2 = w2.Value(); 123 const FloatWeightTpl<double> &w2) { 124 return operator==<double>(w1, w2); 128 const FloatWeightTpl<float> &w2) { 129 return operator==<float>(w1, w2); 134 const FloatWeightTpl<T> &w2) { 135 return !(w1 == w2); 139 const FloatWeightTpl<double> &w2) { 140 return operator!=<double>(w1, w2); [all...] |
/external/llvm/test/MC/AArch64/ |
alias-logicalimm.s | 28 // CHECK: orr w2, w1, #0xfffffffc 29 // CHECK: orr w2, w1, #0xfffffffc 30 orr w2, w1, #~3 31 orn w2, w1, #3 38 // CHECK: eor w2, w1, #0xfffffffc 39 // CHECK: eor w2, w1, #0xfffffffc 40 eor w2, w1, #~3 41 eon w2, w1, #3
|
arm64-bitfield-encoding.s | 8 bfm w1, w2, #1, #15 10 sbfm w1, w2, #1, #15 12 ubfm w1, w2, #1, #15 19 ; CHECK: bfxil w1, w2, #1, #15 ; encoding: [0x41,0x3c,0x01,0x33] 21 ; CHECK: sbfx w1, w2, #1, #15 ; encoding: [0x41,0x3c,0x01,0x13] 23 ; CHECK: ubfx w1, w2, #1, #15 ; encoding: [0x41,0x3c,0x01,0x53] 34 extr w1, w2, w3, #15 37 ; CHECK: extr w1, w2, w3, #15 ; encoding: [0x41,0x3c,0x83,0x13]
|
/external/valgrind/main/none/tests/amd64/ |
bmi.c | 858 ULong w1, w2; local 861 w2 = 0x57657438291CDEF0ULL; 865 do_andn64(&flags, &res, w1, w2); 866 printf("andn64 %016llx %016llx -> %016llx %04x\n", w1, w2, res, flags); 869 w2 = ((w2 >> 2) | (w2 >> 1)) + (w2 / 17ULL); 873 w2 = 0x57657438291CDEF0ULL; 877 do_andn32(&flags, &res, w1, w2); [all...] |
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.ownerless/ |
owner_less.pass.cpp | 43 const std::weak_ptr<int> w2(p2); 55 assert(!cs(p1, w2)); 58 assert(cs(p3, w1) == cs(p3, w2)); 64 assert(!cs(w1, w2)); 65 assert(!cs(w2, w1)); 67 assert(cs(w3, w1) == cs(w3, w2)); 70 assert(!cs(w2, p1));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.ownerless/ |
owner_less.pass.cpp | 43 const std::weak_ptr<int> w2(p2); 55 assert(!cs(p1, w2)); 58 assert(cs(p3, w1) == cs(p3, w2)); 64 assert(!cs(w1, w2)); 65 assert(!cs(w2, w1)); 67 assert(cs(w3, w1) == cs(w3, w2)); 70 assert(!cs(w2, p1));
|
/system/core/libpixelflinger/tests/arch-arm64/assembler/ |
asm_test_jacket.S | 188 csel w2, w1, w0, EQ 189 str w2, [x27,#0] 190 csel w2, w1, w0, NE 191 str w2, [x27,#4] 192 csel w2, w1, w0, CS 193 str w2, [x27,#8] 194 csel w2, w1, w0, CC 195 str w2, [x27,#12] 196 csel w2, w1, w0, MI 197 str w2, [x27,#16 [all...] |
/bionic/libc/arch-arm/cortex-a9/bionic/ |
strcmp.S | 137 .macro magic_compare_and_branch w1 w2 label 138 /* Macro to compare registers w1 and w2 and conditionally branch to label. */ 139 cmp \w1, \w2 /* Are w1 and w2 the same? */ 152 .macro setup_return w1 w2 155 mov r2, \w2 158 rev r2, \w2 186 magic_compare_and_branch w1=r2, w2=r4, label=.L_return_24 187 magic_compare_and_branch w1=r3, w2=r5, label=.L_return_35 246 magic_compare_and_branch w1=r2 w2=r4 label=.L_return_2 [all...] |
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/ |
owner_before_weak_ptr.pass.cpp | 25 const std::weak_ptr<int> w2(p2); 27 assert(!p1.owner_before(w2)); 30 assert(p3.owner_before(w1) == p3.owner_before(w2));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/ |
owner_before_weak_ptr.pass.cpp | 25 const std::weak_ptr<int> w2(p2); 27 assert(!p1.owner_before(w2)); 30 assert(p3.owner_before(w1) == p3.owner_before(w2));
|
/bionic/libc/arch-arm/bionic/ |
strcmp.S | 141 w2 .req r5 168 ldr w2, [wp2], #4 177 cmp t1, w2, SHFT2LSB #8 183 ldreq w2, [wp2], #4 186 cmp t1, w2, SHFT2MSB #24 191 SHFT2LSB w2, w2, #8 208 ldrb w2, [wp2] 211 lsl w2, w2, #2 [all...] |
/bionic/libc/arch-arm/generic/bionic/ |
strcmp.S | 141 w2 .req r5 168 ldr w2, [wp2], #4 177 cmp t1, w2, SHFT2LSB #8 183 ldreq w2, [wp2], #4 186 cmp t1, w2, SHFT2MSB #24 191 SHFT2LSB w2, w2, #8 208 ldrb w2, [wp2] 211 lsl w2, w2, #2 [all...] |
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.mod/ |
swap.pass.cpp | 39 std::weak_ptr<A> w2(p2); 40 w1.swap(w2); 43 assert(w2.use_count() == 1); 44 assert(w2.lock().get() == ptr1);
|
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.spec/ |
swap.pass.cpp | 39 std::weak_ptr<A> w2(p2); 40 swap(w1, w2); 43 assert(w2.use_count() == 1); 44 assert(w2.lock().get() == ptr1);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.mod/ |
swap.pass.cpp | 39 std::weak_ptr<A> w2(p2); 40 w1.swap(w2); 43 assert(w2.use_count() == 1); 44 assert(w2.lock().get() == ptr1);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.spec/ |
swap.pass.cpp | 39 std::weak_ptr<A> w2(p2); 40 swap(w1, w2); 43 assert(w2.use_count() == 1); 44 assert(w2.lock().get() == ptr1);
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
eh2.cpp | 23 test w2; local
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
eh2.cpp | 23 test w2; local
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
adoguids.h | 9 #define STRING_GUID(l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8) l##-##w1##-##w2##-##b1##b2##-##b3##b4##b5##b6##b7##b8 10 #define GUID_BUILDER(n,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8) DEFINE_GUID(n,0x##l,0x##w1,0x##w2,0x##b1,0x##b2,0x##b3,0x##b4,0x##b5,0x##b6,0x##b7,0x##b8)
|
/external/smack/src/org/xbill/DNS/ |
FormattedTime.java | 16 private static NumberFormat w2, w4; field in class:FormattedTime 19 w2 = new DecimalFormat(); 20 w2.setMinimumIntegerDigits(2); 42 sb.append(w2.format(c.get(Calendar.MONTH)+1)); 43 sb.append(w2.format(c.get(Calendar.DAY_OF_MONTH))); 44 sb.append(w2.format(c.get(Calendar.HOUR_OF_DAY))); 45 sb.append(w2.format(c.get(Calendar.MINUTE))); 46 sb.append(w2.format(c.get(Calendar.SECOND)));
|