/external/libvpx/libvpx/vp9/common/ |
vp9_mfqe.c | 214 int mi_offset, y_offset, uv_offset; local 232 uv_offset = 16; 236 uv_offset = 8; 253 mfqe_block(bs_tmp, y + y_offset, u + uv_offset, v + uv_offset, y_stride, 254 uv_stride, yd + y_offset, ud + uv_offset, vd + uv_offset, 259 mfqe_block(bs_tmp, y + y_offset * y_stride, u + uv_offset * uv_stride, 260 v + uv_offset * uv_stride, y_stride, uv_stride, 261 yd + y_offset * yd_stride, ud + uv_offset * uvd_stride [all...] |
/external/tensorflow/tensorflow/examples/android/jni/ |
yuv2rgb.cc | 77 const int uv_offset = (x >> 1) * uv_pixel_stride; local 78 *out++ = YUV2RGB(pY[x], pU[uv_offset], pV[uv_offset]);
|
/external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/env/ |
ImageUtils.java | 189 int uv_offset = pUV + (i >> 1) * uvPixelStride; local 193 0xff & uData[uv_offset], 194 0xff & vData[uv_offset]);
|
/external/tensorflow/tensorflow/lite/examples/android/app/src/main/java/org/tensorflow/demo/env/ |
ImageUtils.java | 189 int uv_offset = pUV + (i >> 1) * uvPixelStride; local 193 0xff & uData[uv_offset], 194 0xff & vData[uv_offset]);
|
/external/webp/src/enc/ |
picture_rescale_enc.c | 140 const int uv_offset = (top / 2) * pic->uv_stride + left / 2; local 143 WebPCopyPlane(pic->u + uv_offset, pic->uv_stride, 145 WebPCopyPlane(pic->v + uv_offset, pic->uv_stride,
|
/external/webp/src/dec/ |
frame_dec.c | 178 const int uv_offset = cache_id * 8 * dec->cache_uv_stride_; local 180 uint8_t* const u_out = dec->cache_u_ + mb_x * 8 + uv_offset; 181 uint8_t* const v_out = dec->cache_v_ + mb_x * 8 + uv_offset; 412 const int uv_offset = cache_id * 8 * dec->cache_uv_stride_; local 414 uint8_t* const udst = dec->cache_u_ - uvsize + uv_offset; 415 uint8_t* const vdst = dec->cache_v_ - uvsize + uv_offset; 442 io->u = dec->cache_u_ + uv_offset; 443 io->v = dec->cache_v_ + uv_offset;
|
/external/libvpx/libvpx/vp9/encoder/ |
vp9_temporal_filter.c | 135 const int uv_offset = i * uv_stride + j; local 141 CONVERT_TO_SHORTPTR(u_mb_ptr + uv_offset), uv_stride, 147 CONVERT_TO_SHORTPTR(v_mb_ptr + uv_offset), uv_stride, 152 vp9_build_inter_predictor(u_mb_ptr + uv_offset, uv_stride, 157 vp9_build_inter_predictor(v_mb_ptr + uv_offset, uv_stride, 163 vp9_build_inter_predictor(u_mb_ptr + uv_offset, uv_stride, 168 vp9_build_inter_predictor(v_mb_ptr + uv_offset, uv_stride, [all...] |
/external/libyuv/files/util/ |
psnr_main.cc | 249 const int uv_offset = (do_swap_uv ? uv_size : 0); local 250 const uint8* const u_org = ch_org + y_size + uv_offset; 252 const uint8* const v_org = ch_org + y_size + (uv_size - uv_offset);
|
/external/libaom/libaom/av1/encoder/ |
temporal_filter.c | 123 const int uv_offset = i * uv_stride + j; local 126 av1_build_inter_predictor(u_mb_ptr + uv_offset, uv_stride, 132 v_mb_ptr + uv_offset, uv_stride, &pred[(BLK_PELS << 1) + p_offset], [all...] |