Lines Matching refs:outY
442 for (unsigned int outY = 0; outY < height; outY++) { in captureRGBA() local
443 unsigned int y = outY * DivH >> 10; in captureRGBA()
444 uint8_t *px = img + outY * width * 4; in captureRGBA()
481 for (unsigned int outY = 0; outY < height; outY++) { in captureRGB() local
482 unsigned int y = outY * DivH >> 10; in captureRGB()
483 uint8_t *px = img + outY * width * 3; in captureRGB()
535 for (unsigned int outY = 0; outY < height; outY++) { in captureYU12() local
536 unsigned int y = outY * DivH >> 10; in captureYU12()
537 uint8_t *pxY = img + outY * width; in captureYU12()
538 uint8_t *pxU = img + height * width + (outY / 2) * (width / 2); in captureYU12()
559 if (outY % 2 == 0 && outX % 2 == 0) { in captureYU12()
576 for (unsigned int outY = 0; outY < height; outY++) { in captureDepth() local
577 unsigned int y = outY * DivH >> 10; in captureDepth()
578 uint16_t *px = ((uint16_t*)img) + outY * width; in captureDepth()