/external/libvpx/libvpx/vp9/common/ |
vp9_idct.c | 160 int16_t step1[8], step2[8]; local 163 step1[0] = input[0]; 164 step1[2] = input[4]; 165 step1[1] = input[2]; 166 step1[3] = input[6]; 169 step1[4] = dct_const_round_shift(temp1); 170 step1[7] = dct_const_round_shift(temp2); 173 step1[5] = dct_const_round_shift(temp1); 174 step1[6] = dct_const_round_shift(temp2); 177 idct4_1d(step1, step1) 450 int16_t step1[16], step2[16]; local 880 int16_t step1[32], step2[32]; local [all...] |
/external/libvpx/libvpx/vp9/common/arm/neon/ |
vp9_short_idct16x16_add_neon.asm | 150 ; step1[0] * cospi_16_64 154 ; step1[1] * cospi_16_64 165 ; temp1 = (step1[0] + step1[1]) * cospi_16_64 169 ; temp2 = (step1[0] - step1[1]) * cospi_16_64 181 ; step1[2] * cospi_24_64 - step1[3] * cospi_8_64; 182 ; step1[2] * cospi_8_64 186 ; step1[2] * cospi_24_6 [all...] |
vp9_short_idct32x32_add_neon.asm | 531 ;step1[16] = step1b[16][i] + step1b[19][i]; 532 ;step1[17] = step1b[17][i] + step1b[18][i]; 533 ;step1[18] = step1b[17][i] - step1b[18][i]; 534 ;step1[29] = step1b[30][i] - step1b[29][i]; 535 ;step1[30] = step1b[30][i] + step1b[29][i]; 536 ;step1[31] = step1b[31][i] + step1b[28][i]; 555 ;step1[19] = step1b[16][i] - step1b[19][i]; 556 ;step1[28] = step1b[31][i] - step1b[28][i]; 646 ;step1[22] = step1b[22][i] + step1b[21][i]; 647 ;step1[23] = step1b[23][i] + step1b[20][i] [all...] |
vp9_short_iht8x8_add_neon.asm | 241 vsub.s16 q13, q4, q5 ; step2[5] = step1[4] - step1[5] 242 vadd.s16 q4, q4, q5 ; step2[4] = step1[4] + step1[5] 243 vsub.s16 q14, q7, q6 ; step2[6] = -step1[6] + step1[7] 244 vadd.s16 q7, q7, q6 ; step2[7] = step1[6] + step1[7] 271 vadd.s16 q8, q0, q7 ; output[0] = step1[0] + step1[7] [all...] |
/external/libvpx/libvpx/vp9/encoder/x86/ |
vp9_dct32x32_sse2.c | 88 __m128i step1[32]; local 97 // step1[i] = (in[ 0 * stride] + in[(32 - 1) * stride]) << 2; 103 __m128i *step1a = &step1[ 0]; 104 __m128i *step1b = &step1[31]; 133 __m128i *step1a = &step1[ 4]; 134 __m128i *step1b = &step1[27]; 163 __m128i *step1a = &step1[ 8]; 164 __m128i *step1b = &step1[23]; 193 __m128i *step1a = &step1[12]; 194 __m128i *step1b = &step1[19] [all...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_dct.c | 320 /*canbe16*/ int step1[8]; local 338 step1[0] = (in[7 * stride] - in[ 8 * stride]) * 4; 339 step1[1] = (in[6 * stride] - in[ 9 * stride]) * 4; 340 step1[2] = (in[5 * stride] - in[10 * stride]) * 4; 341 step1[3] = (in[4 * stride] - in[11 * stride]) * 4; 342 step1[4] = (in[3 * stride] - in[12 * stride]) * 4; 343 step1[5] = (in[2 * stride] - in[13 * stride]) * 4; 344 step1[6] = (in[1 * stride] - in[14 * stride]) * 4; 345 step1[7] = (in[0 * stride] - in[15 * stride]) * 4; 357 step1[0] = ((in[7 * 16] + 1) >> 2) - ((in[ 8 * 16] + 1) >> 2) 646 \/*canbe16*\/ int step1[8]; local [all...] |
/external/opencv/cxcore/src/ |
cxnorm.cpp | 278 IPCVAPI_IMPL( CvStatus, name,( const arrtype* src1, int step1, \ 280 (src1, step1, src2, step2, size, _norm)) \ 285 step1 /= sizeof(src1[0]); \ 288 for( ; size.height--; src1 += step1, src2 += step2 ) \ 316 IPCVAPI_IMPL( CvStatus, name,( const arrtype* src1, int step1, \ 318 ( src1, step1, src2, step2, size, _norm )) \ 321 step1 /= sizeof(src1[0]); \ 324 for( ; size.height--; src1 += step1, src2 += step2 ) \ 339 IPCVAPI_IMPL( CvStatus, name,( const arrtype* src1, int step1, \ 342 (src1, step1, src2, step2, size, _norm, cvAlgHintAccurate )) [all...] |
cxcmp.cpp | 121 icvInRange_##flavor##_C##cn##R( const arrtype* src1, int step1, \ 126 step1 /= sizeof(src1[0]); step2 /= sizeof(src2[0]); \ 129 for( ; size.height--; src1 += step1, src2 += step2, \ 190 icvInRangeC_##flavor##_C##cn##R( const arrtype* src1, int step1, \ 194 step1 /= sizeof(src1[0]); step /= sizeof(dst[0]); \ 196 for( ; size.height--; src1 += step1, dst += step ) \ 450 icv##name##_##flavor##_C1R( const arrtype* src1, int step1, \ 454 step1 /= sizeof(src1[0]); step2 /= sizeof(src2[0]); \ 457 for( ; size.height--; src1 += step1, src2 += step2, \ 491 icv##name##C_##flavor##_C1R( const arrtype* src1, int step1, \ [all...] |
cxarithm.cpp | 82 ( const type* src1, int step1, const type* src2, int step2, \ 84 (src1, step1, src2, step2, dst, step, size) ) \ 86 step1/=sizeof(src1[0]); step2/=sizeof(src2[0]); step/=sizeof(dst[0]); \ 90 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \ 98 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \ 111 ( const type* src1, int step1, const type* src2, int step2, \ 113 (src1, step1, src2, step2, dst, step, size, 0) ) \ 115 step1/=sizeof(src1[0]); step2/=sizeof(src2[0]); step/=sizeof(dst[0]); \ 119 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \ 127 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) [all...] |
cxlogic.cpp | 63 ( const uchar* src1, int step1, const uchar* src2, int step2, \ 64 uchar* dst, int step, CvSize size ), (src1, step1, src2, step2, dst, step, size) )\ 66 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \ 112 ( const uchar* src0, int step1, uchar* dst0, int step, CvSize size, \ 117 for( ; size.height--; src0 += step1, dst0 += step ) \ 574 ( const uchar* src1, int step1, uchar* dst, int step, CvSize size ), 575 (src1, step1, dst, step, size) ) 577 for( ; size.height--; src1 += step1, dst += step )
|
cxmatrix.cpp | 1535 int step1 = srcA->step ? srcA->step\/sizeof(src1data[0]) : 1; local 1558 int step1 = srcA->step ? srcA->step\/sizeof(src1data[0]) : 1; local [all...] |
cxmatmul.cpp | [all...] |
_cxipp.h | 139 ( const uchar* src, int step1, uchar* dst, int step, CvSize size )) [all...] |
/external/opencv/cxcore/include/ |
cxmisc.h | [all...] |
/external/opencv/cv/src/ |
cvaccum.cpp | 83 ( const srctype *src1, int step1, const srctype *src2, int step2, \ 85 (src1, step1, src2, step2, dst, dststep, size) ) \ 87 step1 /= sizeof(src1[0]); \ 91 for( ; size.height--; src1 += step1, src2 += step2, dst += dststep ) \ 190 ( const srctype *src1, int step1, const srctype* src2, int step2, \ 192 (src1, step1, src2, step2, mask, maskstep, dst, dststep, size )) \ 194 step1 /= sizeof(src1[0]); \ 198 for( ; size.height--; src1 += step1, src2 += step2, \ 294 ( const srctype *src1, int step1, const srctype* src2, int step2, \ 296 (src1, step1, src2, step2, mask, maskstep, dst, dststep, size )) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
RevisionHistoryView.js | 219 this._baseRevision.requestContent(step1.bind(this)); 221 this._revision.uiSourceCode.requestOriginalContent(step1.bind(this)); 227 function step1(baseContent)
|
Tests.js | 576 function step1() 606 step1(); 627 function step1() 668 step1();
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/setup/ |
SetupWizardActivity.java | 148 final SetupStep step1 = new SetupStep(STEP_1, applicationName, local 154 step1.setAction(new Runnable() { 161 mSetupStepGroup.addStep(step1);
|
/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 | |