HomeSort by relevance Sort by last modified time
    Searched refs:xh (Results 1 - 25 of 29) sorted by null

1 2

  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
findhalfpel.cpp 73 Int xh, yh; local
125 xh = 0;
135 d = (*(SAD_MB_HalfPel[((yh&1)<<1)+(xh&1)]))(ncand, cur, (dmin << 16) | lx, extra_info);
140 xhmin[0] = xh;
145 PV_ABS(mot[0].x + xh) + PV_ABS(mot[0].y + yh) < PV_ABS(mot[0].x + xhmin[0]) + PV_ABS(mot[0].y + yhmin[0]))
147 xhmin[0] = xh;
154 xh += next_hp_pos[k][0];
188 Int xh, yh;//, xhmin, yhmin; local
243 xh = -1;
249 d = (*SAD_Blk_HalfPel)(cand, cur8, dmin, lx, swidth, xh, yh, extra_info)
    [all...]
sad_halfpel.cpp 24 Int SAD_MB_HalfPel_C(UChar *ref,UChar *blk,Int dmin,Int width,Int rx,Int xh,Int yh,void *extra_info)
25 Int SAD_MB_HP_HTFM_Collect(UChar *ref,UChar *blk,Int dmin,Int width,Int rx,Int xh,Int yh,void *extra_info)
26 Int SAD_MB_HP_HTFM(UChar *ref,UChar *blk,Int dmin,Int width,Int rx,Int xh,Int yh,void *extra_info)
27 Int SAD_Blk_HalfPel_C(UChar *ref,UChar *blk,Int dmin,Int width,Int rx,Int xh,Int yh,void *extra_info)
780 Int SAD_Blk_HalfPel_C(UChar *ref, UChar *blk, Int dmin, Int width, Int rx, Int xh, Int yh, void *extra_info)
791 if (xh && yh)
794 p2 = ref + xh;
796 p4 = ref + yh * rx + xh;
824 p2 = ref + xh + yh * rx; /* either left/right or top/bottom pixel */
mp4lib_int.h 236 // Int (*SAD_MB_HalfPel)(UChar *ref,UChar *blk,Int dmin_lx,Int xh,Int yh,void *extra_info);
238 Int(*SAD_Blk_HalfPel)(UChar *ref, UChar *blk, Int dmin, Int lx, Int rx, Int xh, Int yh, void *extra_info);
mp4enc_lib.h 149 Int SAD_Blk_HalfPel_C(UChar *ref, UChar *blk, Int dmin, Int lx, Int rx, Int xh, Int yh, void *extra_info);
motion_est.cpp 162 Int xh[5] = {0, 0, 0, 0, 0}; local
347 i << 4, j << 4, xh, yh, hp_guess);
361 best_cand, mode_mb, i << 4, j << 4, xh, yh, hp_mem4MV);
    [all...]
  /development/perftests/panorama/feature_stab/db_vlvm/
db_metrics.h 168 double xh,yh,zh,mult,mult2,xh_mult2,yh_mult2; local
171 [1/zh 0 -xh/(zh*zh)]
178 [-x0/zh -x1/zh -1/zh 0 0 0 x0*xh/(zh*zh) x1*xh/(zh*zh) xh/(zh*zh)]
183 xh=H[0]*x[0]+H[1]*x[1]+H[2];
188 f[0]=y[0]-xh*mult;
192 xh_mult2=xh*mult2;
258 double xh,yh,zh,mult,mult2,xh_mult2,yh_mult2; local
261 [1/zh 0 -xh/(zh*zh)
    [all...]
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_metrics.h 168 double xh,yh,zh,mult,mult2,xh_mult2,yh_mult2; local
171 [1/zh 0 -xh/(zh*zh)]
178 [-x0/zh -x1/zh -1/zh 0 0 0 x0*xh/(zh*zh) x1*xh/(zh*zh) xh/(zh*zh)]
183 xh=H[0]*x[0]+H[1]*x[1]+H[2];
188 f[0]=y[0]-xh*mult;
192 xh_mult2=xh*mult2;
258 double xh,yh,zh,mult,mult2,xh_mult2,yh_mult2; local
261 [1/zh 0 -xh/(zh*zh)
    [all...]
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_metrics.h 168 double xh,yh,zh,mult,mult2,xh_mult2,yh_mult2; local
171 [1/zh 0 -xh/(zh*zh)]
178 [-x0/zh -x1/zh -1/zh 0 0 0 x0*xh/(zh*zh) x1*xh/(zh*zh) xh/(zh*zh)]
183 xh=H[0]*x[0]+H[1]*x[1]+H[2];
188 f[0]=y[0]-xh*mult;
192 xh_mult2=xh*mult2;
258 double xh,yh,zh,mult,mult2,xh_mult2,yh_mult2; local
261 [1/zh 0 -xh/(zh*zh)
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
findhalfpel.cpp 68 int xh[9] = {0, 0, 2, 2, 2, 0, -2, -2, -2}; local
95 mvcost = MV_COST_S(lambda_motion, mot->x + xh[h], mot->y + yh[h], cmvx, cmvy);
107 mot->x += xh[hmin];
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
crypto.js 94 var xl = x&0x7fff, xh = x>>15;
98 var m = xh*l+h*xl;
100 c = (l>>>30)+(m>>>15)+xh*h+(c>>>30);
112 var xl = x&0x3fff, xh = x>>14;
116 var m = xh*l+h*xl;
118 c = (l>>28)+(m>>14)+xh*h;
130 var xl = x&0x1fff, xh = x>>13;
134 var m = xh*l+h*xl;
136 c = (l>>26)+(m>>13)+xh*h;
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
v8-crypto.js 86 var xl = x&0x7fff, xh = x>>15;
90 var m = xh*l+h*xl;
92 c = (l>>>30)+(m>>>15)+xh*h+(c>>>30);
104 var xl = x&0x3fff, xh = x>>14;
108 var m = xh*l+h*xl;
110 c = (l>>28)+(m>>14)+xh*h;
122 var xl = x&0x1fff, xh = x>>13;
126 var m = xh*l+h*xl;
128 c = (l>>26)+(m>>13)+xh*h;
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
v8-crypto.js 86 var xl = x&0x7fff, xh = x>>15;
90 var m = xh*l+h*xl;
92 c = (l>>>30)+(m>>>15)+xh*h+(c>>>30);
104 var xl = x&0x3fff, xh = x>>14;
108 var m = xh*l+h*xl;
110 c = (l>>28)+(m>>14)+xh*h;
122 var xl = x&0x1fff, xh = x>>13;
126 var m = xh*l+h*xl;
128 c = (l>>26)+(m>>13)+xh*h;
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
v8-crypto.js 86 var xl = x&0x7fff, xh = x>>15;
90 var m = xh*l+h*xl;
92 c = (l>>>30)+(m>>>15)+xh*h+(c>>>30);
104 var xl = x&0x3fff, xh = x>>14;
108 var m = xh*l+h*xl;
110 c = (l>>28)+(m>>14)+xh*h;
122 var xl = x&0x1fff, xh = x>>13;
126 var m = xh*l+h*xl;
128 c = (l>>26)+(m>>13)+xh*h;
    [all...]
  /external/chromium_org/v8/benchmarks/
crypto.js 94 var xl = x&0x7fff, xh = x>>15;
98 var m = xh*l+h*xl;
100 c = (l>>>30)+(m>>>15)+xh*h+(c>>>30);
112 var xl = x&0x3fff, xh = x>>14;
116 var m = xh*l+h*xl;
118 c = (l>>28)+(m>>14)+xh*h;
130 var xl = x&0x1fff, xh = x>>13;
134 var m = xh*l+h*xl;
136 c = (l>>26)+(m>>13)+xh*h;
    [all...]
  /external/chromium_org/third_party/icu/source/common/
locmap.c 596 ILCID_POSIX_ELEMENT_ARRAY(0x0434, xh, xh_ZA)
768 ILCID_POSIX_MAP(xh), /* xh Xhosa 0x34 */
    [all...]
  /external/deqp/modules/gles2/functional/
es2fDepthRangeTests.cpp 248 float xh = ((float)x - half + 0.5f) / (float)(referenceFrame.getWidth()-half); local
249 float rd = 1.0f - (xh + yf) * 0.5f;
  /external/deqp/modules/gles3/functional/
es3fFragDepthTests.cpp 255 float xh = ((float)x - half + 0.5f) / (float)(referenceFrame.getWidth()-half); local
256 float rd = 1.0f - (xh + yf) * 0.5f;
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/x86/
vp9_subpel_variance.asm 143 cglobal sub_pixel_avg_variance%1xh, 9, 10, 13, src, src_stride, \
149 cglobal sub_pixel_variance%1xh, 7, 8, 13, src, src_stride, x_offset, \
157 cglobal sub_pixel_avg_variance%1xh, 7, 7, 13, src, src_stride, \
177 cglobal sub_pixel_variance%1xh, 7, 7, 13, src, src_stride, x_offset, \
196 cglobal sub_pixel_avg_variance%1xh, 7 + 2 * ARCH_X86_64, \
210 cglobal sub_pixel_variance%1xh, 7, 7, 13, src, src_stride, x_offset, \
    [all...]
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_subpel_variance.asm 143 cglobal sub_pixel_avg_variance%1xh, 9, 10, 13, src, src_stride, \
149 cglobal sub_pixel_variance%1xh, 7, 8, 13, src, src_stride, x_offset, \
157 cglobal sub_pixel_avg_variance%1xh, 7, 7, 13, src, src_stride, \
177 cglobal sub_pixel_variance%1xh, 7, 7, 13, src, src_stride, x_offset, \
196 cglobal sub_pixel_avg_variance%1xh, 7 + 2 * ARCH_X86_64, \
210 cglobal sub_pixel_variance%1xh, 7, 7, 13, src, src_stride, x_offset, \
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/x86/
vp9_subpel_variance.asm 143 cglobal sub_pixel_avg_variance%1xh, 9, 10, 13, src, src_stride, \
149 cglobal sub_pixel_variance%1xh, 7, 8, 13, src, src_stride, x_offset, \
157 cglobal sub_pixel_avg_variance%1xh, 7, 7, 13, src, src_stride, \
177 cglobal sub_pixel_variance%1xh, 7, 7, 13, src, src_stride, x_offset, \
196 cglobal sub_pixel_avg_variance%1xh, 7 + 2 * ARCH_X86_64, \
210 cglobal sub_pixel_variance%1xh, 7, 7, 13, src, src_stride, x_offset, \
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_arit.c 937 LLVMValueRef xl, xh, v0l, v0h, v1l, v1h, resl, resh; local
954 lp_build_unpack2(bld->gallivm, type, wide_type, x, &xl, &xh);
966 xh = lp_build_add(&wide_bld, xh,
967 LLVMBuildAShr(builder, xh, shift, ""));
974 resh = lp_build_lerp_simple(&wide_bld, xh, v0h, v1h);
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_arit.c 937 LLVMValueRef xl, xh, v0l, v0h, v1l, v1h, resl, resh; local
954 lp_build_unpack2(bld->gallivm, type, wide_type, x, &xl, &xh);
966 xh = lp_build_add(&wide_bld, xh,
967 LLVMBuildAShr(builder, xh, shift, ""));
974 resh = lp_build_lerp_simple(&wide_bld, xh, v0h, v1h);
    [all...]
  /external/icu/icu4c/source/common/
locmap.c 700 ILCID_POSIX_ELEMENT_ARRAY(0x0434, xh, xh_ZA)
873 ILCID_POSIX_MAP(xh), /* xh Xhosa 0x34 */
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/x86/
vp9_intrapred_ssse3.asm 836 pshufhw m0, m0, q0000 ; de, d2ef, ef, e2fg, fg, f2gh, gh, g3h, 8xh
    [all...]
  /external/libvpx/libvpx/vp9/common/x86/
vp9_intrapred_ssse3.asm 836 pshufhw m0, m0, q0000 ; de, d2ef, ef, e2fg, fg, f2gh, gh, g3h, 8xh
    [all...]

Completed in 578 milliseconds

1 2