Searched refs:pixel_out (Results 1 – 3 of 3) sorted by relevance
/external/pdfium/samples/ |
D | image_diff_png.cc | 51 unsigned char* pixel_out = &output[x * 4]; in ConvertBetweenBGRAandRGBA() local 52 pixel_out[0] = pixel_in[2]; in ConvertBetweenBGRAandRGBA() 53 pixel_out[1] = pixel_in[1]; in ConvertBetweenBGRAandRGBA() 54 pixel_out[2] = pixel_in[0]; in ConvertBetweenBGRAandRGBA() 55 pixel_out[3] = pixel_in[3]; in ConvertBetweenBGRAandRGBA() 63 unsigned char* pixel_out = &rgb[x * 3]; in ConvertRGBAtoRGB() local 64 pixel_out[0] = pixel_in[0]; in ConvertRGBAtoRGB() 65 pixel_out[1] = pixel_in[1]; in ConvertRGBAtoRGB() 66 pixel_out[2] = pixel_in[2]; in ConvertRGBAtoRGB() 125 unsigned char* pixel_out = &rgba[x * 4]; in ConvertRGBtoRGBA() local [all …]
|
/external/opencv3/modules/calib3d/test/ |
D | test_reproject_image_to_3d.cpp | 151 out3d_t pixel_out = _3dImg(y, x); in runCase() local 157 if (pixel_out[2] == largeZValue) in runCase() 166 double err = error(pixel_out, pixel_exp), t = thres<OutT>(); in runCase() 171 (double)pixel_out[0], (double)pixel_out[1], (double)pixel_out[2]); in runCase()
|
/external/libpng/contrib/libtests/ |
D | pngstest.c | 2356 char pixel_in[64], pixel_calc[64], pixel_out[64], pixel_loc[64]; in logpixel() local 2361 print_pixel(pixel_out, out, out_format); in logpixel() 2401 pixel_in, background_info, pixel_out, pixel_calc); in logpixel() 2412 pixel_loc, reason, via_linear, pixel_in, background_info, pixel_out, in logpixel() 2425 Pixel pixel_in, pixel_calc, pixel_out; in cmppixel() local 2434 transform->transform(&pixel_out, &pixel_in, transform->background); in cmppixel() 2435 transform->from_linear(&pixel_calc, &pixel_out, NULL); in cmppixel() 2438 transform->out_gp(&pixel_out, out); in cmppixel() 2441 if (pixel_calc.a == pixel_out.a && pixel_calc.r == pixel_out.r && in cmppixel() 2442 pixel_calc.g == pixel_out.g && pixel_calc.b == pixel_out.b) in cmppixel() [all …]
|