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

1 2

  /external/smack/src/org/xbill/DNS/
FormattedTime.java 16 private static NumberFormat w2, w4; field in class:FormattedTime
22 w4 = new DecimalFormat();
23 w4.setMinimumIntegerDigits(4);
24 w4.setGroupingUsed(false);
41 sb.append(w4.format(c.get(Calendar.YEAR)));
  /external/chromium_org/ash/wm/
mru_window_tracker_unittest.cc 57 scoped_ptr<aura::Window> w4(CreateWindow());
62 wm::ActivateWindow(w4.get());
68 wm::GetWindowState(w4.get())->Minimize();
79 EXPECT_EQ(w4.get(), window_list[4]);
window_modality_controller_unittest.cc 515 scoped_ptr<aura::Window> w4(
517 w4->SetProperty(aura::client::kModalKey, ui::MODAL_TYPE_WINDOW);
518 w1->AddTransientChild(w4.get());
521 EXPECT_TRUE(wm::IsActiveWindow(w4.get()));
524 EXPECT_TRUE(wm::IsActiveWindow(w4.get()));
527 EXPECT_TRUE(wm::IsActiveWindow(w4.get()));
529 wm::ActivateWindow(w4.get());
530 EXPECT_TRUE(wm::IsActiveWindow(w4.get()));
543 scoped_ptr<aura::Window> w4(
545 w4->SetProperty(aura::client::kModalKey, ui::MODAL_TYPE_CHILD)
    [all...]
solo_window_tracker_unittest.cc 342 scoped_ptr<aura::Window> w4(CreateWindowInPrimary());
343 w4->SetBoundsInScreen(gfx::Rect(0, 0, 100, 100), GetPrimaryDisplay());
344 w4->Show();
346 // Because the primary display has three windows w1, w3, and w4, they
352 // Move w4 to the secondary display. Now w2 shouldn't be solo anymore.
353 w4->SetBoundsInScreen(gfx::Rect(1200, 0, 100, 100), GetSecondaryDisplay());
369 // Close w3 and w4.
371 w4.reset();
  /external/dropbear/libtomcrypt/src/ciphers/
skipjack.c 92 w1 = tmp ^ w4 ^ x; \
93 w4 = w3; w3 = w2; \
98 tmp1 = w4; w4 = w3; \
105 w2 = w3; w3 = w4; w4 = tmp;
110 w3 = w4; w4 = w1; w1 = tmp;
149 unsigned w1,w2,w3,w4,tmp,tmp1; local
160 w4 = ((unsigned)pt[6]<<8)|pt[7]
213 unsigned w1,w2,w3,w4,tmp; local
    [all...]
  /external/dropbear/libtommath/
bn_mp_toom_mul.c 27 mp_int w0, w1, w2, w3, w4, tmp1, tmp2, a0, a1, a2, b0, b1, b2; local
31 if ((res = mp_init_multi(&w0, &w1, &w2, &w3, &w4,
77 /* w4 = a2 * b2 */
78 if ((res = mp_mul(&a2, &b2, &w4)) != MP_OKAY) {
175 if ((res = mp_sub(&w1, &w4, &w1)) != MP_OKAY) {
194 if ((res = mp_sub(&w2, &w4, &w2)) != MP_OKAY) {
213 if ((res = mp_mul_2d(&w4, 3, &tmp1)) != MP_OKAY) {
256 if ((res = mp_lshd(&w4, 4*B)) != MP_OKAY) {
266 if ((res = mp_add(&w4, &tmp1, &tmp1)) != MP_OKAY) {
274 mp_clear_multi(&w0, &w1, &w2, &w3, &w4,
    [all...]
bn_mp_toom_sqr.c 22 mp_int w0, w1, w2, w3, w4, tmp1, a0, a1, a2; local
26 if ((res = mp_init_multi(&w0, &w1, &w2, &w3, &w4, &a0, &a1, &a2, &tmp1, NULL)) != MP_OKAY) {
54 /* w4 = a2 * a2 */
55 if ((res = mp_sqr(&a2, &w4)) != MP_OKAY) {
119 if ((res = mp_sub(&w1, &w4, &w1)) != MP_OKAY) {
138 if ((res = mp_sub(&w2, &w4, &w2)) != MP_OKAY) {
157 if ((res = mp_mul_2d(&w4, 3, &tmp1)) != MP_OKAY) {
200 if ((res = mp_lshd(&w4, 4*B)) != MP_OKAY) {
210 if ((res = mp_add(&w4, &tmp1, &tmp1)) != MP_OKAY) {
218 mp_clear_multi(&w0, &w1, &w2, &w3, &w4, &a0, &a1, &a2, &tmp1, NULL)
    [all...]
  /external/clang/test/Analysis/inlining/
containers.cpp 45 IteratorTypedefOnlySet &w3, IteratorUsingOnlySet &w4) {
72 clang_analyzer_eval(w4.start().impl == w4.start().impl);
  /external/chromium/net/websockets/
websocket_throttle_unittest.cc 144 scoped_refptr<WebSocketJob> w4(new WebSocketJob(&delegate));
146 new SocketStream(GURL("ws://host4/"), w4.get()));
147 w4->InitSocketStream(s4.get());
154 EXPECT_EQ(ERR_IO_PENDING, w4->OnStartOpenConnection(s4, &callback_s4));
156 // 1.2.3.4 | w1 w2 w4
158 // 1.2.3.6 | w1 w4
171 // Trying to open connection to host5 will wait for w1, w4
174 // 1.2.3.4 | w1 w2 w4
176 // 1.2.3.6 | w1 w4 w5
189 // Trying to open connection to host6 will wait for w1, w4, w
    [all...]
  /external/chromium_org/net/websockets/
websocket_throttle_test.cc 137 scoped_refptr<WebSocketJob> w4(new WebSocketJob(&delegate));
139 new SocketStream(GURL("ws://host4/"), w4.get()));
141 w4->InitSocketStream(s4.get());
148 w4->OnStartOpenConnection(s4.get(), callback_s4.callback()));
150 // 1.2.3.4 | w1 w2 w4
152 // 1.2.3.6 | w1 w4
166 // Trying to open connection to host5 will wait for w1, w4
170 // 1.2.3.4 | w1 w2 w4
172 // 1.2.3.6 | w1 w4 w5
186 // Trying to open connection to host6 will wait for w1, w4, w
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
chvr_filter.cpp 40 int w1, w2, w3, w4; local
59 w4 = w2 << 1; /* Offset to four rows in pixels */
193 a3_1 += ((*(ptr - w4) - *(ptr - w1)) << 1) + (a3_1 << 2);
  /external/libvpx/libvpx/vp9/common/x86/
vp9_copy_sse2.asm 21 je .w4
125 .w4:
  /external/llvm/test/MC/AArch64/
basic-a64-instructions.s 267 add w4, w5, #0x0
272 // CHECK: add w4, w5, #0 // encoding: [0xa4,0x00,0x00,0x11]
298 sub w4, w20, #546, lsl #12
302 // CHECK: sub w4, w20, #546, lsl #12 // encoding: [0x84,0x8a,0x48,0x51]
363 add w20, wzr, w4
364 add w4, w6, wzr
367 // CHECK: add w20, wzr, w4 // encoding: [0xf4,0x03,0x04,0x0b]
368 // CHECK: add w4, w6, wzr // encoding: [0xc4,0x00,0x1f,0x0b]
384 add w2, w3, w4, asr #0
387 // CHECK: add w2, w3, w4, asr #0 // encoding: [0x62,0x00,0x84,0x0b
    [all...]
basic-a64-diagnostics.s 79 add w4, w5, #-1
81 add w4, w5, #-1, lsl #12
84 // CHECK-ERROR-NEXT: add w4, w5, #-1
90 // CHECK-ERROR-NEXT: add w4, w5, #-1, lsl #12
149 adds w4, wzr, #0x123
154 // CHECK-ERROR-NEXT: adds w4, wzr, #0x123
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldAndroidMonitorTest.java 389 Worker w4 = new Worker(6, 7); local
398 w4.start();
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_noise.c 529 float x1, y1, z1, w1, x2, y2, z2, w2, x3, y3, z3, w3, x4, y4, z4, w4; local
573 w4 = w0 - 1.0f + 4.0f * G4;
625 t4 = 0.6f - x4 * x4 - y4 * y4 - z4 * z4 - w4 * w4;
633 y4, z4, w4);
  /external/mesa3d/src/mesa/program/
prog_noise.c 529 float x1, y1, z1, w1, x2, y2, z2, w2, x3, y3, z3, w3, x4, y4, z4, w4; local
573 w4 = w0 - 1.0f + 4.0f * G4;
625 t4 = 0.6f - x4 * x4 - y4 * y4 - z4 * z4 - w4 * w4;
633 y4, z4, w4);
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_lgamma_r.c 153 w4 = -5.95187557450339963135e-04, /* 0xBF4380CB, 0x8C0FE741 */ variable
290 w = w0+z*(w1+y*(w2+y*(w3+y*(w4+y*(w5+y*w6)))));
e_lgammaf_r.c 86 w4 = -5.9518753551e-04, /* 0xba1c065c */ variable
223 w = w0+z*(w1+y*(w2+y*(w3+y*(w4+y*(w5+y*w6)))));
  /external/fdlibm/
e_lgamma_r.c 152 w4 = -5.95187557450339963135e-04, /* 0xBF4380CB, 0x8C0FE741 */ variable
297 w = w0+z*(w1+y*(w2+y*(w3+y*(w4+y*(w5+y*w6)))));
  /external/dropbear/libtommath/pre_gen/
mpi.c 7847 mp_int w0, w1, w2, w3, w4, tmp1, tmp2, a0, a1, a2, b0, b1, b2; local
8130 mp_int w0, w1, w2, w3, w4, tmp1, a0, a1, a2; local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
GLES11Canvas.java 332 float w4 = m[3] * x2 + m[7] * y2 + m[15]; local
333 r[2] = x4 / w4;
334 r[3] = y4 / w4;
    [all...]
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_dct_sse2.c 81 const __m128i w4 = _mm_srai_epi32(v4, DCT_CONST_BITS); local
85 const __m128i res1 = _mm_packs_epi32(w4, w6);
358 const __m128i w4 = _mm_srai_epi32(v4, DCT_CONST_BITS); local
365 res2 = _mm_packs_epi32(w4, w5);
420 const __m128i w4 = _mm_srai_epi32(v4, DCT_CONST_BITS); local
427 res5 = _mm_packs_epi32(w4, w5);
821 __m128i w0, w1, w2, w3, w4, w5, w6, w7, w8, w9, w10, w11, w12, w13, w14, w15; local
1264 const __m128i w4 = _mm_srai_epi32(v4, DCT_CONST_BITS); local
1328 const __m128i w4 = _mm_srai_epi32(v4, DCT_CONST_BITS); local
    [all...]
  /external/clang/lib/Headers/
emmintrin.h 1101 _mm_set_epi16(short w7, short w6, short w5, short w4, short w3, short w2, short w1, short w0)
1103 return (__m128i)(__v8hi){ w0, w1, w2, w3, w4, w5, w6, w7 };
1155 _mm_setr_epi16(short w0, short w1, short w2, short w3, short w4, short w5, short w6, short w7)
1157 return (__m128i)(__v8hi){ w0, w1, w2, w3, w4, w5, w6, w7 };
    [all...]
  /prebuilts/sdk/renderscript/clang-include/
emmintrin.h 1101 _mm_set_epi16(short w7, short w6, short w5, short w4, short w3, short w2, short w1, short w0)
1103 return (__m128i)(__v8hi){ w0, w1, w2, w3, w4, w5, w6, w7 };
1155 _mm_setr_epi16(short w0, short w1, short w2, short w3, short w4, short w5, short w6, short w7)
1157 return (__m128i)(__v8hi){ w0, w1, w2, w3, w4, w5, w6, w7 };
    [all...]

Completed in 637 milliseconds

1 2