Searched defs:w1 (Results 1 - 25 of 115) sorted by relevance

12345

/external/libunwind/src/ppc/
H A DGis_signal_frame.c34 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);
/external/libunwind/src/hppa/
H A DGis_signal_frame.c33 unw_word_t w0, w1, w2, w3, ip; local
59 || (ret = (*a->access_mem) (as, ip + 4, &w1, 0, arg)) < 0
67 && w1 == 0x3414015a && w2 == 0xe4008200 && w3 == 0x08000240);
/external/libunwind/src/x86_64/
H A DGos-freebsd.c41 unw_word_t w0, w1, w2, b0, ip; local
63 || (ret = (*a->access_mem) (as, ip + 8, &w1, 0, arg)) < 0
68 w1 == 0x050f000001a1c0c7 &&
H A DGstep.c38 unw_word_t w0, w1; local
44 || (ret = (*a->access_mem) (c->as, c->ip + 8, &w1, 0, c->as_arg)) < 0)
49 && (((w1 >> 24) & 0xff) == 0xe9));
51 Debug (14, "ip=0x%lx => 0x%016lx 0x%016lx, ret = %d\n", c->ip, w0, w1, ret);
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dweight.h132 bool operator()(const W &w1, const W &w2) const { argument
133 return (Plus(w1, w2) == w1) && w1 != w2;
H A Drandom-weight.h135 W1 w1 = generator1_(); local
137 return Weight(w1, w2);
/external/chromium_org/components/query_parser/
H A Dquery_parser_unittest.cc147 const std::string w1; member in struct:query_parser::TestData2
162 EXPECT_EQ(data[i].w1, base::UTF16ToUTF8(results[0]));
/external/chromium_org/ui/views/widget/
H A Dwindow_reorderer_unittest.cc71 scoped_ptr<Widget> w1(CreateControlWidget(parent_window,
73 SetWindowAndLayerName(w1->GetNativeView(), "w1");
74 w1->Show();
80 EXPECT_EQ("w1 w2", ChildWindowNamesAsString(*parent_window));
81 EXPECT_EQ("v w1 w2",
87 EXPECT_EQ("w2 w1", ChildWindowNamesAsString(*parent_window));
88 EXPECT_EQ("v w2 w1",
92 w1->GetNativeView()->SetProperty(kHostViewKey, host_view1);
94 EXPECT_EQ("w1 w
141 aura::Window* w1 = aura::test::CreateTestWindowWithId(0, local
[all...]
/external/openfst/src/include/fst/
H A Dlexicographic-weight.h61 LexicographicWeight(W1 w1, W2 w2) : PairWeight<W1, W2>(w1, w2) { argument
H A Dproduct-weight.h50 ProductWeight(W1 w1, W2 w2) : PairWeight<W1, W2>(w1, w2) {} argument
H A Dweight.h142 bool operator()(const W &w1, const W &w2) const { argument
143 return (Plus(w1, w2) == w1) && w1 != w2;
164 W2 operator()(W1 w1) const {
H A Dpower-weight.h99 inline PowerWeight<W, n> Plus(const PowerWeight<W, n> &w1, argument
103 w.SetValue(i, Plus(w1.Value(i), w2.Value(i)));
109 inline PowerWeight<W, n> Times(const PowerWeight<W, n> &w1, argument
113 w.SetValue(i, Times(w1.Value(i), w2.Value(i)));
119 inline PowerWeight<W, n> Divide(const PowerWeight<W, n> &w1, argument
124 w.SetValue(i, Divide(w1.Value(i), w2.Value(i), type));
148 inline W DotProduct(const PowerWeight<W, n> &w1, argument
152 w = Plus(w, Times(w1.Value(i), w2.Value(i)));
/external/openfst/src/test/
H A Dweight-tester.h42 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, Weigh argument
77 CHECK(Plus(Weight::Zero(), w1) == w1); local
79 CHECK(Times(Weight::One(), w1) == w1); local
129 TestDivision(Weight w1, Weight w2) argument
156 TestReverse(Weight w1, Weight w2) argument
168 TestEquality(Weight w1, Weight w2, Weight w3) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DChunkedIntArray.java71 int appendSlot(int w0, int w1, int w2, int w3) argument
78 fastArray[newoffset+1] = w1;
96 chunk[slotpos+1] = w1;
217 * @param w1 int
221 void writeSlot(int position, int w0, int w1, int w2, int w3) argument
232 chunk[slotpos + 1] = w1;
/external/chromium_org/ash/wm/
H A Dmru_window_tracker.cc48 // Returns whether |w1| should be considered less recently used than |w2|. This
51 bool CompareWindowState(aura::Window* w1, aura::Window* w2) { argument
52 return ash::wm::IsWindowMinimized(w1) && !ash::wm::IsWindowMinimized(w2);
H A Dtoplevel_window_event_handler_unittest.cc70 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
[all...]
/external/chromium_org/athena/screen/
H A Dscreen_manager_unittest.cc41 void CheckZOrder(aura::Window* w1, aura::Window* w2) { argument
42 aura::Window* parent = w1->parent();
48 std::find(begin_iter, end_iter, w1);
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dpitch_filter_mips.c26 int32_t w1, w2, w3, w4, w5, gain32, sign32; local
65 "li %[w1], 8192 \n\t"
66 "mtlo %[w1] \n\t"
68 "lwl %[w1], 3(%[out2_pos2]) \n\t"
72 "lwr %[w1], 0(%[out2_pos2]) \n\t"
77 "dpa.w.ph $ac0, %[w1], %[coef1] \n\t"
87 "extr_s.h %[w1], $ac0, 14 \n\t"
95 "mul %[w1], %[gain32], %[w1] \n\t"
103 "shra_r.w %[w1],
[all...]
/external/chromium_org/ui/views/
H A Dview_unittest_aura.cc51 // w1
63 Widget* w1 = CreateControlWidget(GetContext(), gfx::Rect(0, 0, 100, 100)); local
64 w1->GetNativeView()->layer()->set_name("w1");
74 w1->GetRootView()->AddChildView(v1);
75 w1->GetRootView()->AddChildView(v2);
81 w1->GetRootView()->AddChildView(w2_host_view);
84 w1->GetRootView()->AddChildView(v7);
95 CreateControlWidget(w1->GetNativeView(), gfx::Rect(0, 5, 100, 105));
106 ui::Layer* w1_layer = w1
[all...]
/external/clang/test/Analysis/
H A Dinitializer.cpp123 Wrapper w1; local
124 clang_analyzer_eval(w1.value == 42); // expected-warning{{TRUE}}
/external/clang/test/Analysis/inlining/
H A Dcontainers.cpp44 void testWrappers(BeginOnlySet &w1, IteratorStructOnlySet &w2, argument
51 clang_analyzer_eval(w1.begin().impl.impl == w1.begin().impl.impl);
/external/clang/test/Headers/
H A Dstddefneeds.cpp15 wint_t w1; // expected-error{{unknown}} variable
/external/clang/test/SemaCXX/
H A Ddefault-assignment-operator.cpp53 W w1, w2; variable
56 w1 = w2;
/external/libunwind/src/x86/
H A DGos-freebsd.c42 unw_word_t w0, w1, w2, w3, w4, w5, ip; local
79 (*a->access_mem) (as, ip + 4, &w1, 0, arg) < 0 ||
83 if (w0 == 0x2024448d && w1 == 0x01a1b850 && w2 == 0xcd500000 &&
90 if (w0 == 0x2024448d && w1 == 0x5440f750 && w2 == 0x75000200 &&
H A DGos-linux.c33 unw_word_t w0, w1, ip; local
61 || (*a->access_mem) (as, ip + 4, &w1, 0, arg) < 0)
64 ret = ((w0 == 0x0077b858 && w1 == 0x80cd0000)
65 || (w0 == 0x0000adb8 && (w1 & 0xffffff) == 0x80cd00));

Completed in 457 milliseconds

12345