HomeSort by relevance Sort by last modified time
    Searched refs:step3 (Results 1 - 20 of 20) sorted by null

  /external/testng/src/test/java/test/dependent/
SampleDependentMethods4.java 23 public void step3() { method in class:SampleDependentMethods4
  /external/libvpx/libvpx/vpx_dsp/x86/
fwd_dct32x32_impl_avx2.h 100 __m256i step3[32]; local
542 step3[0] = _mm256_add_epi16(step2[(8 - 1)], step2[0]);
543 step3[1] = _mm256_add_epi16(step2[(8 - 2)], step2[1]);
544 step3[2] = _mm256_add_epi16(step2[(8 - 3)], step2[2]);
545 step3[3] = _mm256_add_epi16(step2[(8 - 4)], step2[3]);
546 step3[4] = _mm256_sub_epi16(step2[(8 - 5)], step2[4]);
547 step3[5] = _mm256_sub_epi16(step2[(8 - 6)], step2[5]);
548 step3[6] = _mm256_sub_epi16(step2[(8 - 7)], step2[6]);
549 step3[7] = _mm256_sub_epi16(step2[(8 - 8)], step2[7]);
    [all...]
fwd_dct32x32_impl_sse2.h 120 __m128i step3[32]; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/x86/
vp9_dct32x32_avx2.c 99 __m256i step3[32]; local
541 step3[0] = _mm256_add_epi16(step2[(8 - 1)], step2[0]);
542 step3[1] = _mm256_add_epi16(step2[(8 - 2)], step2[1]);
543 step3[2] = _mm256_add_epi16(step2[(8 - 3)], step2[2]);
544 step3[3] = _mm256_add_epi16(step2[(8 - 4)], step2[3]);
545 step3[4] = _mm256_sub_epi16(step2[(8 - 5)], step2[4]);
546 step3[5] = _mm256_sub_epi16(step2[(8 - 6)], step2[5]);
547 step3[6] = _mm256_sub_epi16(step2[(8 - 7)], step2[6]);
548 step3[7] = _mm256_sub_epi16(step2[(8 - 8)], step2[7]);
    [all...]
vp9_dct32x32_sse2.c 90 __m128i step3[32]; local
532 step3[0] = _mm_add_epi16(step2[(8 - 1)], step2[0]);
533 step3[1] = _mm_add_epi16(step2[(8 - 2)], step2[1]);
534 step3[2] = _mm_add_epi16(step2[(8 - 3)], step2[2]);
535 step3[3] = _mm_add_epi16(step2[(8 - 4)], step2[3]);
536 step3[4] = _mm_sub_epi16(step2[(8 - 5)], step2[4]);
537 step3[5] = _mm_sub_epi16(step2[(8 - 6)], step2[5]);
538 step3[6] = _mm_sub_epi16(step2[(8 - 7)], step2[6]);
539 step3[7] = _mm_sub_epi16(step2[(8 - 8)], step2[7]);
572 step3[10] = _mm_packs_epi32(s3_10_6, s3_10_7)
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_dct.c 330 /*canbe16*/ int step3[8]; local
438 step3[0] = step1[0] + step2[3];
439 step3[1] = step1[1] + step2[2];
440 step3[2] = step1[1] - step2[2];
441 step3[3] = step1[0] - step2[3];
442 step3[4] = step1[7] - step2[4];
443 step3[5] = step1[6] - step2[5];
444 step3[6] = step1[6] + step2[5];
445 step3[7] = step1[7] + step2[4];
447 temp1 = step3[1] * -cospi_8_64 + step3[6] * cospi_24_64
660 \/*canbe16*\/ int step3[8]; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_dct.c 97 tran_high_t step3[8]; // canbe16 local
184 step3[0] = step1[0] + step2[3];
185 step3[1] = step1[1] + step2[2];
186 step3[2] = step1[1] - step2[2];
187 step3[3] = step1[0] - step2[3];
188 step3[4] = step1[7] - step2[4];
189 step3[5] = step1[6] - step2[5];
190 step3[6] = step1[6] + step2[5];
191 step3[7] = step1[7] + step2[4];
194 temp1 = step3[1] * -cospi_8_64 + step3[6] * cospi_24_64
    [all...]
  /external/libvpx/libvpx/vpx_dsp/
fwd_txfm.c 205 tran_high_t step3[8]; // canbe16 local
313 step3[0] = step1[0] + step2[3];
314 step3[1] = step1[1] + step2[2];
315 step3[2] = step1[1] - step2[2];
316 step3[3] = step1[0] - step2[3];
317 step3[4] = step1[7] - step2[4];
318 step3[5] = step1[6] - step2[5];
319 step3[6] = step1[6] + step2[5];
320 step3[7] = step1[7] + step2[4];
322 temp1 = step3[1] * -cospi_8_64 + step3[6] * cospi_24_64
    [all...]
  /external/libvpx/libvpx/vpx_dsp/arm/
idct32x32_add_neon.asm 489 ;step3[17] = dct_const_round_shift(temp1);
490 ;step3[30] = dct_const_round_shift(temp2);
524 ;step3[29] = dct_const_round_shift(temp1);
525 ;step3[18] = dct_const_round_shift(temp2);
604 ;step3[21] = dct_const_round_shift(temp1);
605 ;step3[26] = dct_const_round_shift(temp2);
639 ;step3[25] = dct_const_round_shift(temp1);
640 ;step3[22] = dct_const_round_shift(temp2);
656 ;step3[16] = step1b[16][i] + step1b[23][i];
657 ;step3[17] = step1b[17][i] + step1b[22][i]
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/arm/neon/
vp9_idct32x32_add_neon.asm 489 ;step3[17] = dct_const_round_shift(temp1);
490 ;step3[30] = dct_const_round_shift(temp2);
524 ;step3[29] = dct_const_round_shift(temp1);
525 ;step3[18] = dct_const_round_shift(temp2);
604 ;step3[21] = dct_const_round_shift(temp1);
605 ;step3[26] = dct_const_round_shift(temp2);
639 ;step3[25] = dct_const_round_shift(temp1);
640 ;step3[22] = dct_const_round_shift(temp2);
656 ;step3[16] = step1b[16][i] + step1b[23][i];
657 ;step3[17] = step1b[17][i] + step1b[22][i]
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
dllwrap.c 1134 dyn_string_t step3 = dyn_string_new (driver_cmdline->length local
1138 dyn_string_append_cstr (step3, "-Wl,--base-file,");
1141 dyn_string_append_cstr (step3,
1143 dyn_string_append_cstr (step3, base_file_name);
1144 dyn_string_append_cstr (step3,
1149 dyn_string_append_cstr (step3,
1151 dyn_string_append_cstr (step3, exp_file_name);
1152 dyn_string_append_cstr (step3,
1157 dyn_string_append_cstr (step3, " ");
1158 dyn_string_append_cstr (step3, driver_cmdline->s)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/setup/
SetupWizardActivity.java 181 final SetupStep step3 = new SetupStep(STEP_3, applicationName, local
186 step3.setAction(new Runnable() {
192 mSetupStepGroup.addStep(step3);
  /external/libvpx/libvpx/vpx_dsp/mips/
fwd_dct32x32_msa.c 17 v8i16 step0, step1, step2, step3; local
31 step0, step1, step2, step3, in4, in5, in6, in7);
34 ST_SH4(step0, step1, step2, step3, temp_buff, 8);
49 step0, step1, step2, step3, in4, in5, in6, in7);
52 ST_SH4(step0, step1, step2, step3, temp_buff + (8 * 8), 8);
257 v8i16 step0, step1, step2, step3, step4, step5, step6, step7; local
267 step0, step1, step2, step3, step4, step5, step6, step7,
269 ST_SH8(step0, step1, step2, step3, step4, step5, step6, step7, output, 8);
281 step0, step1, step2, step3, step4, step5, step6, step7,
283 ST_SH8(step0, step1, step2, step3, step4, step5, step6, step7
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.lucene.analysis_1.9.1.v20100518-1140.jar 
org.apache.lucene_1.9.1.v20100518-1140.jar 
  /external/opencv3/modules/core/src/
arithm.cpp     [all...]
matmul.cpp 563 const void* src2, size_t step2, const void* src3, size_t step3,
    [all...]
  /external/opencv/cxcore/src/
cxcmp.cpp 123 const arrtype* src3, int step3, \
127 step3 /= sizeof(src3[0]); step /= sizeof(dst[0]); \
130 src3 += step3, dst += step ) \
    [all...]
cxmatmul.cpp     [all...]
  /external/opencv/cxcore/include/
cxmisc.h     [all...]

Completed in 1271 milliseconds