Home
last modified time | relevance | path

Searched defs:pixel (Results 1 – 25 of 188) sorted by relevance

12345678

/third_party/boost/boost/gil/
Dpixel.hpp99 struct pixel : struct
108 using channel_t = ChannelValue;
109 using parent_t = detail::homogeneous_color_base
116 using value_type = pixel<ChannelValue, Layout>;
117 using reference = value_type&;
118 using const_reference = value_type const&;
119 static constexpr bool is_mutable = channel_traits<channel_t>::is_mutable;
122 explicit pixel(channel_t v) : parent_t(v) {} // sets all channels to v in pixel() argument
123 pixel(channel_t v0, channel_t v1) : parent_t(v0, v1) {} in pixel() argument
124 pixel(channel_t v0, channel_t v1, channel_t v2) : parent_t(v0, v1, v2) {} in pixel() function
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/tests/gl_tests/
DETCTextureTest.cpp48 GLubyte pixel[8] = {0x0, 0x0, 0xf8, 0x2, 0x43, 0xff, 0x4, 0x12}; in TEST_P() local
80 GLubyte pixel[] = { in TEST_P() local
123 GLubyte pixel[] = { in TEST_P() local
167 GLubyte pixel[] = { in TEST_P() local
215 GLubyte pixel[] = { in TEST_P() local
DSRGBTextureTest.cpp95 GLubyte pixel[3] = {0}; in TEST_P() local
129 GLubyte pixel[4] = {0}; in TEST_P() local
170 GLubyte pixel[4] = {0}; in TEST_P() local
DMaxTextureSizeTest.cpp105 GLubyte *pixel = &data[0] + ((y * textureWidth + x) * 4); in TEST_P() local
167 GLubyte *pixel = &data[0] + ((y * textureWidth + x) * 4); in TEST_P() local
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
DETCTextureTest.cpp48 GLubyte pixel[8] = {0x0, 0x0, 0xf8, 0x2, 0x43, 0xff, 0x4, 0x12}; in TEST_P() local
80 GLubyte pixel[] = { in TEST_P() local
123 GLubyte pixel[] = { in TEST_P() local
167 GLubyte pixel[] = { in TEST_P() local
215 GLubyte pixel[] = { in TEST_P() local
/third_party/ffmpeg/libavfilter/
Dvf_thumbnail_cuda.cu32 unsigned char pixel = tex2D<unsigned char>(uchar_tex, x, y); in Thumbnail_uchar() local
45 uchar2 pixel = tex2D<uchar2>(uchar2_tex, x, y); in Thumbnail_uchar2() local
59 unsigned short pixel = (tex2D<unsigned short>(ushort_tex, x, y) + 128) >> 8; in Thumbnail_ushort() local
72 ushort2 pixel = tex2D<ushort2>(ushort2_tex, x, y); in Thumbnail_ushort2() local
Dphase_template.c30 #define pixel uint8_t macro
33 #define pixel uint16_t macro
Dmedian_template.c31 #define pixel uint8_t macro
33 #define pixel uint16_t macro
/third_party/uboot/u-boot-2020.01/arch/x86/lib/fsp1/
Dfsp_graphics.c14 struct pixel { struct
20 struct pixel red; argument
/third_party/ffmpeg/libavcodec/
Danm.c77 int pixel, int count, in op()
142 #define OP(gb, pixel, count) \ in decode_frame() argument
151 int pixel; in decode_frame() local
156 int pixel; in decode_frame() local
/third_party/uboot/u-boot-2020.01/drivers/video/
Defi.c14 struct pixel { struct
20 struct pixel red; argument
/third_party/boost/libs/gil/test/core/pixel/
Dtest_fixture.hpp44 Pixel pixel; in max() local
52 Pixel pixel; in min() local
60 Pixel pixel; in random() local
75 explicit pixel_value(pixel_t const& pixel) in pixel_value()
/third_party/pixman/pixman/
Dpixman-access.c251 convert_channel (uint32_t pixel, uint32_t def_value, in convert_channel()
268 convert_pixel (pixman_format_code_t from, pixman_format_code_t to, uint32_t pixel) in convert_pixel()
299 uint32_t pixel) in convert_pixel_to_a8r8g8b8()
314 pixman_format_code_t format, uint32_t pixel) in convert_pixel_from_a8r8g8b8()
340 uint32_t pixel; in fetch_and_convert_pixel() local
381 uint32_t pixel) in convert_and_store_pixel()
594 const uint32_t *pixel = bits + x; in fetch_scanline_a8r8g8b8_sRGB_float() local
623 const uint32_t *pixel = bits + x; in fetch_scanline_a2r10g10b10_float() local
655 const float *pixel = bits + x * 3; in fetch_scanline_rgbf_float() local
675 const float *pixel = bits + x * 4; in fetch_scanline_rgbaf_float() local
[all …]
/third_party/skia/third_party/externals/brotli/research/
Ddraw_histogram.cc133 void ConvertToPixels(int** histo, uint8_t** pixel) { in ConvertToPixels()
158 void DrawPixels(uint8_t** pixel, FILE* fout) { in DrawPixels()
182 uint8_t** pixel = new uint8_t*[height]; in main() local
/third_party/skia/docs/examples/
DCanvas_readPixels_b.cpp9 uint32_t pixel = 0; in draw() local
DAlpha_Constants_b.cpp14 SkPMColor pixel = srcPixels[y * source.width() + x]; in draw() local
/third_party/flutter/skia/docs/examples/
DCanvas_readPixels_b.cpp9 uint32_t pixel = 0; in draw() local
DAlpha_Constants_b.cpp14 SkPMColor pixel = srcPixels[y * source.width() + x]; in draw() local
/third_party/boost/libs/gil/example/
Dhessian.cpp94 const auto& pixel = input_view(image_x, image_y); in apply_gaussian_blur() local
99 auto& pixel = output_view(gil::point_t(x, y)); in apply_gaussian_blur() local
115 auto value = [](gil::gray32f_pixel_t pixel) { in suppress()
Dharris.cpp89 auto& pixel = input_view(image_x, image_y); in apply_gaussian_blur() local
94 auto& pixel = output_view(gil::point_t(x, y)); in apply_gaussian_blur() local
110 auto value = [](gil::gray32f_pixel_t pixel) { in suppress()
/third_party/boost/libs/compute/test/extra/
Dtest_interop_opencv.cpp85 cv::Vec4f pixel; in BOOST_AUTO_TEST_CASE() local
/third_party/skia/third_party/externals/swiftshader/src/Shader/
DPixelRoutine.cpp862 …tine::blendFactor(Vector4s &blendFactor, const Vector4s &current, const Vector4s &pixel, BlendFact… in blendFactor()
943 …:blendFactorAlpha(Vector4s &blendFactor, const Vector4s &current, const Vector4s &pixel, BlendFact… in blendFactorAlpha()
998 void PixelRoutine::readPixel(int index, Pointer<Byte> &cBuffer, Int &x, Vector4s &pixel) in readPixel()
1178 Vector4s pixel; in alphaBlend() local
1297 Vector4s pixel; in logicOperation() local
1918 …void PixelRoutine::blendFactor(Vector4f &blendFactor, const Vector4f &oC, const Vector4f &pixel, B… in blendFactor()
1989 …tine::blendFactorAlpha(Vector4f &blendFactor, const Vector4f &oC, const Vector4f &pixel, BlendFact… in blendFactorAlpha()
2045 Vector4f pixel; in alphaBlend() local
/third_party/skia/gm/
Dunpremul.cpp35 SkColor pixel; in __anon5ee5e08a0102() local
/third_party/flutter/skia/gm/
Dunpremul.cpp34 SkColor pixel; in __anon34dcdb9f0102() local
/third_party/skia/tests/
DSkImageTest.cpp39 uint32_t pixel = 0; in DEF_TEST() local

12345678