HomeSort by relevance Sort by last modified time
    Searched defs:ystride (Results 1 - 12 of 12) sorted by null

  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/arm/neon/
picklpf_arm.c 24 int ystride; local
29 ystride = src_ybc->y_stride;
41 yoffset = ystride * (((yheight >> 5) * 16) - 4);
45 vp8_memcpy_partial_neon(dst_y, src_y, ystride * linestocopy);
  /external/libvpx/libvpx/vp8/encoder/
picklpf.c 32 int ystride; local
37 ystride = src_ybc->y_stride;
49 yoffset = ystride * (((yheight >> 5) * 16) - 4);
53 memcpy(dst_y, src_y, ystride * linestocopy);
onyx_if.c 3387 int ystride = cpi->Source->y_stride; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
picklpf.c 31 int ystride; local
36 ystride = src_ybc->y_stride;
48 yoffset = ystride * (((yheight >> 5) * 16) - 4);
52 vpx_memcpy(dst_y, src_y, ystride * linestocopy);
  /hardware/qcom/display/msm8960/libgralloc/
mapper.cpp 253 int ystride, cstride; local
259 ystride = ALIGN(hnd->width, 16);
261 ycbcr->cr = (void*)(hnd->base + ystride * hnd->height);
262 ycbcr->cb = (void*)(hnd->base + ystride * hnd->height + 1);
263 ycbcr->ystride = ystride;
264 ycbcr->cstride = ystride;
270 ystride = ALIGN(hnd->width, 16);
272 ycbcr->cb = (void*)(hnd->base + ystride * hnd->height);
273 ycbcr->cr = (void*)(hnd->base + ystride * hnd->height + 1)
    [all...]
  /hardware/qcom/display/msm8084/libgralloc/
alloc_controller.cpp 557 size_t ystride, cstride; local
568 ystride = cstride = hnd->width;
570 ycbcr->cb = (void*)(hnd->base + ystride * hnd->height);
571 ycbcr->cr = (void*)(hnd->base + ystride * hnd->height + 1);
572 ycbcr->ystride = ystride;
583 ystride = cstride = hnd->width;
585 ycbcr->cr = (void*)(hnd->base + ystride * hnd->height);
586 ycbcr->cb = (void*)(hnd->base + ystride * hnd->height + 1);
587 ycbcr->ystride = ystride
    [all...]
  /hardware/qcom/display/msm8226/libgralloc/
alloc_controller.cpp 556 unsigned int ystride, cstride; local
567 ystride = cstride = hnd->width;
569 ycbcr->cb = (void*)(hnd->base + ystride * hnd->height);
570 ycbcr->cr = (void*)(hnd->base + ystride * hnd->height + 1);
571 ycbcr->ystride = ystride;
581 ystride = cstride = hnd->width;
583 ycbcr->cr = (void*)(hnd->base + ystride * hnd->height);
584 ycbcr->cb = (void*)(hnd->base + ystride * hnd->height + 1);
585 ycbcr->ystride = ystride
    [all...]
  /hardware/qcom/display/msm8909/libgralloc/
alloc_controller.cpp 569 unsigned int ystride, cstride; local
580 ystride = cstride = hnd->width;
582 ycbcr->cb = (void*)(hnd->base + ystride * hnd->height);
583 ycbcr->cr = (void*)(hnd->base + ystride * hnd->height + 1);
584 ycbcr->ystride = ystride;
593 ystride = cstride = hnd->width;
595 ycbcr->cr = (void*)(hnd->base + ystride * hnd->height);
596 ycbcr->cb = (void*)(hnd->base + ystride * hnd->height + 1);
597 ycbcr->ystride = ystride
    [all...]
  /hardware/qcom/display/msm8994/libgralloc/
alloc_controller.cpp 648 unsigned int ystride, cstride; local
659 ystride = cstride = hnd->width;
661 ycbcr->cb = (void*)(hnd->base + ystride * hnd->height);
662 ycbcr->cr = (void*)(hnd->base + ystride * hnd->height + 1);
663 ycbcr->ystride = ystride;
674 ystride = cstride = hnd->width;
676 ycbcr->cr = (void*)(hnd->base + ystride * hnd->height);
677 ycbcr->cb = (void*)(hnd->base + ystride * hnd->height + 1);
678 ycbcr->ystride = ystride
    [all...]
  /hardware/qcom/display/msm8996/libgralloc/
alloc_controller.cpp 751 ycbcr->ystride = y_stride;
760 unsigned int ystride, cstride; local
762 ystride = cstride = width * bpp;
764 ycbcr->cb = (void*)(hnd->base + ystride * height);
765 ycbcr->cr = (void*)(hnd->base + ystride * height + 1);
766 ycbcr->ystride = ystride;
778 unsigned int ystride, cstride; local
838 ystride = width;
841 ycbcr->cr = (void*)(hnd->base + ystride * height)
    [all...]
  /system/core/include/system/
graphics.h 460 * @ystride is the stride of the luma plane.
472 size_t ystride; member in struct:android_ycbcr
    [all...]
  /frameworks/av/media/libstagefright/
ACodec.cpp 4554 size_t ystride = align(params.nStride, 16); local
    [all...]

Completed in 1126 milliseconds