Searched defs:step2 (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/PerformanceTests/inspector/
H A Dheap-snapshot-performance-test.js40 InspectorTest.addSniffer(profiles[0], "_wasShown", step2);
51 function step2()
/external/libvpx/libvpx/vp9/common/
H A Dvp9_idct.c160 int16_t step1[8], step2[8]; local
180 step2[4] = step1[4] + step1[5];
181 step2[5] = step1[4] - step1[5];
182 step2[6] = -step1[6] + step1[7];
183 step2[7] = step1[6] + step1[7];
186 step1[4] = step2[4];
187 temp1 = (step2[6] - step2[5]) * cospi_16_64;
188 temp2 = (step2[5] + step2[
450 int16_t step1[16], step2[16]; local
880 int16_t step1[32], step2[32]; local
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_dct.c321 /*canbe16*/ int step2[8]; local
423 step2[2] = dct_const_round_shift(temp1);
424 step2[3] = dct_const_round_shift(temp2);
427 step2[4] = dct_const_round_shift(temp1);
428 step2[5] = dct_const_round_shift(temp2);
430 step3[0] = step1[0] + step2[3];
431 step3[1] = step1[1] + step2[2];
432 step3[2] = step1[1] - step2[2];
433 step3[3] = step1[0] - step2[3];
434 step3[4] = step1[7] - step2[
647 /*canbe16*/ int step2[8]; local
[all...]
/external/opencv/cxcore/src/
H A Dcxarithm.cpp82 ( 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, ds
1869 icvAddWeighted_8u_fast_C1R( const uchar* src1, int step1, double alpha, const uchar* src2, int step2, double beta, double gamma, uchar* dst, int step, CvSize size ) argument
[all...]
H A Dcxmatrix.cpp1536 int step2 = srcB->step ? srcB->step/sizeof(src1data[0]) : 1; local
1539 dstdata[2*step] = src1data[0] * src2data[step2] - src1data[step1] * src2data[0];
1540 dstdata[0] = src1data[step1] * src2data[step2*2] - src1data[step1*2] * src2data[step2];
1541 dstdata[step] = src1data[step1*2] * src2data[0] - src1data[0] * src2data[step2*2];
1559 int step2 = srcB->step ? srcB->step/sizeof(src1data[0]) : 1; local
1562 dstdata[2*step] = src1data[0] * src2data[step2] - src1data[step1] * src2data[0];
1563 dstdata[0] = src1data[step1] * src2data[step2*2] - src1data[step1*2] * src2data[step2];
1564 dstdata[step] = src1data[step1*2] * src2data[0] - src1data[0] * src2data[step2*
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DTests.js632 WebInspector.notifications.addEventListener(WebInspector.ElementsTreeOutline.Events.SelectedNodeChanged, step2);
635 function step2()
637 WebInspector.notifications.removeEventListener(WebInspector.ElementsTreeOutline.Events.SelectedNodeChanged, step2);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.lucene.analysis_1.9.1.v20100518-1140.jar ... lang.String) String term private boolean step1 () private boolean step2 () private void step3 () private void step4 () private void step5 () public ...
H A Dorg.apache.lucene_1.9.1.v20100518-1140.jar ... s private final void step1 () int ch private final void step2 () private final void step3 () private final void step4 () private final ...
/external/libvpx/libvpx/vp9/encoder/x86/
H A Dvp9_dct32x32_sse2.c89 __m128i step2[32]; local
303 step2[ 0] = _mm_add_epi16(step1[0], step1[15]);
304 step2[ 1] = _mm_add_epi16(step1[1], step1[14]);
305 step2[ 2] = _mm_add_epi16(step1[2], step1[13]);
306 step2[ 3] = _mm_add_epi16(step1[3], step1[12]);
307 step2[ 4] = _mm_add_epi16(step1[4], step1[11]);
308 step2[ 5] = _mm_add_epi16(step1[5], step1[10]);
309 step2[ 6] = _mm_add_epi16(step1[6], step1[ 9]);
310 step2[ 7] = _mm_add_epi16(step1[7], step1[ 8]);
311 step2[
[all...]

Completed in 239 milliseconds