Searched refs:w1 (Results 26 - 50 of 234) sorted by relevance

12345678910

/external/llvm/test/MC/AArch64/
H A Darm64-arithmetic-encoding.s8 adc w1, w2, w3
13 ; CHECK: adc w1, w2, w3 ; encoding: [0x41,0x00,0x03,0x1a]
18 sbc w1, w2, w3
20 sbcs w1, w2, w3
23 ; CHECK: sbc w1, w2, w3 ; encoding: [0x41,0x00,0x03,0x5a]
25 ; CHECK: sbcs w1, w2, w3 ; encoding: [0x41,0x00,0x03,0x7a]
170 add w1, w2, w3, uxtb
171 add w1, w2, w3, uxth
172 add w1, w2, w3, uxtw
173 add w1, w
[all...]
H A Darm64-basic-a64-instructions.s5 crc32w w0, w1, w2
13 // CHECK: crc32w w0, w1, w2 // encoding: [0x20,0x48,0xc2,0x1a]
H A Darm64-fp-encoding.s160 fcvtas w1, d2
162 fcvtas w1, s2
165 ; CHECK: fcvtas w1, d2 ; encoding: [0x41,0x00,0x64,0x1e]
167 ; CHECK: fcvtas w1, s2 ; encoding: [0x41,0x00,0x24,0x1e]
170 fcvtau w1, s2
171 fcvtau w1, d2
175 ; CHECK: fcvtau w1, s2 ; encoding: [0x41,0x00,0x25,0x1e]
176 ; CHECK: fcvtau w1, d2 ; encoding: [0x41,0x00,0x65,0x1e]
180 fcvtms w1, s2
181 fcvtms w1, d
[all...]
H A Ddot-req.s8 mov w1, fred
11 ada .req w1
17 // CHECK: mov w1, w6 // encoding: [0xe1,0x03,0x06,0x2a]
18 // CHECK: mov w1, w6 // encoding: [0xe1,0x03,0x06,0x2a]
/external/openfst/src/include/fst/
H A Dstring-weight.h296 inline bool operator==(const StringWeight<L, S> &w1, argument
298 if (w1.Size() != w2.Size())
301 StringWeightIterator<L, S> iter1(w1);
312 inline bool operator!=(const StringWeight<L, S> &w1, argument
314 return !(w1 == w2);
318 inline bool ApproxEqual(const StringWeight<L, S> &w1, argument
321 return w1 == w2;
370 Plus(const StringWeight<L, S> &w1, argument
372 if (!w1.Member() || !w2.Member())
374 if (w1
393 Plus(const StringWeight<L, STRING_LEFT> &w1, const StringWeight<L, STRING_LEFT> &w2) argument
414 Plus(const StringWeight<L, STRING_RIGHT> &w1, const StringWeight<L, STRING_RIGHT> &w2) argument
434 Times(const StringWeight<L, S> &w1, const StringWeight<L, S> &w2) argument
452 Divide(const StringWeight<L, S> &w1, const StringWeight<L, S> &w2, DivideType typ) argument
482 Divide(const StringWeight<L, STRING_RIGHT> &w1, const StringWeight<L, STRING_RIGHT> &w2, DivideType typ) argument
512 Divide(const StringWeight<L, STRING_RIGHT_RESTRICT> &w1, const StringWeight<L, STRING_RIGHT_RESTRICT> &w2, DivideType typ) argument
548 GallicWeight(StringWeight<L, S> w1, W w2) argument
[all...]
H A Dsparse-power-weight.h150 inline SparsePowerWeight<W, K> Plus(const SparsePowerWeight<W, K> &w1, argument
154 SparseTupleWeightMap(&ret, w1, w2, operator_mapper);
160 inline SparsePowerWeight<W, K> Times(const SparsePowerWeight<W, K> &w1, argument
164 SparseTupleWeightMap(&ret, w1, w2, operator_mapper);
170 inline SparsePowerWeight<W, K> Divide(const SparsePowerWeight<W, K> &w1, argument
175 SparseTupleWeightMap(&ret, w1, w2, operator_mapper);
181 inline const W& DotProduct(const SparsePowerWeight<W, K> &w1, argument
183 const SparsePowerWeight<W, K>& product = Times(w1, w2);
192 inline bool ApproxEqual(const SparsePowerWeight<W, K> &w1, argument
197 SparseTupleWeightMap(&ret, w1, w
209 Times(const SparsePowerWeight<W, K> &w1, const W &k) argument
216 Divide(const SparsePowerWeight<W, K> &w1, const W &k, DivideType divide_type = DIVIDE_ANY) argument
[all...]
H A Dsigned-log-weight.h108 inline SignedLogWeightTpl<T> Plus(const SignedLogWeightTpl<T> &w1, argument
110 if (!w1.Member() || !w2.Member())
112 bool s1 = w1.Value1().Value() > 0.0;
114 T f1 = w1.Value2().Value();
119 return w1;
122 return SignedLogWeightTpl<T>(w1.Value1(), (f2 - log(2.0F)));
128 w1.Value1(), (f2 - log(1.0F + exp(f2 - f1))));
139 w1.Value1(), (f1 - log(1.0F - exp(f1 - f2))));
145 inline SignedLogWeightTpl<T> Minus(const SignedLogWeightTpl<T> &w1, argument
148 return Plus(w1, minus_w
152 Times(const SignedLogWeightTpl<T> &w1, const SignedLogWeightTpl<T> &w2) argument
167 Divide(const SignedLogWeightTpl<T> &w1, const SignedLogWeightTpl<T> &w2, DivideType typ = DIVIDE_ANY) argument
189 ApproxEqual(const SignedLogWeightTpl<T> &w1, const SignedLogWeightTpl<T> &w2, float delta = kDelta) argument
203 operator ==(const SignedLogWeightTpl<T> &w1, const SignedLogWeightTpl<T> &w2) argument
[all...]
H A Dpair-weight.h54 PairWeight(W1 w1, W2 w2) : value1_(w1), value2_(w2) {} argument
132 W1 w1 = W1::Zero(); local
133 strm1 >> w1; local
139 w = PairWeight<W1, W2>(w1, w2);
181 W1 w1 = W1::Zero(); local
182 strm1 >> w1; local
202 w = PairWeight<W1, W2>(w1, w2);
219 inline bool operator!=(const PairWeight<W1, W2> &w1, argument
221 return w1
226 ApproxEqual(const PairWeight<W1, W2> &w1, const PairWeight<W1, W2> &w2, float delta = kDelta) argument
[all...]
/external/tcpdump/
H A Dprint-tipc.c73 u_int32_t w1; member in struct:tipc_pkthdr
80 #define TIPC_MTYPE(w1) (((w1) >> 29) & 0x07)
81 #define TIPC_BROADCAST_ACK(w1) (((w1) >> 0) & 0xFFFF)
117 u_int32_t w1; member in struct:payload_tipc_pkthdr
131 u_int32_t w1; member in struct:internal_tipc_pkthdr
142 #define TIPC_SEQ_GAP(w1) (((w1) >> 16) & 0x1FFF)
153 u_int32_t w1; member in struct:link_conf_tipc_pkthdr
167 u_int32_t w0, w1, w2; local
232 u_int32_t w0, w1, w2, w4, w5, w9; local
300 u_int32_t w0, w1, w5; local
[all...]
/external/chromium_org/ui/views/widget/desktop_aura/
H A Ddesktop_focus_rules_unittest.cc40 // |w1|.
41 scoped_ptr<views::Widget> w1(CreateDesktopWidget());
48 wm::AddTransientChild(w1->GetNativeView(), w2_child);
53 wm::RemoveTransientChild(w1->GetNativeView(), w2_child);
54 w1.reset();
/external/vixl/examples/
H A Dsum-array.cc45 __ Cbz(w1, &end);
53 __ Sub(w1, w1, 1);
54 __ Cbnz(w1, &loop);
/external/chromium_org/ash/wm/
H A Dmru_window_tracker_unittest.cc37 scoped_ptr<aura::Window> w1(CreateWindow());
42 wm::ActivateWindow(w1.get());
46 EXPECT_EQ(w1.get(), window_list[0]);
54 scoped_ptr<aura::Window> w1(CreateWindow());
65 wm::ActivateWindow(w1.get());
67 wm::GetWindowState(w1.get())->Minimize();
78 EXPECT_EQ(w1.get(), window_list[3]);
H A Dworkspace_controller_unittest.cc163 scoped_ptr<Window> w1(CreateTestWindow());
164 w1->SetBounds(gfx::Rect(0, 0, 250, 251));
166 wm::WindowState* window_state = wm::GetWindowState(w1.get());
170 w1->Show();
174 ASSERT_TRUE(w1->layer() != NULL);
175 EXPECT_TRUE(w1->layer()->visible());
177 EXPECT_EQ("0,0 250x251", w1->bounds().ToString());
179 EXPECT_EQ(w1.get(), GetDesktop()->children()[0]);
184 scoped_ptr<Window> w1(CreateTestWindow());
185 w1
[all...]
H A Dwindow_modality_controller_unittest.cc38 // Creates three windows, w1, w11, and w12. w11 is a non-modal transient, w12 is
42 // - activating w1 activates w12 and updates stacking order appropriately.
46 scoped_ptr<aura::Window> w1(
53 ::wm::AddTransientChild(w1.get(), w11.get());
54 wm::ActivateWindow(w1.get());
55 EXPECT_TRUE(wm::IsActiveWindow(w1.get()));
60 ::wm::AddTransientChild(w1.get(), w12.get());
68 EXPECT_TRUE(ValidateStacking(w1->parent(), check1, arraysize(check1)));
70 wm::ActivateWindow(w1.get());
75 EXPECT_TRUE(ValidateStacking(w1
[all...]
/external/chromium_org/ui/views/corewm/
H A Dcapture_controller_unittest.cc96 scoped_ptr<aura::Window> w1(CreateNormalWindow(1, root_window(), NULL));
99 // will dispatch further mouse events to |w1|.
103 EXPECT_EQ(w1.get(), host()->dispatcher()->mouse_pressed_handler());
120 scoped_ptr<aura::Window> w1(CreateNormalWindow(1, root_window(), NULL));
121 w1->SetCapture();
123 EXPECT_EQ(w1.get(), GetCaptureWindow());
124 EXPECT_EQ(w1.get(), GetSecondCaptureWindow());
139 scoped_ptr<aura::Window> w1(CreateNormalWindow(1, root_window(), NULL));
142 w1->SetCapture();
144 EXPECT_EQ(w1
[all...]
/external/llvm/test/MC/Mips/msa/
H A Dtest_i5.s6 # CHECK: addvi.d $w16, $w1, 21 # encoding: [0x78,0x75,0x0c,0x06]
9 # CHECK: ceqi.w $w12, $w1, -1 # encoding: [0x78,0x5f,0x0b,0x07]
17 # CHECK: clei_u.w $w1, $w1, 2 # encoding: [0x7a,0xc2,0x08,0x47]
25 # CHECK: clti_u.w $w1, $w1, 22 # encoding: [0x79,0xd6,0x08,0x47]
29 # CHECK: maxi_s.w $w1, $w10, -12 # encoding: [0x79,0x54,0x50,0x46]
32 # CHECK: maxi_u.h $w1, $w14, 3 # encoding: [0x79,0xa3,0x70,0x46]
35 # CHECK: mini_s.b $w4, $w1, 1 # encoding: [0x7a,0x01,0x09,0x06]
51 addvi.d $w16, $w1, 2
[all...]
H A Dtest_i8.s5 # CHECK: bmzi.b $w27, $w1, 88 # encoding: [0x79,0x58,0x0e,0xc1]
7 # CHECK: nori.b $w1, $w17, 56 # encoding: [0x7a,0x38,0x88,0x40]
16 bmzi.b $w27, $w1, 88
18 nori.b $w1, $w17, 56
/external/chromium_org/ash/wm/workspace/
H A Dmulti_window_resize_controller_unittest.cc101 scoped_ptr<aura::Window> w1(
108 ui::test::EventGenerator generator(w1->GetRootWindow());
109 generator.MoveMouseTo(w1->bounds().CenterPoint());
132 scoped_ptr<aura::Window> w1(
139 ui::test::EventGenerator generator(w1->GetRootWindow());
140 generator.MoveMouseTo(w1->bounds().CenterPoint());
169 EXPECT_FALSE(HasTarget(w1.get()));
175 scoped_ptr<aura::Window> w1(
182 ui::test::EventGenerator generator(w1->GetRootWindow());
183 generator.MoveMouseTo(w1
[all...]
/external/chromium_org/net/websockets/
H A Dwebsocket_throttle_test.cc87 scoped_refptr<WebSocketJob> w1(new WebSocketJob(&delegate));
89 new SocketStream(GURL("ws://host1/"), w1.get(), &context, NULL));
90 w1->InitSocketStream(s1.get());
96 EXPECT_EQ(OK, w1->OnStartOpenConnection(s1.get(), callback_s1.callback()));
100 // 1.2.3.4 | w1
101 // 1.2.3.5 | w1
102 // 1.2.3.6 | w1
115 // Trying to open connection to host2 will wait for w1.
120 // 1.2.3.4 | w1 w2
121 // 1.2.3.5 | w1
[all...]
/external/libhevc/common/arm64/
H A Dihevc_mem_fns.s153 dup v0.8b,w1
182 dup v0.8b,w1
196 STRB w1,[x0],#1
227 dup v0.8h,w1
255 dup v0.8h,w1
269 STRH w1,[x0],#2
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dstring-weight.h288 inline bool operator==(const StringWeight<L, S> &w1, argument
290 if (w1.Size() != w2.Size())
293 StringWeightIterator<L, S> iter1(w1);
304 inline bool operator!=(const StringWeight<L, S> &w1, argument
306 return !(w1 == w2);
310 inline bool ApproxEqual(const StringWeight<L, S> &w1, argument
313 return w1 == w2;
362 Plus(const StringWeight<L, S> &w1, argument
364 if (w1 == StringWeight<L, S>::Zero())
367 return w1;
379 Plus(const StringWeight<L, STRING_LEFT> &w1, const StringWeight<L, STRING_LEFT> &w2) argument
398 Plus(const StringWeight<L, STRING_RIGHT> &w1, const StringWeight<L, STRING_RIGHT> &w2) argument
416 Times(const StringWeight<L, S> &w1, const StringWeight<L, S> &w2) argument
432 Divide(const StringWeight<L, S> &w1, const StringWeight<L, S> &w2, DivideType typ) argument
457 Divide(const StringWeight<L, STRING_RIGHT> &w1, const StringWeight<L, STRING_RIGHT> &w2, DivideType typ) argument
482 Divide(const StringWeight<L, STRING_RIGHT_RESTRICT> &w1, const StringWeight<L, STRING_RIGHT_RESTRICT> &w2, DivideType typ) argument
513 GallicWeight(StringWeight<L, S> w1, W w2) argument
[all...]
/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/lzma/CPP/Common/
H A DMyGuidDef.h49 #define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
50 MY_EXTERN_C const GUID name = { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }
52 #define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
/external/chromium_org/ui/aura/
H A Dwindow_unittest.cc258 scoped_ptr<Window> w1(CreateTestWindowWithId(1, root_window()));
259 scoped_ptr<Window> w11(CreateTestWindowWithId(11, w1.get()));
261 scoped_ptr<Window> w12(CreateTestWindowWithId(12, w1.get()));
263 EXPECT_EQ(NULL, w1->GetChildById(57));
264 EXPECT_EQ(w12.get(), w1->GetChildById(12));
265 EXPECT_EQ(w111.get(), w1->GetChildById(111));
315 scoped_ptr<Window> w1(CreateTestWindowWithId(1, root_window()));
318 Window::ConvertPointToTarget(NULL, w1.get(), &test_point);
323 scoped_ptr<Window> w1(
327 CreateTestWindow(SK_ColorGREEN, 11, gfx::Rect(5, 5, 100, 100), 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...]

Completed in 1005 milliseconds

12345678910