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

1 2 3 4 5 6 7 8 9

  /external/openfst/src/test/
weight-tester.h 42 Weight w1 = weight_generator_(); local
47 VLOG(1) << "w1 = " << w1;
51 TestSemiring(w1, w2, w3);
53 TestDivision(w1, w2);
54 TestReverse(w1, w2);
55 TestEquality(w1, w2, w3);
56 TestIO(w1);
57 TestCopy(w1);
66 void TestSemiring(Weight w1, Weight w2, Weight w3)
77 CHECK(Plus(Weight::Zero(), w1) == w1); local
79 CHECK(Times(Weight::One(), w1) == w1); local
    [all...]
  /external/linux-tools-perf/perf-3.12.0/arch/arm64/lib/
memset.S 32 and w1, w1, #0xff
33 orr w1, w1, w1, lsl #8
34 orr w1, w1, w1, lsl #16
44 str w1, [x4], #4
48 strh w1, [x4], #
    [all...]
  /external/llvm/test/MC/AArch64/
alias-logicalimm.s 8 // CHECK: and w0, w1, #0xfffffffd
9 // CHECK: and w0, w1, #0xfffffffd
10 and w0, w1, #~2
11 bic w0, w1, #2
18 // CHECK: ands w0, w1, #0xfffffffd
19 // CHECK: ands w0, w1, #0xfffffffd
20 ands w0, w1, #~2
21 bics w0, w1, #2
28 // CHECK: orr w2, w1, #0xfffffffc
29 // CHECK: orr w2, w1, #0xfffffff
    [all...]
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]
arm64-logical-encoding.s 10 and w1, w2, #15
15 ands w1, w2, #15
20 ; CHECK: and w1, w2, #0xf ; encoding: [0x41,0x0c,0x00,0x12]
25 ; CHECK: ands w1, w2, #0xf ; encoding: [0x41,0x0c,0x00,0x72]
28 eor w1, w2, #0x4000
31 ; CHECK: eor w1, w2, #0x4000 ; encoding: [0x41,0x00,0x12,0x52]
34 orr w1, w2, #0x4000
37 ; CHECK: orr w1, w2, #0x4000 ; encoding: [0x41,0x00,0x12,0x32]
50 and w1, w2, w3
52 and w1, w2, w3, lsl #
    [all...]
  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.obs/
owner_before_weak_ptr.pass.cpp 24 const std::weak_ptr<int> w1(p1);
27 assert(!w1.owner_before(w2));
28 assert(!w2.owner_before(w1));
29 assert(w1.owner_before(w3) || w3.owner_before(w1));
30 assert(w3.owner_before(w1) == w3.owner_before(w2));
not_less_than.fail.cpp 23 const std::weak_ptr<int> w1(p1);
26 bool b = w1 < w2;
owner_before_shared_ptr.pass.cpp 24 const std::weak_ptr<int> w1(p1);
27 assert(!w1.owner_before(p2));
29 assert(w1.owner_before(p3) || w3.owner_before(p1));
  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.mod/
reset.pass.cpp 34 std::weak_ptr<A> w1(p1);
35 assert(w1.use_count() == 1);
36 w1.reset();
37 assert(w1.use_count() == 0);
swap.pass.cpp 36 std::weak_ptr<A> w1(p1);
40 w1.swap(w2);
41 assert(w1.use_count() == 1);
42 assert(w1.lock().get() == ptr2);
  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.ownerless/
owner_less.pass.cpp 42 const std::weak_ptr<int> w1(p1);
56 assert(!cs(p2, w1));
57 assert(cs(p1, w3) || cs(p3, w1));
58 assert(cs(p3, w1) == cs(p3, w2));
64 assert(!cs(w1, w2));
65 assert(!cs(w2, w1));
66 assert(cs(w1, w3) || cs(w3, w1));
67 assert(cs(w3, w1) == cs(w3, w2));
69 assert(!cs(w1, p2))
    [all...]
  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/
owner_before_weak_ptr.pass.cpp 24 const std::weak_ptr<int> w1(p1);
28 assert(!p2.owner_before(w1));
29 assert(p1.owner_before(w3) || p3.owner_before(w1));
30 assert(p3.owner_before(w1) == p3.owner_before(w2));
  /external/llvm/test/MC/Mips/msa/
test_elm_insert_msa64.s 3 # CHECK: insert.d $w1[1], $sp # encoding: [0x79,0x39,0xe8,0x59]
5 insert.d $w1[1], $sp
  /external/openfst/src/include/fst/
float-weight.h 113 inline bool operator==(const FloatWeightTpl<T> &w1,
117 volatile T v1 = w1.Value();
122 inline bool operator==(const FloatWeightTpl<double> &w1,
124 return operator==<double>(w1, w2);
127 inline bool operator==(const FloatWeightTpl<float> &w1,
129 return operator==<float>(w1, w2);
133 inline bool operator!=(const FloatWeightTpl<T> &w1,
135 return !(w1 == w2);
138 inline bool operator!=(const FloatWeightTpl<double> &w1,
140 return operator!=<double>(w1, w2)
    [all...]
weight.h 142 bool operator()(const W &w1, const W &w2) const {
143 return (Plus(w1, w2) == w1) && w1 != w2;
162 template <class W1, class W2>
164 W2 operator()(W1 w1) const {
166 << W1::Type() << "\" to \"" << W2::Type();
  /external/chromium_org/ash/wm/
stacking_controller_unittest.cc 50 scoped_ptr<Window> w1(CreateTestWindow());
51 ::wm::AddTransientChild(w2.get(), w1.get());
52 w1->SetBounds(gfx::Rect(10, 11, 250, 251));
53 ParentWindowInPrimaryRootWindow(w1.get());
54 w1->Show();
55 wm::ActivateWindow(w1.get());
59 EXPECT_EQ(launcher, w1->parent());
toplevel_window_event_handler_unittest.cc 70 aura::Window* w1 = new aura::Window(d1); local
71 w1->SetType(ui::wm::WINDOW_TYPE_NORMAL);
72 w1->set_id(1);
73 w1->Init(aura::WINDOW_LAYER_TEXTURED);
76 parent->AddChild(w1);
77 w1->SetBounds(gfx::Rect(0, 0, 100, 100));
78 w1->Show();
79 return w1;
101 scoped_ptr<aura::Window> w1(CreateWindow(HTCAPTION));
102 gfx::Size size = w1->bounds().size()
    [all...]
  /external/chromium_org/ash/wm/dock/
docked_window_resizer_unittest.cc 543 scoped_ptr<aura::Window> w1(CreateTestWindow(gfx::Rect(0, 0, 201, 201)));
545 DragToVerticalPositionAndToEdge(DOCKED_EDGE_RIGHT, w1.get(), 20);
549 wm::WindowState* window_state1 = wm::GetWindowState(w1.get());
553 EXPECT_EQ(w1->GetRootWindow()->GetBoundsInScreen().right(),
554 w1->GetBoundsInScreen().right());
555 EXPECT_EQ(kShellWindowId_DockedContainer, w1->parent()->id());
571 EXPECT_EQ(w1->GetRootWindow()->GetBoundsInScreen().right(),
572 w1->GetBoundsInScreen().right());
573 EXPECT_EQ(kShellWindowId_DockedContainer, w1->parent()->id());
585 scoped_ptr<aura::Window> w1(CreateTestWindow(gfx::Rect(0, 0, 201, 201)))
    [all...]
docked_window_layout_manager_unittest.cc 400 scoped_ptr<aura::Window> w1(CreateTestWindow(gfx::Rect(0, 0, 201, 201)));
402 DragToVerticalPositionAndToEdge(DOCKED_EDGE_RIGHT, w1.get(), 20);
406 EXPECT_EQ(w1->GetRootWindow()->bounds().right(),
407 w1->GetBoundsInScreen().right());
408 EXPECT_EQ(kShellWindowId_DockedContainer, w1->parent()->id());
415 Shell::GetScreen()->GetDisplayNearestWindow(w1.get()).work_area();
416 int gap1 = w1->GetBoundsInScreen().y();
417 int gap2 = w2->GetBoundsInScreen().y() - w1->GetBoundsInScreen().bottom();
429 scoped_ptr<aura::Window> w1(CreateTestWindow(gfx::Rect(0, 0, 201, 201)));
431 DragToVerticalPositionAndToEdge(DOCKED_EDGE_RIGHT, w1.get(), 20)
    [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? */
140 magic_find_zero_bytes \w1
142 cmpeq ip, #0 /* Is there a zero byte in w1? */
146 .macro magic_find_zero_bytes w1
147 /* Macro to find all-zero bytes in w1, result is in ip. */
148 uadd8 ip, \w1, r6
152 .macro setup_return w1 w
    [all...]
  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.spec/
swap.pass.cpp 36 std::weak_ptr<A> w1(p1);
40 swap(w1, w2);
41 assert(w1.use_count() == 1);
42 assert(w1.lock().get() == ptr2);
  /external/libunwind/src/ppc/
Gis_signal_frame.c 34 unw_word_t w0, w1, ip; local
61 || (ret = (*a->access_mem) (as, ip + 8, &w1, 0, arg)) < 0)
63 w1 >>= 32;
64 return (w0 == 0x38210080380000ac && w1 == 0x44000002);
  /bionic/libc/arch-arm/bionic/
strcmp.S 140 w1 .req r4
167 ldr w1, [wp1], #4
176 bic t1, w1, #MSB
178 sub r3, w1, b1
179 bic r3, r3, w1
185 eor t1, t1, w1
188 ldr w1, [wp1], #4
199 tst w1, #0xff000000
201 tstne w1, #0x00ff0000
202 tstne w1, #0x0000ff0
    [all...]
  /bionic/libc/arch-arm/generic/bionic/
strcmp.S 140 w1 .req r4
167 ldr w1, [wp1], #4
176 bic t1, w1, #MSB
178 sub r3, w1, b1
179 bic r3, r3, w1
185 eor t1, t1, w1
188 ldr w1, [wp1], #4
199 tst w1, #0xff000000
201 tstne w1, #0x00ff0000
202 tstne w1, #0x0000ff0
    [all...]
  /external/chromium_org/ash/test/
ash_test_helper_unittest.cc 53 scoped_ptr<Widget> w1(new Widget);
57 w1->Init(params);
58 w1->Show();
59 EXPECT_TRUE(w1->IsActive());
60 EXPECT_TRUE(w1->IsVisible());

Completed in 3057 milliseconds

1 2 3 4 5 6 7 8 9