/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));
|
owner_before_shared_ptr.pass.cpp | 25 const std::weak_ptr<int> w2(p2); 28 assert(!w2.owner_before(p1));
|
/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...] |
/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));
|
/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? */ 163 .macro setup_return w1 w2 166 mov r2, \w2 169 rev r2, \w2 199 magic_compare_and_branch w1=r2, w2=r4, label=.L_return_24 200 magic_compare_and_branch w1=r3, w2=r5, label=.L_return_35 259 magic_compare_and_branch w1=r2 w2=r4 label=.L_return_2 [all...] |
/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...] |
strcmp.a15.S | 160 .macro magic_compare_and_branch w1 w2 label 161 /* Macro to compare registers w1 and w2 and conditionally branch to label. */ 162 cmp \w1, \w2 /* Are w1 and w2 the same? */ 186 .macro setup_return w1 w2 189 mov r2, \w2 192 rev r2, \w2 224 magic_compare_and_branch w1=r2, w2=r4, label=return_24 225 magic_compare_and_branch w1=r3, w2=r5, label=return_35 284 magic_compare_and_branch w1=r2 w2=r4 label=return_2 524 w2 = *wp2++; \\ define 540 w2 = *wp2; \\ define 542 w2 = (w2 LSHIFT (32 - shift)) RSHIFT (32 - shift); \\ define 546 w2 = *wp2++; \\ define 551 w2 = (w2 << (32 - shift)) RSHIFT (32 - shift); \\ define [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...] |
/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
|
/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)));
|
/external/chromium_org/ash/wm/ |
stacking_controller_unittest.cc | 40 scoped_ptr<Window> w2(CreateTestWindow()); 41 w2->SetBounds(gfx::Rect(10, 11, 250, 251)); 44 launcher->AddChild(w2.get()); 45 w2->Show(); 47 wm::ActivateWindow(w2.get()); 51 w2->AddTransientChild(w1.get());
|
solo_window_tracker_unittest.cc | 170 scoped_ptr<aura::Window> w2(CreateWindowInPrimary()); 171 w2->Show(); 177 w2->Hide(); 181 w2->Show(); 186 EXPECT_EQ(w2.get(), GetWindowWithSoloHeaderInPrimary()); 190 EXPECT_EQ(w2.get(), GetWindowWithSoloHeaderInPrimary()); 199 EXPECT_EQ(w2.get(), GetWindowWithSoloHeaderInPrimary()); 219 scoped_ptr<aura::Window> w2(CreateWindowInPrimary()); 220 w2->Show(); 223 DockWindow(w2.get()) [all...] |
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
float-weight.h | 68 inline bool operator==(const FloatWeight &w1, const FloatWeight &w2) { 72 volatile float v2 = w2.Value(); 76 inline bool operator!=(const FloatWeight &w1, const FloatWeight &w2) { 77 return !(w1 == w2); 80 inline bool ApproxEqual(const FloatWeight &w1, const FloatWeight &w2, 82 return w1.Value() <= w2.Value() + delta && w2.Value() <= w1.Value() + delta; 153 const TropicalWeight &w2) { 154 return w1.Value() < w2.Value() ? w1 : w2; [all...] |
weight.h | 132 bool operator()(const W &w1, const W &w2) const { 133 return (Plus(w1, w2) == w1) && w1 != w2;
|
/external/dropbear/libtommath/ |
bn_mp_toom_mul.c | 27 mp_int w0, w1, w2, w3, w4, tmp1, tmp2, a0, a1, a2, b0, b1, b2; local 31 if ((res = mp_init_multi(&w0, &w1, &w2, &w3, &w4, 145 /* w2 = (a2 + a1 + a0)(b2 + b1 + b0) */ 158 if ((res = mp_mul(&tmp1, &tmp2, &w2)) != MP_OKAY) { 191 if ((res = mp_sub(&w2, &w0, &w2)) != MP_OKAY) { 194 if ((res = mp_sub(&w2, &w4, &w2)) != MP_OKAY) { 198 if ((res = mp_sub(&w1, &w2, &w1)) != MP_OKAY) { 202 if ((res = mp_sub(&w3, &w2, &w3)) != MP_OKAY) [all...] |
bn_mp_toom_sqr.c | 22 mp_int w0, w1, w2, w3, w4, tmp1, a0, a1, a2; local 26 if ((res = mp_init_multi(&w0, &w1, &w2, &w3, &w4, &a0, &a1, &a2, &tmp1, NULL)) != MP_OKAY) { 96 /* w2 = (a2 + a1 + a0)**2 */ 103 if ((res = mp_sqr(&tmp1, &w2)) != MP_OKAY) { 135 if ((res = mp_sub(&w2, &w0, &w2)) != MP_OKAY) { 138 if ((res = mp_sub(&w2, &w4, &w2)) != MP_OKAY) { 142 if ((res = mp_sub(&w1, &w2, &w1)) != MP_OKAY) { 146 if ((res = mp_sub(&w3, &w2, &w3)) != MP_OKAY) [all...] |
/external/chromium_org/ash/wm/dock/ |
docked_window_layout_manager_unittest.cc | 406 scoped_ptr<aura::Window> w2(CreateTestWindow(gfx::Rect(0, 0, 210, 202))); 408 DragToVerticalPositionAndToEdge(DOCKED_EDGE_RIGHT, w2.get(), 300); 414 EXPECT_EQ(w2->GetRootWindow()->bounds().right(), 415 w2->GetBoundsInScreen().right()); 416 EXPECT_EQ(internal::kShellWindowId_DockedContainer, w2->parent()->id()); 422 int gap2 = w2->GetBoundsInScreen().y() - w1->GetBoundsInScreen().bottom(); 423 int gap3 = work_area.bottom() - w2->GetBoundsInScreen().bottom(); 435 scoped_ptr<aura::Window> w2(CreateTestWindow(gfx::Rect(0, 0, 210, 202))); 437 DragToVerticalPositionAndToEdge(DOCKED_EDGE_RIGHT, w2.get(), 300); 443 EXPECT_EQ(w2->GetRootWindow()->bounds().right() [all...] |
/external/chromium_org/ui/views/corewm/ |
capture_controller_unittest.cc | 111 scoped_ptr<aura::Window> w2( 116 w2->SetCapture(); 133 scoped_ptr<aura::Window> w2( 135 w2->SetCapture(); 136 EXPECT_EQ(w2.get(), GetCaptureWindow()); 137 EXPECT_EQ(w2.get(), GetSecondCaptureWindow()); 153 scoped_ptr<aura::Window> w2( 155 w2->SetCapture(); 156 EXPECT_EQ(w2.get(), GetCaptureWindow()); 157 EXPECT_EQ(w2.get(), GetSecondCaptureWindow()) [all...] |
/bionic/libc/arch-arm/krait/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? */ 163 .macro setup_return w1 w2 166 mov r2, \w2 169 rev r2, \w2 199 magic_compare_and_branch w1=r2, w2=r4, label=.L_return_24 200 magic_compare_and_branch w1=r3, w2=r5, label=.L_return_35 259 magic_compare_and_branch w1=r2 w2=r4 label=.L_return_2 [all...] |