Searched refs:sz0 (Results 1 - 8 of 8) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/x86/
H A Dvp8_quantize_sse2.c40 __m128i sz0, x0, sz1, x1, y0, y1, x_minus_zbin0, x_minus_zbin1; local
62 sz0 = _mm_srai_epi16(z0, 15);
66 x0 = _mm_xor_si128(z0, sz0);
68 x0 = _mm_sub_epi16(x0, sz0);
101 y0 = _mm_xor_si128(y0, sz0);
103 y0 = _mm_sub_epi16(y0, sz0);
156 __m128i sz0, sz1, x0, x1, y0, y1, xdq0, xdq1, zeros, ones; local
159 sz0 = _mm_srai_epi16(z0, 15);
163 x0 = _mm_xor_si128(z0, sz0);
165 x0 = _mm_sub_epi16(x0, sz0);
[all...]
H A Dquantize_sse4.c34 __m128i sz0, x0, sz1, x1, y0, y1, x_minus_zbin0, x_minus_zbin1, dqcoeff0, local
57 sz0 = _mm_srai_epi16(z0, 15);
61 x0 = _mm_xor_si128(z0, sz0);
63 x0 = _mm_sub_epi16(x0, sz0);
93 y0 = _mm_xor_si128(y0, sz0);
95 y0 = _mm_sub_epi16(y0, sz0);
H A Dquantize_ssse3.c52 __m128i sz0, sz1, x, x0, x1, y0, y1, zeros, abs0, abs1; local
60 sz0 = _mm_srai_epi16(z0, 15);
82 y0 = _mm_xor_si128(y0, sz0);
84 x0 = _mm_sub_epi16(y0, sz0);
/external/libvpx/libvpx/vp8/encoder/arm/neon/
H A Dfastquantizeb_neon.c27 int16x8_t x0, x1, sz0, sz1, y0, y1; local
34 sz0 = vshrq_n_s16(z0, 15);
54 y0 = veorq_s16(y0, sz0);
56 x0 = vsubq_s16(y0, sz0);
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_sync.cc153 const uptr sz0 = sz; local
177 uptr metasz = sz0 / kMetaRatio;
/external/opencv/cv/src/
H A Dcvlkpyramid.cpp1158 CvSize sz0, sz1; local
1183 sz0 = cvGetSize(A);
1186 scale = MAX( (double)sz1.width/sz0.width, (double)sz1.height/sz0.height );
1188 sz1.width = cvRound( sz0.width * scale );
1189 sz1.height = cvRound( sz0.height * scale );
1191 equal_sizes = sz1.width == sz0.width && sz1.height == sz0.height;
1199 CV_CALL( gray = cvCreateMat( sz0.height, sz0
[all...]
H A Dcvsurf.cpp364 float alpha0, beta0, sz0, scale0; local
417 sz0 = (float)((PATCH_SZ+1)*size*1.2/9.);
418 scale0 = sz0/(PATCH_SZ+1);
420 if( sz0 > (PATCH_SZ+1)*1.5f )
422 float rd = (float)(sz0*sqrt_2*0.5);
H A Dcvhistogram.cpp1210 int sz0 = histsize[0], sz1 = histsize[1]; local
1225 if( (unsigned)v0 < (unsigned)sz0 &&
1239 if( (unsigned)v0 < (unsigned)sz0 &&
1902 int sz0 = histsize[0], sz1 = histsize[1]; local
1915 if( (unsigned)v0 < (unsigned)sz0 &&

Completed in 168 milliseconds