Home
last modified time | relevance | path

Searched defs:rgb (Results 1 – 25 of 120) sorted by relevance

12345

/external/swiftshader/src/Main/
DFrameBuffer.cpp236 Int4 rgb = Int4(*Pointer<Short4>(s)); in copyRoutine() local
278 Int rgb = Int(*Pointer<Short>(s)); in copyRoutine() local
344 Int4 rgb = Int4(*Pointer<Short4>(s)); in copyRoutine() local
386 Int rgb = Int(*Pointer<Short>(s)); in copyRoutine() local
429 Int rgb = Int(*Pointer<Short>(s)); in copyRoutine() local
559 Int rgb(*Pointer<Short>(s)); in blend() local
/external/libjpeg-turbo/
Djdcol565.c39 JLONG rgb; in LOCAL() local
119 JLONG rgb; in LOCAL() local
196 JLONG rgb; in LOCAL() local
253 JLONG rgb; in LOCAL() local
308 JLONG rgb; in LOCAL() local
350 JLONG rgb; in LOCAL() local
Djdmrg565.c35 JLONG rgb; in LOCAL() local
107 JLONG rgb; in LOCAL() local
179 JLONG rgb; in LOCAL() local
277 JLONG rgb; in LOCAL() local
/external/swiftshader/src/WSI/
DFrameBuffer.cpp233 Int4 rgb = Int4(*Pointer<Short4>(s)); in copyRoutine() local
273 Int rgb = Int(*Pointer<Short>(s)); in copyRoutine() local
335 Int4 rgb = Int4(*Pointer<Short4>(s)); in copyRoutine() local
375 Int rgb = Int(*Pointer<Short>(s)); in copyRoutine() local
502 Int rgb(*Pointer<Short>(s)); in blend() local
/external/skia/third_party/skcms/src/
DTransform_inl.h535 U32 rgb = gather_24(a2b->grid_8, ix); in sample_clut_8() local
663 U16 rgb = load<U16>(src + 2*i); in exec_ops() local
671 const uint8_t* rgb = (const uint8_t*)(src + 3*i); in exec_ops() local
727 const uint16_t* rgb = (const uint16_t*)ptr; // cast to const uint16_t* to be safe. in exec_ops() local
763 const uint16_t* rgb = (const uint16_t*)ptr; // cast to const uint16_t* to be safe. in exec_ops() local
803 const uint16_t* rgb = (const uint16_t*)ptr; // cast to const uint16_t* to be safe. in exec_ops() local
845 const float* rgb = (const float*)ptr; // cast to const float* to be safe. in exec_ops() local
1005 uint8_t* rgb = (uint8_t*)dst + 3*i; in exec_ops() local
1043 uint16_t* rgb = (uint16_t*)ptr; // for this cast to uint16_t* to be safe. in exec_ops() local
1083 uint16_t* rgb = (uint16_t*)ptr; // for this cast to uint16_t* to be safe. in exec_ops() local
[all …]
/external/skqp/third_party/skcms/src/
DTransform_inl.h535 U32 rgb = gather_24(a2b->grid_8, ix); in sample_clut_8() local
663 U16 rgb = load<U16>(src + 2*i); in exec_ops() local
671 const uint8_t* rgb = (const uint8_t*)(src + 3*i); in exec_ops() local
727 const uint16_t* rgb = (const uint16_t*)ptr; // cast to const uint16_t* to be safe. in exec_ops() local
763 const uint16_t* rgb = (const uint16_t*)ptr; // cast to const uint16_t* to be safe. in exec_ops() local
803 const uint16_t* rgb = (const uint16_t*)ptr; // cast to const uint16_t* to be safe. in exec_ops() local
845 const float* rgb = (const float*)ptr; // cast to const float* to be safe. in exec_ops() local
1005 uint8_t* rgb = (uint8_t*)dst + 3*i; in exec_ops() local
1043 uint16_t* rgb = (uint16_t*)ptr; // for this cast to uint16_t* to be safe. in exec_ops() local
1083 uint16_t* rgb = (uint16_t*)ptr; // for this cast to uint16_t* to be safe. in exec_ops() local
[all …]
/external/pdfium/core/fpdfapi/page/
Dcpdf_colorstate.cpp32 void CPDF_ColorState::SetFillRGB(uint32_t rgb) { in SetFillRGB()
40 void CPDF_ColorState::SetStrokeRGB(uint32_t rgb) { in SetStrokeRGB()
124 uint32_t& rgb, in SetColor()
/external/libdrm/tests/util/
Dpattern.c63 #define MAKE_RGBA(rgb, r, g, b, a) \ argument
69 #define MAKE_RGB24(rgb, r, g, b) \ argument
275 static void fill_smpte_rgb16(const struct util_rgb_info *rgb, void *mem, in fill_smpte_rgb16()
336 static void fill_smpte_rgb24(const struct util_rgb_info *rgb, void *mem, in fill_smpte_rgb24()
399 static void fill_smpte_rgb32(const struct util_rgb_info *rgb, void *mem, in fill_smpte_rgb32()
674 const struct util_rgb_info *rgb = &info->rgb; in fill_tiles_rgb16() local
700 const struct util_rgb_info *rgb = &info->rgb; in fill_tiles_rgb24() local
722 const struct util_rgb_info *rgb = &info->rgb; in fill_tiles_rgb32() local
/external/deqp/external/openglcts/modules/common/
DglcBlendEquationAdvancedTests.cpp166 static tcu::Vec4 Blend(const tcu::Vec4& rgb, const tcu::Vec4& src, const tcu::Vec4& dst) in Blend()
176 tcu::Vec4 rgb = src * dst; in BlendMultiply() local
183 tcu::Vec4 rgb = src + dst - src * dst; in BlendScreen() local
198 tcu::Vec4 rgb(Overlay(src[0], dst[0]), Overlay(src[1], dst[1]), Overlay(src[2], dst[2]), 0.f); in BlendOverlay() local
205 tcu::Vec4 rgb(de::min(src[0], dst[0]), de::min(src[1], dst[1]), de::min(src[2], dst[2]), 0.f); in BlendDarken() local
212 tcu::Vec4 rgb(de::max(src[0], dst[0]), de::max(src[1], dst[1]), de::max(src[2], dst[2]), 0.f); in BlendLighten() local
229 …tcu::Vec4 rgb(ColorDodge(src[0], dst[0]), ColorDodge(src[1], dst[1]), ColorDodge(src[2], dst[2]), … in BlendColorDodge() local
249 …tcu::Vec4 rgb(ColorBurn(src[0], dst[0]), ColorBurn(src[1], dst[1]), ColorBurn(src[2], dst[2]), 0.f… in BlendColorBurn() local
264 …tcu::Vec4 rgb(HardLight(src[0], dst[0]), HardLight(src[1], dst[1]), HardLight(src[2], dst[2]), 0.f… in BlendHardLight() local
287 …tcu::Vec4 rgb(SoftLight(src[0], dst[0]), SoftLight(src[1], dst[1]), SoftLight(src[2], dst[2]), 0.f… in BlendSoftLight() local
[all …]
/external/pcre/dist2/src/
Dpcre2_extuni.c99 int rgb; in PRIV() local
/external/mesa3d/src/mesa/swrast/
Ds_zoom.c243 const GLubyte (*rgb)[3] = (const GLubyte (*)[3]) src; in zoom_span() local
256 const GLushort (*rgb)[3] = (const GLushort (*)[3]) src; in zoom_span() local
269 const GLfloat (*rgb)[3] = (const GLfloat (*)[3]) src; in zoom_span() local
340 const SWspan *span, const GLvoid *rgb) in _swrast_write_zoomed_rgb_span()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowColor.java32 int rgb = java.awt.Color.HSBtoRGB(hsv[0] / 360, hsv[1], hsv[2]); in HSVToColor() local
/external/tensorflow/tensorflow/examples/android/jni/
Drgb2yuv.cc61 const uint32_t rgb = *in++; in ConvertARGB8888ToYUV420SP() local
84 const uint32_t rgb = *in++; in ConvertRGB565ToYUV420SP() local
/external/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_pair_translate.c132 static void src_uses(struct rc_src_register src, unsigned int * rgb, in src_uses()
192 unsigned int rgb = 0; in set_pair_instruction() local
/external/skqp/experimental/docs/
Dutilities.js22 function rgb(r, g, b) { function
/external/skia/experimental/docs/
Dutilities.js22 function rgb(r, g, b) { function
/external/pdfium/xfa/fxfa/parser/
Dcxfa_stipple.cpp64 FX_COLORREF rgb; in Draw() local
/external/pdfium/core/fxge/
Dfx_dib.h74 #define FXSYS_GetRValue(rgb) ((rgb)&0xff) argument
75 #define FXSYS_GetGValue(rgb) (((rgb) >> 8) & 0xff) argument
76 #define FXSYS_GetBValue(rgb) (((rgb) >> 16) & 0xff) argument
/external/pdfium/core/fxge/dib/
Dfx_dib_main.cpp87 uint32_t ArgbEncode(int a, FX_COLORREF rgb) { in ArgbEncode()
/external/webp/src/dsp/
Dyuv_sse41.c110 uint8_t* const rgb) { in PlanarTo24b_SSE41()
291 const uint8_t* const rgb, __m128i* const out /*out[6]*/) { in RGB24PackedToPlanar_SSE41()
335 const uint32_t* const argb, __m128i* const rgb /*in[6]*/) { in RGB32PackedToPlanar_SSE41()
408 static void ConvertRGB24ToY_SSE41(const uint8_t* rgb, uint8_t* y, int width) { in ConvertRGB24ToY_SSE41()
480 __m128i Y0, Y1, rgb[6]; in ConvertARGBToY_SSE41() local
510 __m128i rgb[6], U0, V0, U1, V1; in ConvertARGBToUV_SSE41() local
571 static void ConvertRGBA32ToUV_SSE41(const uint16_t* rgb, in ConvertRGBA32ToUV_SSE41()
Dupsampling_mips_dsp_r2.c50 static WEBP_INLINE void YuvToRgb(int y, int u, int v, uint8_t* const rgb) { in YuvToRgb()
64 static WEBP_INLINE void YuvToRgb565(int y, int u, int v, uint8_t* const rgb) { in YuvToRgb565()
/external/skqp/src/compute/color/
Dcolor.c25 color_rgb32_to_rgba_f32(float rgba[4], const uint32_t rgb, const float opacity) in color_rgb32_to_rgba_f32()
/external/skia/src/compute/color/
Dcolor.c25 color_rgb32_to_rgba_f32(float rgba[4], const uint32_t rgb, const float opacity) in color_rgb32_to_rgba_f32()
/external/u-boot/drivers/video/
Dtegra.c343 int rgb; in tegra_lcd_ofdata_to_platdata() local
396 int rgb; in tegra_lcd_bind() local
/external/pdfium/testing/image_diff/
Dimage_diff_png.cpp74 unsigned char* rgb, in ConvertBGRtoRGB()
85 void ConvertRGBAtoRGB(const unsigned char* rgba, in ConvertRGBAtoRGB()
150 void ConvertRGBtoRGBA(const unsigned char* rgb, in ConvertRGBtoRGBA()
164 void ConvertRGBtoBGRA(const unsigned char* rgb, in ConvertRGBtoBGRA()
426 unsigned char* rgb, in ConvertBGRAtoRGB()

12345