/external/libvpx/libvpx/vpx_dsp/x86/ |
D | fwd_dct32x32_impl_sse2.h | 117 __m128i step3[32]; in FDCT32x32_2D() local 632 step3[0] = ADD_EPI16(step2[(8 - 1)], step2[0]); in FDCT32x32_2D() 633 step3[1] = ADD_EPI16(step2[(8 - 2)], step2[1]); in FDCT32x32_2D() 634 step3[2] = ADD_EPI16(step2[(8 - 3)], step2[2]); in FDCT32x32_2D() 635 step3[3] = ADD_EPI16(step2[(8 - 4)], step2[3]); in FDCT32x32_2D() 636 step3[4] = SUB_EPI16(step2[(8 - 5)], step2[4]); in FDCT32x32_2D() 637 step3[5] = SUB_EPI16(step2[(8 - 6)], step2[5]); in FDCT32x32_2D() 638 step3[6] = SUB_EPI16(step2[(8 - 7)], step2[6]); in FDCT32x32_2D() 639 step3[7] = SUB_EPI16(step2[(8 - 8)], step2[7]); in FDCT32x32_2D() 641 overflow = check_epi16_overflow_x8(&step3[0], &step3[1], &step3[2], in FDCT32x32_2D() [all …]
|
D | fwd_dct32x32_impl_avx2.h | 102 __m256i step3[32]; in FDCT32x32_2D_AVX2() local 584 step3[0] = _mm256_add_epi16(step2[(8 - 1)], step2[0]); in FDCT32x32_2D_AVX2() 585 step3[1] = _mm256_add_epi16(step2[(8 - 2)], step2[1]); in FDCT32x32_2D_AVX2() 586 step3[2] = _mm256_add_epi16(step2[(8 - 3)], step2[2]); in FDCT32x32_2D_AVX2() 587 step3[3] = _mm256_add_epi16(step2[(8 - 4)], step2[3]); in FDCT32x32_2D_AVX2() 588 step3[4] = _mm256_sub_epi16(step2[(8 - 5)], step2[4]); in FDCT32x32_2D_AVX2() 589 step3[5] = _mm256_sub_epi16(step2[(8 - 6)], step2[5]); in FDCT32x32_2D_AVX2() 590 step3[6] = _mm256_sub_epi16(step2[(8 - 7)], step2[6]); in FDCT32x32_2D_AVX2() 591 step3[7] = _mm256_sub_epi16(step2[(8 - 8)], step2[7]); in FDCT32x32_2D_AVX2() 632 step3[10] = _mm256_packs_epi32(s3_10_6, s3_10_7); in FDCT32x32_2D_AVX2() [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_dct.c | 97 tran_high_t step3[8]; // canbe16 in fdct16() local 184 step3[0] = step1[0] + step2[3]; in fdct16() 185 step3[1] = step1[1] + step2[2]; in fdct16() 186 step3[2] = step1[1] - step2[2]; in fdct16() 187 step3[3] = step1[0] - step2[3]; in fdct16() 188 step3[4] = step1[7] - step2[4]; in fdct16() 189 step3[5] = step1[6] - step2[5]; in fdct16() 190 step3[6] = step1[6] + step2[5]; in fdct16() 191 step3[7] = step1[7] + step2[4]; in fdct16() 194 temp1 = step3[1] * -cospi_8_64 + step3[6] * cospi_24_64; in fdct16() [all …]
|
/external/libvpx/libvpx/vpx_dsp/ |
D | fwd_txfm.c | 199 tran_high_t step3[8]; // canbe16 in vpx_fdct16x16_c() local 309 step3[0] = step1[0] + step2[3]; in vpx_fdct16x16_c() 310 step3[1] = step1[1] + step2[2]; in vpx_fdct16x16_c() 311 step3[2] = step1[1] - step2[2]; in vpx_fdct16x16_c() 312 step3[3] = step1[0] - step2[3]; in vpx_fdct16x16_c() 313 step3[4] = step1[7] - step2[4]; in vpx_fdct16x16_c() 314 step3[5] = step1[6] - step2[5]; in vpx_fdct16x16_c() 315 step3[6] = step1[6] + step2[5]; in vpx_fdct16x16_c() 316 step3[7] = step1[7] + step2[4]; in vpx_fdct16x16_c() 318 temp1 = step3[1] * -cospi_8_64 + step3[6] * cospi_24_64; in vpx_fdct16x16_c() [all …]
|
/external/rust/crates/ring/src/digest/ |
D | sha1.rs | 70 …let (a, b, c, d, e) = step3(a, b, c, d, e, W[ 0..20].try_into().unwrap(), Wrapping(0x5a827999), ch… 71 …let (a, b, c, d, e) = step3(a, b, c, d, e, W[20..40].try_into().unwrap(), Wrapping(0x6ed9eba1), pa… 72 …let (a, b, c, d, e) = step3(a, b, c, d, e, W[40..60].try_into().unwrap(), Wrapping(0x8f1bbcdc), ma… 73 …let (a, b, c, d, e) = step3(a, b, c, d, e, W[60..80].try_into().unwrap(), Wrapping(0xca62c1d6), pa… 87 fn step3( in step3() function
|
/external/autotest/client/tests/error_skip_step/ |
D | control | 30 job.next_step('step3') 33 def step3():
|
/external/testng/src/test/java/test/dependent/ |
D | SampleDependentMethods4.java | 23 public void step3() { in step3() method in SampleDependentMethods4
|
/external/libvpx/libvpx/vpx_dsp/mips/ |
D | fwd_dct32x32_msa.c | 18 v8i16 step0, step1, step2, step3; in fdct8x32_1d_column_load_butterfly() local 32 step3, in4, in5, in6, in7); in fdct8x32_1d_column_load_butterfly() 35 ST_SH4(step0, step1, step2, step3, temp_buff, 8); in fdct8x32_1d_column_load_butterfly() 50 step3, in4, in5, in6, in7); in fdct8x32_1d_column_load_butterfly() 53 ST_SH4(step0, step1, step2, step3, temp_buff + (8 * 8), 8); in fdct8x32_1d_column_load_butterfly() 258 v8i16 step0, step1, step2, step3, step4, step5, step6, step7; in fdct8x32_1d_row_load_butterfly() local 267 in12, in13, in14, in15, step0, step1, step2, step3, step4, step5, in fdct8x32_1d_row_load_butterfly() 269 ST_SH8(step0, step1, step2, step3, step4, step5, step6, step7, output, 8); in fdct8x32_1d_row_load_butterfly() 280 in12, in13, in14, in15, step0, step1, step2, step3, step4, step5, in fdct8x32_1d_row_load_butterfly() 282 ST_SH8(step0, step1, step2, step3, step4, step5, step6, step7, in fdct8x32_1d_row_load_butterfly()
|
/external/libvpx/libvpx/vpx_dsp/ppc/ |
D | inv_txfm_vsx.c | 298 step3 = in6; \ 305 STEP8_0(step1, step3, in2, in3, cospi24_v, cospi8_v); \ 315 step3 = vec_sub(in0, in3); \ 324 in3 = vec_add(step3, step4); \ 325 in4 = vec_sub(step3, step4); \ 334 int16x8_t step0, step1, step2, step3, step4, step5, step6, step7; in vpx_idct8_vsx() local
|
/external/guava/android/guava-tests/test/com/google/common/util/concurrent/ |
D | ClosingFutureTest.java | 350 ClosingFuture<String> step3 = in testCancel_caught() local 362 step3.catching( in testCancel_caught() 382 assertWithMessage("step3.cancel()").that(step3.cancel(false)).isTrue(); in testCancel_caught() 402 .that(step3.statusFuture().isCancelled()) in testCancel_caught()
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
D | ClosingFutureTest.java | 367 ClosingFuture<String> step3 = in testCancel_caught() local 379 step3.catching( in testCancel_caught() 399 assertWithMessage("step3.cancel()").that(step3.cancel(false)).isTrue(); in testCancel_caught() 419 .that(step3.statusFuture().isCancelled()) in testCancel_caught()
|
/external/mesa3d/src/compiler/nir/ |
D | nir_opt_algebraic.py | 1843 …step3 = ('ior', ('ishl', ('iand', step2, 0x0f0f0f0f), 4), ('ushr', ('iand', step2, 0xf0f0f0f0), 4)) 1844 …step4 = ('ior', ('ishl', ('iand', step3, 0x33333333), 2), ('ushr', ('iand', step3, 0xcccccccc), 2))
|