Home | History | Annotate | Download | only in camera

Lines Matching refs:ySize

469                       size_t &ySize,
475 ySize = yStride * height;
477 size = ySize + uvSize * 2;
629 size_t yStride, uvStride, ySize, uvSize, size;
630 alignYV12(width, height, yStride, uvStride, ySize, uvSize, size);
632 bufferDst_V = (uint16_t *) (((uint8_t*)dst) + ySize);
633 bufferDst_U = (uint16_t *) (((uint8_t*)dst) + ySize + uvSize);