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

/external/libyuv/files/source/
H A Drotate.cc1053 int halfheight = (height + 1) >> 1; local
1058 halfheight = (height + 1) >> 1;
1060 src_u = src_u + (halfheight - 1) * src_stride_u;
1061 src_v = src_v + (halfheight - 1) * src_stride_v;
1083 halfwidth, halfheight);
1086 halfwidth, halfheight);
1094 halfwidth, halfheight);
1097 halfwidth, halfheight);
1105 halfwidth, halfheight);
1108 halfwidth, halfheight);
1129 int halfheight = (height + 1) >> 1; local
[all...]
H A Dformat_conversion.cc362 int halfheight = (height + 1) >> 1; local
364 dst_u = dst_u + (halfheight - 1) * dst_stride_u;
365 dst_v = dst_v + (halfheight - 1) * dst_stride_v;
445 int halfheight = (height + 1) >> 1; local
447 src_u = src_u + (halfheight - 1) * src_stride_u;
448 src_v = src_v + (halfheight - 1) * src_stride_v;
H A Dconvert.cc46 int halfheight = (height + 1) >> 1; local
48 src_u = src_u + (halfheight - 1) * src_stride_u;
49 src_v = src_v + (halfheight - 1) * src_stride_v;
56 int halfheight = (height + 1) >> 1; local
60 CopyPlane(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, halfheight);
61 CopyPlane(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, halfheight);
313 int halfheight = (height + 1) >> 1; local
318 halfwidth, halfheight, // to 1/2 width, 1/2 height
325 halfwidth, halfheight, // to 1/2 width, 1/2 height
350 int halfheight local
415 int halfheight = (height + 1) >> 1; local
446 int halfheight = (height + 1) >> 1; local
505 int halfheight = (height + 1) >> 1; local
1965 int halfheight = (abs_src_height + 1) / 2; local
[all...]
H A Dconvert_from.cc137 int halfheight = (height + 1) >> 1; local
140 ScalePlaneBilinear(halfwidth, halfheight,
147 ScalePlaneBilinear(halfwidth, halfheight,
187 int halfheight = (height + 1) >> 1; local
191 ScalePlaneBilinear(halfwidth, halfheight, // from 1/2 width, 1/2 height
198 ScalePlaneBilinear(halfwidth, halfheight, // from 1/2 width, 1/2 height
1341 int halfheight = (height + 1) / 2; local
1346 dst_u = dst_v + halfwidth * halfheight;
1349 dst_v = dst_u + halfwidth * halfheight;
H A Dplanar_functions.cc248 int halfheight = (height + 1) >> 1; local
250 src_u = src_u + (halfheight - 1) * src_stride_u;
251 src_v = src_v + (halfheight - 1) * src_stride_v;
258 int halfheight = (height + 1) >> 1; local
262 MirrorPlane(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, halfheight);
263 MirrorPlane(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, halfheight);
964 int halfheight = (height + 1) >> 1; local
970 SetPlane(start_u, dst_stride_u, halfwidth, halfheight, value_u);
971 SetPlane(start_v, dst_stride_v, halfwidth, halfheight, value_v);
H A Dscale.cc2936 int halfheight = (src_height + 1) >> 1; local
2938 src_u = src_u + (halfheight - 1) * src_stride_u;
2939 src_v = src_v + (halfheight - 1) * src_stride_v;
2958 // should be the src_u plane. Detect this and reduce halfheight to match.
2999 int halfheight = (src_height + 1) >> 1; local
3001 src_u = src_u + (halfheight - 1) * src_stride_u;
3002 src_v = src_v + (halfheight - 1) * src_stride_v;
3022 // should be the src_u plane. Detect this and reduce halfheight to match.
H A Dconvert_argb.cc1198 int halfheight = (abs_src_height + 1) / 2; local
1203 halfwidth * (halfheight + crop_y / 2) + crop_x / 2;
1208 halfwidth * (halfheight + crop_y / 2) + crop_x / 2;
/external/libvpx/libvpx/third_party/libyuv/source/
H A Dscale.c3777 int halfheight; local
3779 halfheight = (src_height + 1) >> 1;
3781 src_u = src_u + (halfheight - 1) * src_stride_u;
3782 src_v = src_v + (halfheight - 1) * src_stride_v;
3820 int halfheight; local
3822 halfheight = (src_height + 1) >> 1;
3824 src_u = src_u + (halfheight - 1) * src_stride_u;
3825 src_v = src_v + (halfheight - 1) * src_stride_v;

Completed in 945 milliseconds