HomeSort by relevance Sort by last modified time
    Searched refs:w2 (Results 26 - 50 of 192) sorted by null

12 3 4 5 6 7 8

  /external/openfst/src/include/fst/
sparse-power-weight.h 151 const SparsePowerWeight<W, K> &w2) {
154 SparseTupleWeightMap(&ret, w1, w2, operator_mapper);
161 const SparsePowerWeight<W, K> &w2) {
164 SparseTupleWeightMap(&ret, w1, w2, operator_mapper);
171 const SparsePowerWeight<W, K> &w2,
175 SparseTupleWeightMap(&ret, w1, w2, operator_mapper);
182 const SparsePowerWeight<W, K> &w2) {
183 const SparsePowerWeight<W, K>& product = Times(w1, w2);
193 const SparsePowerWeight<W, K> &w2,
197 SparseTupleWeightMap(&ret, w1, w2, operator_mapper)
    [all...]
signed-log-weight.h 109 const SignedLogWeightTpl<T> &w2) {
110 if (!w1.Member() || !w2.Member())
113 bool s2 = w2.Value1().Value() > 0.0;
115 T f2 = w2.Value2().Value();
117 return w2;
131 w2.Value1(), (f2 - log(1.0F - exp(f2 - f1))));
136 w2.Value1(), (f1 - log(1.0F + exp(f1 - f2))));
146 const SignedLogWeightTpl<T> &w2) {
147 SignedLogWeightTpl<T> minus_w2(-w2.Value1().Value(), w2.Value2())
    [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();
167 return W2::NoWeight();
pair-weight.h 37 template<class W1, class W2> class PairWeight;
38 template <class W1, class W2>
39 istream &operator>>(istream &strm, PairWeight<W1, W2> &w);
41 template<class W1, class W2>
44 friend istream &operator>><W1, W2>(istream&, PairWeight<W1, W2>&);
47 typename W2::ReverseWeight>
54 PairWeight(W1 w1, W2 w2) : value1_(w1), value2_(w2) {}
136 W2 w2 = W2::Zero(); local
137 strm >> w2; local
199 W2 w2 = W2::Zero(); local
200 strm2 >> w2; local
    [all...]
power-weight.h 100 const PowerWeight<W, n> &w2) {
103 w.SetValue(i, Plus(w1.Value(i), w2.Value(i)));
110 const PowerWeight<W, n> &w2) {
113 w.SetValue(i, Times(w1.Value(i), w2.Value(i)));
120 const PowerWeight<W, n> &w2,
124 w.SetValue(i, Divide(w1.Value(i), w2.Value(i), type));
149 const PowerWeight<W, n> &w2) {
152 w = Plus(w, Times(w1.Value(i), w2.Value(i)));
  /external/chromium_org/ash/wm/dock/
docked_window_layout_manager_unittest.cc 254 scoped_ptr<aura::Window> w2(CreateTestWindow(gfx::Rect(0, 0, 210, 202)));
256 DragToVerticalPositionAndToEdge(DOCKED_EDGE_RIGHT, w2.get(), 300);
262 EXPECT_EQ(w2->GetRootWindow()->bounds().right(),
263 w2->GetBoundsInScreen().right());
264 EXPECT_EQ(internal::kShellWindowId_DockedContainer, w2->parent()->id());
268 int gap2 = w2->GetBoundsInScreen().y() - w1->GetBoundsInScreen().bottom();
270 w2->GetBoundsInScreen().bottom();
282 scoped_ptr<aura::Window> w2(CreateTestWindow(gfx::Rect(0, 0, 210, 202)));
284 DragToVerticalPositionAndToEdge(DOCKED_EDGE_RIGHT, w2.get(), 300);
290 EXPECT_EQ(w2->GetRootWindow()->bounds().right()
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/gem/
SDL_gemevents.c 83 short x2,y2,w2,h2; local
89 x2=y2=w2=h2 = 0;
93 wind_get (GEM_handle, WF_WORKXYWH, &x2, &y2, &w2, &h2);
102 mouse_event,x2,y2,w2,h2,
177 short x2,y2,w2,h2; local
234 wind_get (message[3], WF_WORKXYWH, &x2, &y2, &w2, &h2);
237 SDL_PrivateResize(w2, h2);
254 wind_get (message[3], WF_WORKXYWH, &x2, &y2, &w2, &h2);
256 SDL_PrivateResize(w2, h2);
301 short x2, y2, w2, h2 local
    [all...]
  /external/chromium_org/ash/wm/panels/
panel_layout_manager_unittest.cc 359 scoped_ptr<aura::Window> w2(CreatePanelWindow(even_bounds));
361 EXPECT_NO_FATAL_FAILURE(IsPanelAboveLauncherIcon(w2.get()));
365 EXPECT_NO_FATAL_FAILURE(IsPanelAboveLauncherIcon(w2.get()));
372 scoped_ptr<aura::Window> w2(CreatePanelWindow(bounds));
376 EXPECT_TRUE(WindowIsAbove(w3.get(), w2.get()));
377 EXPECT_TRUE(WindowIsAbove(w2.get(), w1.get()));
382 EXPECT_TRUE(WindowIsAbove(w1.get(), w2.get()));
383 EXPECT_TRUE(WindowIsAbove(w2.get(), w3.get()));
385 wm::ActivateWindow(w2.get());
388 EXPECT_TRUE(WindowIsAbove(w2.get(), w3.get()))
    [all...]
  /external/chromium_org/ash/wm/
workspace_controller_unittest.cc 198 scoped_ptr<Window> w2(CreateTestWindow());
205 w2->SetBounds(gfx::Rect(0, 0, 50, 51));
206 w2->SetProperty(aura::client::kShowStateKey, ui::SHOW_STATE_FULLSCREEN);
207 w2->Show();
208 wm::ActivateWindow(w2.get());
212 EXPECT_EQ(w2.get(), GetDesktop()->children()[1]);
216 EXPECT_EQ(work_area.width(), w2->bounds().width());
217 EXPECT_EQ(work_area.height(), w2->bounds().height());
219 // Restore w2, which should then go back to one workspace.
220 w2->SetProperty(aura::client::kShowStateKey, ui::SHOW_STATE_NORMAL)
    [all...]
activation_controller_unittest.cc 60 aura::Window* w2() { return w2_.get(); } function in class:ash::test::GetTopmostWindowToActivateTest
139 wm::ActivateWindow(w2());
140 EXPECT_TRUE(wm::IsActiveWindow(w2()));
142 w2()->Hide();
149 wm::ActivateWindow(w2());
150 EXPECT_TRUE(wm::IsActiveWindow(w2()));
153 EXPECT_EQ(NULL, w2());
160 wm::ActivateWindow(w2());
161 EXPECT_TRUE(wm::IsActiveWindow(w2()));
163 wm::DeactivateWindow(w2());
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
string-weight.h 289 const StringWeight<L, S> &w2) {
290 if (w1.Size() != w2.Size())
294 StringWeightIterator<L, S> iter2(w2);
305 const StringWeight<L, S> &w2) {
306 return !(w1 == w2);
311 const StringWeight<L, S> &w2,
313 return w1 == w2;
363 const StringWeight<L, S> &w2) {
365 return w2;
366 if (w2 == StringWeight<L, S>::Zero()
    [all...]
product-weight.h 28 // Product semiring: W1 * W2
29 template<class W1, class W2>
32 typedef ProductWeight<typename W1::ReverseWeight, typename W2::ReverseWeight>
37 ProductWeight(W1 w1, W2 w2) : value1_(w1), value2_(w2) {}
39 static const ProductWeight<W1, W2> &Zero() {
40 static const ProductWeight<W1, W2> zero(W1::Zero(), W2::Zero());
44 static const ProductWeight<W1, W2> &One()
163 W2 w2 = W2::Zero(); local
164 strm >> w2; local
    [all...]
  /external/lzma/CPP/Common/
MyGuidDef.h 49 #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) \
  /bionic/libc/arch-arm/cortex-a15/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...]
  /external/dropbear/libtomcrypt/src/ciphers/
skipjack.c 93 w4 = w3; w3 = w2; \
94 w2 = tmp;
99 w3 = w1 ^ w2 ^ x; \
100 w1 = tmp1; w2 = tmp;
103 tmp = w1 ^ w2 ^ x; \
104 w1 = ig_func(w2, &kp, skey->skipjack.key); \
105 w2 = w3; w3 = w4; w4 = tmp;
108 tmp = ig_func(w2, &kp, skey->skipjack.key); \
109 w2 = tmp ^ w3 ^ x; \
149 unsigned w1,w2,w3,w4,tmp,tmp1 local
213 unsigned w1,w2,w3,w4,tmp; local
    [all...]
  /external/llvm/test/MC/AArch64/
basic-a64-diagnostics.s 10 add x2, x4, w2, uxtx
16 // CHECK-ERROR: add x2, x4, w2, uxtx
51 adds sp, x3, w2, uxtb
56 // CHECK-ERROR: adds sp, x3, w2, uxtb
97 add w2, w3, #0x1, lsl #1
102 // CHECK-ERROR-NEXT: add w2, w3, #0x1, lsl #1
133 add xsp, w2, #123
134 sub w2, x30, #32
136 // CHECK-ERROR-NEXT: add xsp, w2, #123
139 // CHECK-ERROR-NEXT: sub w2, x30, #3
    [all...]
  /external/chromium_org/ui/views/corewm/
window_util_unittest.cc 60 // +-- w2
85 views::Widget* w2 = CreateControlWidget(w1->GetNativeView(), local
87 w2->GetNativeView()->layer()->set_name("w2");
88 w2->GetNativeView()->SetProperty(views::kHostViewKey, w2_host_view);
91 w2->GetRootView()->AddChildView(v5);
97 ASSERT_EQ("v1 v4 w2 v7", ui::test::ChildLayerNamesAsString(*w1_layer));
108 ASSERT_EQ("v1 v4 w2 v7", ui::test::ChildLayerNamesAsString(*w1_layer));
  /external/chromium_org/content/renderer/pepper/
pepper_graphics_2d_host_unittest.cc 31 int w2; member in struct:content::__anon10455
76 gfx::Rect r2(tests[i].x2, tests[i].y2, tests[i].w2, tests[i].h2);
  /external/chromium_org/ui/views/widget/
window_reorderer_unittest.cc 75 scoped_ptr<Widget> w2(CreateControlWidget(parent_window,
77 SetWindowAndLayerName(w2->GetNativeView(), "w2");
78 w2->Show();
80 EXPECT_EQ("w1 w2", ChildWindowNamesAsString(*parent_window));
81 EXPECT_EQ("v w1 w2",
86 w2->GetNativeView()->SetProperty(kHostViewKey, host_view2);
87 EXPECT_EQ("w2 w1", ChildWindowNamesAsString(*parent_window));
88 EXPECT_EQ("v w2 w1",
94 EXPECT_EQ("w1 w2", ChildWindowNamesAsString(*parent_window))
145 aura::Window* w2 = aura::test::CreateTestWindowWithId(0, NULL); local
    [all...]
  /external/clang/test/SemaCXX/
default-assignment-operator.cpp 53 W w1, w2; variable
56 w1 = w2;
  /external/chromium_org/net/websockets/
websocket_throttle_unittest.cc 95 scoped_refptr<WebSocketJob> w2(new WebSocketJob(&delegate));
97 new SocketStream(GURL("ws://host2/"), w2.get()));
99 w2->InitSocketStream(s2.get());
106 w2->OnStartOpenConnection(s2.get(), callback_s2.callback()));
109 // 1.2.3.4 | w1 w2
129 // 1.2.3.4 | w1 w2
146 // Trying to open connection to host4 will wait for w1, w2.
150 // 1.2.3.4 | w1 w2 w4
170 // 1.2.3.4 | w1 w2 w4
190 // 1.2.3.4 | w1 w2 w
    [all...]
  /external/smack/src/org/xbill/DNS/
LOCRecord.java 18 private static NumberFormat w2, w3; field in class:LOCRecord
24 w2 = new DecimalFormat();
25 w2.setMinimumIntegerDigits(2);
228 renderFixedPoint(sb, w2, altitude - 10000000, 100);
232 renderFixedPoint(sb, w2, size, 100);
236 renderFixedPoint(sb, w2, hPrecision, 100);
240 renderFixedPoint(sb, w2, vPrecision, 100);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
chvr_filter.cpp 40 int w1, w2, w3, w4; local
57 w2 = width << 1; /* Offset to two rows in pixels */
58 w3 = w1 + w2; /* Offset to three rows in pixels */
59 w4 = w2 << 1; /* Offset to four rows in pixels */
133 v[1] = (int)(*(ptr_c - w2));
143 + (*(ptr_c + w2))
187 a3_0 += ((*(ptr - w2) - *(ptr + w1)) << 1) + (a3_0 << 2);
192 a3_1 = *(ptr - w2) - *(ptr - w3);
195 a3_2 = *(ptr + w2) - *(ptr + w1);
  /external/clang/test/Analysis/inlining/
containers.cpp 44 void testWrappers(BeginOnlySet &w1, IteratorStructOnlySet &w2,
58 clang_analyzer_eval(w2.start().impl == w2.start().impl);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
ChunkedIntArray.java 71 int appendSlot(int w0, int w1, int w2, int w3)
79 fastArray[newoffset+2] = w2;
97 chunk[slotpos+2] = w2;
218 * @param w2 int
221 void writeSlot(int position, int w0, int w1, int w2, int w3)
233 chunk[slotpos + 2] = w2;

Completed in 1580 milliseconds

12 3 4 5 6 7 8