Home
last modified time | relevance | path

Searched refs:w4 (Results 1 – 25 of 38) sorted by relevance

12

/external/dropbear/libtomcrypt/src/ciphers/
Dskipjack.c92 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; in _skipjack_ecb_encrypt() local
160 w4 = ((unsigned)pt[6]<<8)|pt[7]; in _skipjack_ecb_encrypt()
186 ct[6] = (w4>>8)&255; ct[7] = w4&255; in _skipjack_ecb_encrypt()
213 unsigned w1,w2,w3,w4,tmp; in _skipjack_ecb_decrypt() local
224 w4 = ((unsigned)ct[6]<<8)|ct[7]; in _skipjack_ecb_decrypt()
[all …]
/external/dropbear/libtommath/
Dbn_mp_toom_sqr.c22 mp_int w0, w1, w2, w3, w4, tmp1, a0, a1, a2; in mp_toom_sqr() local
26 if ((res = mp_init_multi(&w0, &w1, &w2, &w3, &w4, &a0, &a1, &a2, &tmp1, NULL)) != MP_OKAY) { in mp_toom_sqr()
55 if ((res = mp_sqr(&a2, &w4)) != MP_OKAY) { in mp_toom_sqr()
119 if ((res = mp_sub(&w1, &w4, &w1)) != MP_OKAY) { in mp_toom_sqr()
138 if ((res = mp_sub(&w2, &w4, &w2)) != MP_OKAY) { in mp_toom_sqr()
157 if ((res = mp_mul_2d(&w4, 3, &tmp1)) != MP_OKAY) { in mp_toom_sqr()
200 if ((res = mp_lshd(&w4, 4*B)) != MP_OKAY) { in mp_toom_sqr()
210 if ((res = mp_add(&w4, &tmp1, &tmp1)) != MP_OKAY) { in mp_toom_sqr()
218 mp_clear_multi(&w0, &w1, &w2, &w3, &w4, &a0, &a1, &a2, &tmp1, NULL); in mp_toom_sqr()
Dbn_mp_toom_mul.c27 mp_int w0, w1, w2, w3, w4, tmp1, tmp2, a0, a1, a2, b0, b1, b2; in mp_toom_mul() local
31 if ((res = mp_init_multi(&w0, &w1, &w2, &w3, &w4, in mp_toom_mul()
78 if ((res = mp_mul(&a2, &b2, &w4)) != MP_OKAY) { in mp_toom_mul()
175 if ((res = mp_sub(&w1, &w4, &w1)) != MP_OKAY) { in mp_toom_mul()
194 if ((res = mp_sub(&w2, &w4, &w2)) != MP_OKAY) { in mp_toom_mul()
213 if ((res = mp_mul_2d(&w4, 3, &tmp1)) != MP_OKAY) { in mp_toom_mul()
256 if ((res = mp_lshd(&w4, 4*B)) != MP_OKAY) { in mp_toom_mul()
266 if ((res = mp_add(&w4, &tmp1, &tmp1)) != MP_OKAY) { in mp_toom_mul()
274 mp_clear_multi(&w0, &w1, &w2, &w3, &w4, in mp_toom_mul()
/external/smack/src/org/xbill/DNS/
DFormattedTime.java16 private static NumberFormat w2, w4; field in FormattedTime
22 w4 = new DecimalFormat();
23 w4.setMinimumIntegerDigits(4);
24 w4.setGroupingUsed(false);
41 sb.append(w4.format(c.get(Calendar.YEAR))); in format()
/external/chromium_org/ash/wm/
Dmru_window_tracker_unittest.cc57 scoped_ptr<aura::Window> w4(CreateWindow()); in TEST_F() local
62 wm::ActivateWindow(w4.get()); in TEST_F()
68 wm::GetWindowState(w4.get())->Minimize(); in TEST_F()
79 EXPECT_EQ(w4.get(), window_list[4]); in TEST_F()
Dwindow_modality_controller_unittest.cc515 scoped_ptr<aura::Window> w4( in TEST_F() local
517 w4->SetProperty(aura::client::kModalKey, ui::MODAL_TYPE_WINDOW); in TEST_F()
518 w1->AddTransientChild(w4.get()); in TEST_F()
521 EXPECT_TRUE(wm::IsActiveWindow(w4.get())); in TEST_F()
524 EXPECT_TRUE(wm::IsActiveWindow(w4.get())); in TEST_F()
527 EXPECT_TRUE(wm::IsActiveWindow(w4.get())); in TEST_F()
529 wm::ActivateWindow(w4.get()); in TEST_F()
530 EXPECT_TRUE(wm::IsActiveWindow(w4.get())); in TEST_F()
543 scoped_ptr<aura::Window> w4( in TEST_F() local
545 w4->SetProperty(aura::client::kModalKey, ui::MODAL_TYPE_CHILD); in TEST_F()
[all …]
Dsolo_window_tracker_unittest.cc342 scoped_ptr<aura::Window> w4(CreateWindowInPrimary()); in TEST_F() local
343 w4->SetBoundsInScreen(gfx::Rect(0, 0, 100, 100), GetPrimaryDisplay()); in TEST_F()
344 w4->Show(); in TEST_F()
353 w4->SetBoundsInScreen(gfx::Rect(1200, 0, 100, 100), GetSecondaryDisplay()); in TEST_F()
371 w4.reset(); in TEST_F()
/external/chromium/net/websockets/
Dwebsocket_throttle_unittest.cc144 scoped_refptr<WebSocketJob> w4(new WebSocketJob(&delegate)); in TEST_F() local
146 new SocketStream(GURL("ws://host4/"), w4.get())); in TEST_F()
147 w4->InitSocketStream(s4.get()); in TEST_F()
154 EXPECT_EQ(ERR_IO_PENDING, w4->OnStartOpenConnection(s4, &callback_s4)); in TEST_F()
277 w4->OnClose(s4.get()); in TEST_F()
/external/clang/test/Analysis/inlining/
Dcontainers.cpp45 IteratorTypedefOnlySet &w3, IteratorUsingOnlySet &w4) { in testWrappers() argument
72 clang_analyzer_eval(w4.start().impl == w4.start().impl); in testWrappers()
/external/chromium_org/net/websockets/
Dwebsocket_throttle_test.cc137 scoped_refptr<WebSocketJob> w4(new WebSocketJob(&delegate)); in TEST_F() local
139 new SocketStream(GURL("ws://host4/"), w4.get())); in TEST_F()
141 w4->InitSocketStream(s4.get()); in TEST_F()
148 w4->OnStartOpenConnection(s4.get(), callback_s4.callback())); in TEST_F()
275 w4->OnClose(s4.get()); in TEST_F()
/external/llvm/test/MC/AArch64/
Dbasic-a64-instructions.s267 add w4, w5, #0x0
298 sub w4, w20, #546, lsl #12
363 add w20, wzr, w4
364 add w4, w6, wzr
384 add w2, w3, w4, asr #0
423 adds w20, wzr, w4
424 adds w4, w6, wzr
444 adds w2, w3, w4, asr #0
483 sub w20, wzr, w4
484 sub w4, w6, wzr
[all …]
Dbasic-a64-diagnostics.s79 add w4, w5, #-1
81 add w4, w5, #-1, lsl #12
149 adds w4, wzr, #0x123
1208 ccmp wsp, w4, #2, ne
1242 ccmn wsp, w4, #2, ne
1280 csel w4, wsp, w9, eq
1816 stlxp w5, x1, w4, [x5]
2360 ldr w4, [x0, x4, lsl]
2429 ldr q10, [x20, w4, uxtw #2]
2430 str q21, [x20, w4, uxtw #5]
[all …]
/external/chromium_org/third_party/mesa/src/src/mesa/program/
Dprog_noise.c529 float x1, y1, z1, w1, x2, y2, z2, w2, x3, y3, z3, w3, x4, y4, z4, w4; in _mesa_noise4() local
573 w4 = w0 - 1.0f + 4.0f * G4; in _mesa_noise4()
625 t4 = 0.6f - x4 * x4 - y4 * y4 - z4 * z4 - w4 * w4; in _mesa_noise4()
633 y4, z4, w4); in _mesa_noise4()
/external/mesa3d/src/mesa/program/
Dprog_noise.c529 float x1, y1, z1, w1, x2, y2, z2, w2, x3, y3, z3, w3, x4, y4, z4, w4; in _mesa_noise4() local
573 w4 = w0 - 1.0f + 4.0f * G4; in _mesa_noise4()
625 t4 = 0.6f - x4 * x4 - y4 * y4 - z4 * z4 - w4 * w4; in _mesa_noise4()
633 y4, z4, w4); in _mesa_noise4()
/external/libvpx/libvpx/vp9/common/x86/
Dvp9_copy_sse2.asm21 je .w4
125 .w4: label
/external/fdlibm/
De_lgamma_r.c152 w4 = -5.95187557450339963135e-04, /* 0xBF4380CB, 0x8C0FE741 */ variable
297 w = w0+z*(w1+y*(w2+y*(w3+y*(w4+y*(w5+y*w6)))));
/external/llvm/test/MC/Disassembler/AArch64/
Dbasic-a64-instructions.txt6 # CHECK: add w4, w5, #0
34 # CHECK: sub w4, w20, #546, lsl #12
82 # CHECK: add w20, wzr, w4
83 # CHECK: add w4, w6, wzr
90 # CHECK: add w2, w3, w4, asr #0
136 # CHECK: adds w20, wzr, w4
137 # CHECK: adds w4, w6, wzr
144 # CHECK: adds w2, w3, w4, asr #0
190 # CHECK: sub w20, wzr, w4
191 # CHECK: sub w4, w6, wzr
[all …]
/external/dropbear/libtommath/pre_gen/
Dmpi.c7847 mp_int w0, w1, w2, w3, w4, tmp1, tmp2, a0, a1, a2, b0, b1, b2; in mp_toom_mul() local
7851 if ((res = mp_init_multi(&w0, &w1, &w2, &w3, &w4, in mp_toom_mul()
7898 if ((res = mp_mul(&a2, &b2, &w4)) != MP_OKAY) { in mp_toom_mul()
7995 if ((res = mp_sub(&w1, &w4, &w1)) != MP_OKAY) { in mp_toom_mul()
8014 if ((res = mp_sub(&w2, &w4, &w2)) != MP_OKAY) { in mp_toom_mul()
8033 if ((res = mp_mul_2d(&w4, 3, &tmp1)) != MP_OKAY) { in mp_toom_mul()
8076 if ((res = mp_lshd(&w4, 4*B)) != MP_OKAY) { in mp_toom_mul()
8086 if ((res = mp_add(&w4, &tmp1, &tmp1)) != MP_OKAY) { in mp_toom_mul()
8094 mp_clear_multi(&w0, &w1, &w2, &w3, &w4, in mp_toom_mul()
8130 mp_int w0, w1, w2, w3, w4, tmp1, a0, a1, a2; in mp_toom_sqr() local
[all …]
/external/clang/test/CodeGenObjC/
Darc-captured-32bit-block-var-layout.m362 __weak id w1, w2, w3, w4;
389 x(w4);
Darc-captured-block-var-layout.m361 __weak id w1, w2, w3, w4;
388 x(w4);
/external/libvpx/libvpx/vp9/encoder/x86/
Dvp9_dct_sse2.c81 const __m128i w4 = _mm_srai_epi32(v4, DCT_CONST_BITS); in vp9_fdct4x4_sse2() local
85 const __m128i res1 = _mm_packs_epi32(w4, w6); in vp9_fdct4x4_sse2()
358 const __m128i w4 = _mm_srai_epi32(v4, DCT_CONST_BITS); in vp9_fdct8x8_sse2() local
365 res2 = _mm_packs_epi32(w4, w5); in vp9_fdct8x8_sse2()
420 const __m128i w4 = _mm_srai_epi32(v4, DCT_CONST_BITS); in vp9_fdct8x8_sse2() local
427 res5 = _mm_packs_epi32(w4, w5); in vp9_fdct8x8_sse2()
821 __m128i w0, w1, w2, w3, w4, w5, w6, w7, w8, w9, w10, w11, w12, w13, w14, w15; in fadst8_1d_sse2() local
869 w4 = _mm_add_epi32(u4, u12); in fadst8_1d_sse2()
887 v4 = _mm_add_epi32(w4, k__DCT_CONST_ROUNDING); in fadst8_1d_sse2()
950 w4 = _mm_sub_epi32(v0, v4); in fadst8_1d_sse2()
[all …]
/external/v8/test/mjsunit/
Dlarge-object-allocation.js158 this.w4 = i;
/external/chromium_org/v8/test/mjsunit/
Dlarge-object-allocation.js158 this.w4 = i;
/external/clang/lib/Headers/
Demmintrin.h1101 _mm_set_epi16(short w7, short w6, short w5, short w4, short w3, short w2, short w1, short w0) in _mm_set_epi16() argument
1103 return (__m128i)(__v8hi){ w0, w1, w2, w3, w4, w5, w6, w7 }; in _mm_set_epi16()
1155 _mm_setr_epi16(short w0, short w1, short w2, short w3, short w4, short w5, short w6, short w7) in _mm_setr_epi16() argument
1157 return (__m128i)(__v8hi){ w0, w1, w2, w3, w4, w5, w6, w7 }; in _mm_setr_epi16()
/external/chromium_org/ash/wm/panels/
Dpanel_layout_manager_unittest.cc436 scoped_ptr<aura::Window> w4(CreateNormalWindow(gfx::Rect())); in TEST_F() local
447 wm::ActivateWindow(w4.get()); in TEST_F()

12