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

1 2 3 4 5

  /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);
  /ndk/tests/device/test-stlport_shared-exception/jni/
eh2.cpp 17 test w1; local
  /ndk/tests/device/test-stlport_static-exception/jni/
eh2.cpp 17 test w1; local
  /external/libunwind/src/hppa/
Gis_signal_frame.c 33 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/
Gstep.c 38 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);
Gos-freebsd.c 41 unw_word_t w0, w1, w2, b0, ip; local
63 || (ret = (*a->access_mem) (as, ip + 8, &w1, 0, arg)) < 0
68 w1 == 0x050f000001a1c0c7 &&
  /external/chromium_org/components/query_parser/
query_parser_unittest.cc 147 const std::string w1; member in struct:query_parser::TestData2
162 EXPECT_EQ(data[i].w1, base::UTF16ToUTF8(results[0]));
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
pitch_filter_mips.c 26 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], %[w1], 12 \n\t
    [all...]
  /external/chromium_org/ui/views/widget/
window_reorderer_unittest.cc 71 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 w2", ChildWindowNamesAsString(*parent_window))
141 aura::Window* w1 = aura::test::CreateTestWindowWithId(0, local
    [all...]
  /external/clang/test/Analysis/
initializer.cpp 123 Wrapper w1; local
124 clang_analyzer_eval(w1.value == 42); // expected-warning{{TRUE}}
  /external/libunwind/src/x86/
Gos-linux.c 33 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));
Gos-freebsd.c 42 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 &&
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
random-weight.h 127 typedef typename G1::Weight W1;
129 typedef ProductWeight<W1, W2> Weight;
135 W1 w1 = generator1_(); local
137 return Weight(w1, w2);
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()
159 W1 w1 = W1::Zero(); local
160 strm1 >> w1; local
    [all...]
  /external/bluetooth/bluedroid/embdrv/sbc/decoder/srce/
synthesis-dct8.c 66 OI_INT32 u1, v1, w1, w2, t; local
72 w1 = t & 0xFFFF;
74 w1 = u0*v1 + w1;
75 return u1*v1 + w2 + (w1 >> 16);
  /external/chromium_org/ash/wm/
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/content/renderer/pepper/
pepper_graphics_2d_host_unittest.cc 106 int w1; member in struct:content::__anon12056
152 gfx::Rect r1(tests[i].x1, tests[i].y1, tests[i].w1, tests[i].h1);
  /external/chromium_org/ui/views/
view_unittest_aura.cc 51 // 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->GetNativeView()->layer()
    [all...]
  /external/clang/test/Headers/
stddefneeds.cpp 15 wint_t w1; // expected-error{{unknown}} variable
  /external/clang/test/SemaCXX/
default-assignment-operator.cpp 53 W w1, w2; variable
56 w1 = w2;
  /external/libvorbis/lib/
mdct.c 352 DATA_TYPE *w1 = x = w0+(n>>1); local
364 w1 -= 4;
370 w1[2] = r0 - r2;
372 w1[3] = r3 - r1;
386 w1[0] = r0 - r2;
388 w1[1] = r3 - r1;
394 }while(w0<w1);
  /external/srec/srec/cfront/
spec_anl.c 455 float w1 = x - l; local
456 float w2 = 1 - w1;
460 tmpbuf[i] = (int)(w1 * inbuf[u] + w2 * inbuf[l]);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
chvr_filter.cpp 40 int w1, w2, w3, w4; local
56 w1 = width; /* Offset to next row in pixels */
58 w3 = w1 + w2; /* Offset to three rows in pixels */
124 a3_0 = *ptr - *(ptr - w1);
131 ptr_n = ptr + w1; /* Points to pixel one row below */
134 v[2] = (int)(*(ptr_c - w1));
136 v[4] = (int)(*(ptr_c + w1));
151 ptr_c += w1;
162 ptr_c += w1;
163 ptr_n += w1;
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldAndroidMonitorTest.java 386 Worker w1 = new Worker(0, 1); local
395 w1.start();
  /cts/hostsidetests/theme/src/android/theme/cts/
ComparisonTask.java 127 final int w1 = image1.getWidth(); local
131 final int width = Math.max(w1, w2);
138 final boolean inBounds1 = i < w1 && j < h1;

Completed in 934 milliseconds

1 2 3 4 5