/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
D | sb_bc_decoder.cpp | 59 CF_WORD1_EG w1(dw1); in decode_cf() local 61 bc.barrier = w1.get_BARRIER(); in decode_cf() 62 bc.cf_const = w1.get_CF_CONST(); in decode_cf() 63 bc.cond = w1.get_COND(); in decode_cf() 64 bc.count = w1.get_COUNT(); in decode_cf() 65 bc.end_of_program = w1.get_END_OF_PROGRAM(); in decode_cf() 66 bc.pop_count = w1.get_POP_COUNT(); in decode_cf() 67 bc.valid_pixel_mode = w1.get_VALID_PIXEL_MODE(); in decode_cf() 68 bc.whole_quad_mode = w1.get_WHOLE_QUAD_MODE(); in decode_cf() 71 CF_WORD1_CM w1(dw1); in decode_cf() local [all …]
|
/third_party/ffmpeg/libavfilter/ |
D | vf_hqx.c | 76 static av_always_inline uint32_t interp_2px(uint32_t c1, int w1, uint32_t c2, int w2, int s) in interp_2px() argument 78 …return (((((c1 & 0xff00ff00) >> 8) * w1 + ((c2 & 0xff00ff00) >> 8) * w2) << (8 - s)) & 0xff00ff00)… in interp_2px() 79 … (((((c1 & 0x00ff00ff) ) * w1 + ((c2 & 0x00ff00ff) ) * w2) >> s ) & 0x00ff00ff); in interp_2px() 83 static av_always_inline uint32_t interp_3px(uint32_t c1, int w1, uint32_t c2, int w2, uint32_t c3, … in interp_3px() argument 85 …return (((((c1 & 0xff00ff00) >> 8) * w1 + ((c2 & 0xff00ff00) >> 8) * w2 + ((c3 & 0xff00ff00) >> 8)… in interp_3px() 86 …(((((c1 & 0x00ff00ff) ) * w1 + ((c2 & 0x00ff00ff) ) * w2 + ((c3 & 0x00ff00ff) ) * w3) … in interp_3px() 112 const uint32_t w0 = w[p0], w1 = w[p1], \ 127 if ((P(0xbf,0x37) || P(0xdb,0x13)) && WDIFF(w1, w5)) in hq2x_interp_1x1() 130 return interp_2px(w4, 3, w1, 1, 2); in hq2x_interp_1x1() 131 if ((P(0x0b,0x0b) || P(0xfe,0x4a) || P(0xfe,0x1a)) && WDIFF(w3, w1)) in hq2x_interp_1x1() [all …]
|
D | af_crossfeed.c | 41 double w1, w2; member 115 double w1 = *sw1; in filter_samples() local 120 double oside = side * b0 + w1; in filter_samples() 122 w1 = b1 * side + w2 + a1 * oside; in filter_samples() 128 *sw1 = w1; in filter_samples() 165 double w1 = s->w1; in filter_frame() local 171 double oside = side * b0 + w1; in filter_frame() 173 w1 = b1 * side + w2 + a1 * oside; in filter_frame() 185 s->w1 = w1; in filter_frame() 206 double w1 = s->w1; in filter_frame() local [all …]
|
/third_party/node/deps/openssl/openssl/crypto/aria/ |
D | aria.c | 542 uint32_t w0[4], w1[4], w2[4], w3[4]; in ossl_aria_set_encrypt_key() local 572 w1[0] = GET_U32_BE(userKey, 4); in ossl_aria_set_encrypt_key() 573 w1[1] = GET_U32_BE(userKey, 5); in ossl_aria_set_encrypt_key() 575 w1[2] = GET_U32_BE(userKey, 6); in ossl_aria_set_encrypt_key() 576 w1[3] = GET_U32_BE(userKey, 7); in ossl_aria_set_encrypt_key() 579 w1[2] = w1[3] = 0; in ossl_aria_set_encrypt_key() 583 w1[0] = w1[1] = w1[2] = w1[3] = 0; in ossl_aria_set_encrypt_key() 586 w1[0] ^= reg0; in ossl_aria_set_encrypt_key() 587 w1[1] ^= reg1; in ossl_aria_set_encrypt_key() 588 w1[2] ^= reg2; in ossl_aria_set_encrypt_key() [all …]
|
/third_party/openssl/crypto/aria/ |
D | aria.c | 542 uint32_t w0[4], w1[4], w2[4], w3[4]; in ossl_aria_set_encrypt_key() local 572 w1[0] = GET_U32_BE(userKey, 4); in ossl_aria_set_encrypt_key() 573 w1[1] = GET_U32_BE(userKey, 5); in ossl_aria_set_encrypt_key() 575 w1[2] = GET_U32_BE(userKey, 6); in ossl_aria_set_encrypt_key() 576 w1[3] = GET_U32_BE(userKey, 7); in ossl_aria_set_encrypt_key() 579 w1[2] = w1[3] = 0; in ossl_aria_set_encrypt_key() 583 w1[0] = w1[1] = w1[2] = w1[3] = 0; in ossl_aria_set_encrypt_key() 586 w1[0] ^= reg0; in ossl_aria_set_encrypt_key() 587 w1[1] ^= reg1; in ossl_aria_set_encrypt_key() 588 w1[2] ^= reg2; in ossl_aria_set_encrypt_key() [all …]
|
/third_party/musl/src/fenv/aarch64/ |
D | fenv.s | 13 bic w1, w1, #0xc00000 14 orr w1, w1, w0 24 and w0, w0, w1 32 bic w1, w1, w0 42 orr w1, w1, w0 52 stp w1, w2, [x0] 64 ldp w1, w2, [x0]
|
/third_party/python/Modules/_decimal/libmpdec/ |
D | sixstep.c | 59 mpd_uint_t *x, w0, w1, wstep; in six_step_fnt() local 96 w1 = POWMOD(kernel, i); /* r**(i*1): initial value for k=1 */ in six_step_fnt() 97 wstep = MULMOD(w1, w1); /* r**(2*i) */ in six_step_fnt() 101 MULMOD2(&x0, w0, &x1, w1); in six_step_fnt() 102 MULMOD2C(&w0, &w1, wstep); /* r**(i*(k+2)) = r**(i*k) * r**(2*i) */ in six_step_fnt() 144 mpd_uint_t *x, w0, w1, wstep; in inv_six_step_fnt() local 178 w1 = POWMOD(kernel, i); in inv_six_step_fnt() 179 wstep = MULMOD(w1, w1); in inv_six_step_fnt() 183 MULMOD2(&x0, w0, &x1, w1); in inv_six_step_fnt() 184 MULMOD2C(&w0, &w1, wstep); in inv_six_step_fnt()
|
D | fourstep.c | 144 mpd_uint_t kernel, w0, w1, wstep; in four_step_fnt() local 170 w1 = POWMOD(kernel, i); /* r**(i*1): initial value for k=1 */ in four_step_fnt() 171 wstep = MULMOD(w1, w1); /* r**(2*i) */ in four_step_fnt() 175 MULMOD2(&x0, w0, &x1, w1); in four_step_fnt() 176 MULMOD2C(&w0, &w1, wstep); /* r**(i*(k+2)) = r**(i*k) * r**(2*i) */ in four_step_fnt() 206 mpd_uint_t kernel, w0, w1, wstep; in inv_four_step_fnt() local 239 w1 = POWMOD(kernel, i); in inv_four_step_fnt() 240 wstep = MULMOD(w1, w1); in inv_four_step_fnt() 244 MULMOD2(&x0, w0, &x1, w1); in inv_four_step_fnt() 245 MULMOD2C(&w0, &w1, wstep); in inv_four_step_fnt()
|
/third_party/ffmpeg/libavcodec/ |
D | vp9_mc_template.c | 41 int w1 = ref1->width, h1 = ref1->height, w2, h2; in FN() local 60 row << 3, col << 3, &b->mv[0][0],,,,, 8, 4, w1, h1, 0); in FN() 64 (row << 3) + 4, col << 3, &b->mv[2][0],,,,, 8, 4, w1, h1, 0); in FN() 65 w1 = (w1 + s->ss_h) >> s->ss_h; in FN() 74 &uvmv,,,,, 8 >> s->ss_h, 4, w1, h1, 0); in FN() 81 &b->mv[0][0],,,,, 8 >> s->ss_h, 4, w1, h1, 0); in FN() 95 &uvmv,,,,, 8 >> s->ss_h, 4, w1, h1, 0); in FN() 142 row << 3, col << 3, &b->mv[0][0],,,,, 4, 8, w1, h1, 0); in FN() 145 row << 3, (col << 3) + 4, &b->mv[1][0],,,,, 4, 8, w1, h1, 0); in FN() 148 w1 = (w1 + 1) >> 1; in FN() [all …]
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
D | dng_color_spec.cpp | 37 dng_vector_3 w1 = Mb * XYtoXYZ (white1); in MapWhiteMatrix() local 42 w1 [0] = Max_real64 (w1 [0], 0.0); in MapWhiteMatrix() 43 w1 [1] = Max_real64 (w1 [1], 0.0); in MapWhiteMatrix() 44 w1 [2] = Max_real64 (w1 [2], 0.0); in MapWhiteMatrix() 54 A [0] [0] = Pin_real64 (0.1, w1 [0] > 0.0 ? w2 [0] / w1 [0] : 10.0, 10.0); in MapWhiteMatrix() 55 A [1] [1] = Pin_real64 (0.1, w1 [1] > 0.0 ? w2 [1] / w1 [1] : 10.0, 10.0); in MapWhiteMatrix() 56 A [2] [2] = Pin_real64 (0.1, w1 [2] > 0.0 ? w2 [2] / w1 [2] : 10.0, 10.0); in MapWhiteMatrix()
|
/third_party/ffmpeg/libavcodec/loongarch/ |
D | simple_idct_lasx.c | 63 DUP4_ARG2(__lasx_xvrepl128vei_h, w1, 2, w1, 3, w1, 4, w1, 5, \ 65 DUP2_ARG2(__lasx_xvrepl128vei_h, w1, 6, w1, 7, w6, w7); \ 66 w1 = __lasx_xvrepl128vei_h(w1, 1); \ 76 DUP2_ARG2(__lasx_xvilvh_h, in1, in0, w3, w1, temp0, temp1); \ 81 temp1 = __lasx_xvneg_h(w1); \ 102 DUP2_ARG2(__lasx_xvilvl_h, w5, w1, w3, w7, temp1, temp2); \ 105 temp1 = __lasx_xvneg_h(w1); \ 137 DUP2_ARG2(__lasx_xvilvh_h, in1, in0, w3, w1, temp0, temp1); \ 142 temp1 = __lasx_xvneg_h(w1); \ 163 DUP2_ARG2(__lasx_xvilvl_h, w5, w1, w3, w7, temp1, temp2); \ [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | moduleInTypePosition1.types | 6 var x = (w1: WinJS) => { }; 7 >x : (w1: WinJS) => void 8 >(w1: WinJS) => { } : (w1: WinJS) => void 9 >w1 : WinJS
|
D | staticInstanceResolution5.types | 6 var x = (w1: WinJS) => { }; 7 >x : (w1: WinJS) => void 8 >(w1: WinJS) => { } : (w1: WinJS) => void 9 >w1 : WinJS
|
D | exportImportNonInstantiatedModule2.symbols | 13 === tests/cases/compiler/w1.ts === 15 >Widget1 : Symbol(Widget1, Decl(w1.ts, 0, 16)) 18 >Widget1 : Symbol(Widget1, Decl(w1.ts, 0, 16)) 19 >name : Symbol(Widget1.name, Decl(w1.ts, 1, 19)) 22 export import w = require('./w1');
|
D | exportImport.symbols | 15 === tests/cases/compiler/w1.ts === 17 >Widget1 : Symbol(Widget1, Decl(w1.ts, 0, 16)) 20 >Widget1 : Symbol(Widget1, Decl(w1.ts, 0, 16)) 21 >name : Symbol(Widget1.name, Decl(w1.ts, 1, 15)) 24 export import w = require('./w1');
|
/third_party/skia/third_party/externals/libjpeg-turbo/simd/x86_64/ |
D | jchuff-sse2.asm | 281 movups xmm1, XMMWORD [block + 8 * SIZEOF_WORD] ;B: w1 = 08 09 10 11 12 13 14 15 310 movups xmm1, XMMWORD [block + 8 * SIZEOF_WORD] ;B: w1 = 08 09 10 11 12 13 14 15 323 punpcklqdq xmm1, xmm3 ;B: w1 = 08 09 10 11 04 05 12 13 332 pslldq xmm1, 1 * SIZEOF_WORD ;B: w1 = -- 08 09 10 11 04 05 12 334 movsd xmm1, xmm2 ;B: w1 = 24 26 25 27 11 04 05 12 336 pinsrw xmm1, word [block + 32 * SIZEOF_WORD], 1 ;B: w1 = 24 32 25 27 11 04 05 12 340 pinsrw xmm1, word [block + 18 * SIZEOF_WORD], 3 ;B: w1 = 24 32 25 18 11 04 05 12 342 pcmpgtw xmm4, xmm1 ;B: w4[i] = (w1[i] < 0 ? -1 : 0); 343 paddw xmm1, xmm4 ;B: w1[i] += w4[i]; 344 movaps XMMWORD [t + 8 * SIZEOF_WORD], xmm1 ;B: t[i+8] = w1[i]; [all …]
|
/third_party/vixl/test/aarch64/ |
D | test-assembler-aarch64.cc | 224 __ Mov(w1, 0xffff1234); in TEST() 463 __ Orr(w3, w0, Operand(w1, LSL, 28)); in TEST() 466 __ Orr(w6, w0, Operand(w1, ASR, 4)); in TEST() 468 __ Orr(w8, w0, Operand(w1, ROR, 12)); in TEST() 497 __ Orr(w6, w0, Operand(w1, UXTB)); in TEST() 499 __ Orr(w8, w0, Operand(w1, UXTW, 2)); in TEST() 501 __ Orr(w10, w0, Operand(w1, SXTB)); in TEST() 530 __ Orr(w11, w1, 0x90abcdef); in TEST() 557 __ Orn(w3, w0, Operand(w1, LSL, 4)); in TEST() 560 __ Orn(w6, w0, Operand(w1, ASR, 1)); in TEST() [all …]
|
D | test-cpu-features-aarch64.cc | 166 TEST_NONE(adc_0, adc(w0, w1, w2)) 168 TEST_NONE(adcs_0, adcs(w0, w1, w2)) 170 TEST_NONE(adds_0, adds(w0, w1, Operand(w2, UXTH, 0))) 173 TEST_NONE(adds_3, adds(w0, w1, 0x905 << 12)) 175 TEST_NONE(adds_5, adds(w0, w1, Operand(w2, LSL, 10))) 177 TEST_NONE(add_0, add(w0, w1, Operand(w2, UXTW, 3))) 180 TEST_NONE(add_3, add(w0, w1, 0xb7e << 12)) 182 TEST_NONE(add_5, add(w0, w1, Operand(w2, LSL, 6))) 186 TEST_NONE(ands_0, ands(w0, w1, 0x3c0000)) 188 TEST_NONE(ands_2, ands(w0, w1, Operand(w2, ASR, 6))) [all …]
|
/third_party/libuv/src/win/ |
D | signal.c | 54 static int uv__signal_compare(uv_signal_t* w1, uv_signal_t* w2) { in uv__signal_compare() argument 57 if (w1->signum < w2->signum) return -1; in uv__signal_compare() 58 if (w1->signum > w2->signum) return 1; in uv__signal_compare() 62 if ((uintptr_t) w1->loop < (uintptr_t) w2->loop) return -1; in uv__signal_compare() 63 if ((uintptr_t) w1->loop > (uintptr_t) w2->loop) return 1; in uv__signal_compare() 65 if ((uintptr_t) w1 < (uintptr_t) w2) return -1; in uv__signal_compare() 66 if ((uintptr_t) w1 > (uintptr_t) w2) return 1; in uv__signal_compare()
|
/third_party/node/deps/uv/src/win/ |
D | signal.c | 54 static int uv__signal_compare(uv_signal_t* w1, uv_signal_t* w2) { in uv__signal_compare() argument 57 if (w1->signum < w2->signum) return -1; in uv__signal_compare() 58 if (w1->signum > w2->signum) return 1; in uv__signal_compare() 62 if ((uintptr_t) w1->loop < (uintptr_t) w2->loop) return -1; in uv__signal_compare() 63 if ((uintptr_t) w1->loop > (uintptr_t) w2->loop) return 1; in uv__signal_compare() 65 if ((uintptr_t) w1 < (uintptr_t) w2) return -1; in uv__signal_compare() 66 if ((uintptr_t) w1 > (uintptr_t) w2) return 1; in uv__signal_compare()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/binder/ |
D | supplicant.h | 30 class Supplicant : public fi::w1::wpa_supplicant::BnSupplicant 38 android::sp<fi::w1::wpa_supplicant::IIface> *aidl_return) override; 43 android::sp<fi::w1::wpa_supplicant::IIface> *aidl_return) override; 49 std::vector<android::sp<fi::w1::wpa_supplicant::ISupplicantCallbacks>>
|
/third_party/libunwind/libunwind/src/ppc/ |
D | Gis_signal_frame.c | 34 unw_word_t w0, w1, i0, i1, i2, ip; in unw_is_signal_frame() local 61 || (ret = (*a->access_mem) (as, ip + 8, &w1, 0, arg)) < 0) in unw_is_signal_frame() 68 i2 = w1 >> 32; in unw_is_signal_frame() 74 i2 = w1 & 0xffffffffUL; in unw_is_signal_frame()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/binder/ |
D | supplicant.h | 30 class Supplicant : public fi::w1::wpa_supplicant::BnSupplicant 38 android::sp<fi::w1::wpa_supplicant::IIface> *aidl_return) override; 43 android::sp<fi::w1::wpa_supplicant::IIface> *aidl_return) override; 49 std::vector<android::sp<fi::w1::wpa_supplicant::ISupplicantCallbacks>>
|
/third_party/ffmpeg/libavcodec/mips/ |
D | aacsbr_mips.h | 68 float *w1; in sbr_qmf_analysis_mips() local 72 w1 = x + 1024; in sbr_qmf_analysis_mips() 96 : [w0]"+r"(w0), [w1]"+r"(w1), in sbr_qmf_analysis_mips() 107 w1 = (float*)in; in sbr_qmf_analysis_mips() 131 : [w0]"+r"(w0), [w1]"+r"(w1), in sbr_qmf_analysis_mips()
|
/third_party/skia/third_party/externals/brotli/research/ |
D | draw_diff.cc | 93 size_t h1, w1, h2, w2; in main() local 96 ReadPGM(fimage1, &image1, &h1, &w1); in main() 103 if (!(h1 == h2 && w1 == w2)) { in main() 109 for (size_t i = 0; i < h1; ++i) diff[i] = new int[w1]; in main() 110 CalculateDiff(diff, image1, image2, h1, w1); in main() 113 DrawDiff(diff, image1, image2, h1, w1, fdiff); in main()
|