/external/opencv3/modules/cudev/test/ |
D | test_color_cvt.cu | 85 CVT_COLOR_TEST(BGR, RGB, 3, 3) 89 CVT_COLOR_TEST(BGRA, RGB, 4, 3) 95 CVT_COLOR_TEST(RGB, GRAY, 3, 1) 104 CVT_COLOR_TEST(RGB, YUV, 3, 3) 107 CVT_COLOR_TEST(YUV, RGB, 3, 3) 112 CVT_COLOR_TEST(RGB, YCrCb, 3, 3) 115 CVT_COLOR_TEST(YCrCb, RGB, 3, 3) 120 CVT_COLOR_TEST(RGB, XYZ, 3, 3) 123 CVT_COLOR_TEST(XYZ, RGB, 3, 3) 128 CVT_COLOR_TEST(RGB, HSV, 3, 3) [all …]
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
D | radeon_program_pair.c | 53 if (rgb && pair->RGB.Src[RC_PAIR_PRESUB_SRC].Used in rc_pair_alloc_source() 54 && index != pair->RGB.Src[RC_PAIR_PRESUB_SRC].Index) { in rc_pair_alloc_source() 67 if (pair->RGB.Src[i].Used) { in rc_pair_alloc_source() 68 if (pair->RGB.Src[i].File != file || in rc_pair_alloc_source() 69 pair->RGB.Src[i].Index != index) { in rc_pair_alloc_source() 102 pair->RGB.Src[candidate].Used = 1; in rc_pair_alloc_source() 103 pair->RGB.Src[candidate].File = file; in rc_pair_alloc_source() 104 pair->RGB.Src[candidate].Index = index; in rc_pair_alloc_source() 110 pair->RGB.Src[i].Used = 1; in rc_pair_alloc_source() 158 pair->RGB.Src[RC_PAIR_PRESUB_SRC].Index); in pair_foreach_source_callback() [all …]
|
D | radeon_program_print.c | 345 unsigned spaces = update_branch_depth(inst->RGB.Opcode != RC_OPCODE_NOP ? in rc_print_pair_instruction() 346 inst->RGB.Opcode : inst->Alpha.Opcode, branch_depth); in rc_print_pair_instruction() 352 if (inst->RGB.Src[src].Used) { in rc_print_pair_instruction() 356 rc_print_register(f, inst->RGB.Src[src].File, inst->RGB.Src[src].Index, 0); in rc_print_pair_instruction() 367 if(inst->RGB.Src[RC_PAIR_PRESUB_SRC].Used) { in rc_print_pair_instruction() 370 inst->RGB.Src[RC_PAIR_PRESUB_SRC].Index)); in rc_print_pair_instruction() 382 if (inst->RGB.Opcode != RC_OPCODE_NOP) { in rc_print_pair_instruction() 383 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->RGB.Opcode); in rc_print_pair_instruction() 388 fprintf(f, " %s%s", opcode->Name, inst->RGB.Saturate ? "_SAT" : ""); in rc_print_pair_instruction() 389 if (inst->RGB.WriteMask) in rc_print_pair_instruction() [all …]
|
D | radeon_pair_schedule.c | 257 else if (sinst->Instruction->U.P.RGB.Opcode == RC_OPCODE_NOP) in instruction_ready() 306 if (!sinst->Instruction->U.P.RGB.OutputWriteMask && in score_no_output() 310 RGB.OutputWriteMask in score_no_output() 341 sinst->Score += sinst->Instruction->U.P.RGB.Src[src_idx].Used + in calc_score_r300() 517 dst_sub = &dst_full->RGB; in merge_presub_sources() 529 info = rc_get_opcode_info(dst_full->RGB.Opcode); in merge_presub_sources() 577 if (!(rc_source_type_swz(dst_full->RGB.Arg[arg].Swizzle) in merge_presub_sources() 582 if (dst_full->RGB.Arg[arg].Source == srcp_src) in merge_presub_sources() 583 dst_full->RGB.Arg[arg].Source = free_source; in merge_presub_sources() 587 else if(dst_full->RGB.Arg[arg].Source == free_source in merge_presub_sources() [all …]
|
D | r300_fragprog_emit.c | 164 code->alu.inst[ip].rgb_inst = translate_rgb_opcode(c, inst->RGB.Opcode); in emit_alu() 169 unsigned int src = use_source(code, inst->RGB.Src[j]); in emit_alu() 171 if (inst->RGB.Src[j].Index >= R300_PFS_NUM_TEMP_REGS) in emit_alu() 183 arg = r300FPTranslateRGBSwizzle(inst->RGB.Arg[j].Source, inst->RGB.Arg[j].Swizzle); in emit_alu() 184 arg |= inst->RGB.Arg[j].Abs << 6; in emit_alu() 185 arg |= inst->RGB.Arg[j].Negate << 5; in emit_alu() 195 if (inst->RGB.Src[RC_PAIR_PRESUB_SRC].Used) { in emit_alu() 196 switch(inst->RGB.Src[RC_PAIR_PRESUB_SRC].Index) { in emit_alu() 241 if (inst->RGB.Saturate) in emit_alu() 246 if (inst->RGB.WriteMask) { in emit_alu() [all …]
|
D | radeon_pair_translate.c | 163 pair->RGB.Opcode = RC_OPCODE_REPL_ALPHA; in set_pair_instruction() 165 pair->RGB.Opcode = inst->Opcode; in set_pair_instruction() 167 pair->RGB.Saturate = 1; in set_pair_instruction() 196 pair->RGB.Src[i].File = in set_pair_instruction() 198 pair->RGB.Src[i].Index = in set_pair_instruction() 200 pair->RGB.Src[i].Used = 1; in set_pair_instruction() 241 pair->RGB.Arg[i].Source = source; in set_pair_instruction() 242 pair->RGB.Arg[i].Swizzle = in set_pair_instruction() 244 pair->RGB.Arg[i].Abs = inst->SrcReg[i].Abs; in set_pair_instruction() 245 …pair->RGB.Arg[i].Negate = !!(srcmask & inst->SrcReg[i].Negate & (RC_MASK_X | RC_MASK_Y | RC_MASK_Z… in set_pair_instruction() [all …]
|
D | r500_fragprog_emit.c | 161 unsigned int t = inst->RGB.Arg[arg].Source; in translate_arg_rgb() 163 t |= inst->RGB.Arg[arg].Negate << 11; in translate_arg_rgb() 164 t |= inst->RGB.Arg[arg].Abs << 12; in translate_arg_rgb() 167 t |= fix_hw_swizzle(GET_SWZ(inst->RGB.Arg[arg].Swizzle, comp)) << (3*comp + 2); in translate_arg_rgb() 248 if (inst->RGB.Opcode == RC_OPCODE_DDX || inst->Alpha.Opcode == RC_OPCODE_DDX || in emit_paired() 249 inst->RGB.Opcode == RC_OPCODE_DDY || inst->Alpha.Opcode == RC_OPCODE_DDY) { in emit_paired() 255 code->inst[ip].inst5 = translate_rgb_op(c, inst->RGB.Opcode); in emit_paired() 258 if (inst->RGB.OutputWriteMask || inst->Alpha.OutputWriteMask || inst->Alpha.DepthWriteMask) { in emit_paired() 269 code->inst[ip].inst0 |= (inst->RGB.WriteMask << 11); in emit_paired() 271 code->inst[ip].inst0 |= (inst->RGB.OutputWriteMask << 15) | (inst->Alpha.OutputWriteMask << 18); in emit_paired() [all …]
|
D | radeon_dataflow.c | 76 inst->RGB.Src[src].Index); in pair_get_src_refmasks() 112 GET_SWZ(inst->RGB.Arg[arg].Swizzle, chan); in reads_pair() 116 inst->RGB.Arg[arg].Source); in reads_pair() 123 if (inst->RGB.Src[src].Used && (refmasks[src] & RC_MASK_XYZ)) in reads_pair() 124 cb(userdata, fullinst, inst->RGB.Src[src].File, inst->RGB.Src[src].Index, in reads_pair() 157 U.P.RGB.Src[RC_PAIR_PRESUB_SRC].Index; in pair_sub_for_all_args() 158 src_array = fullinst->U.P.RGB.Src; in pair_sub_for_all_args() 230 pair_sub_for_all_args(inst, &inst->U.P.RGB, cb, userdata); in rc_pair_for_all_reads_arg() 272 if (inst->RGB.WriteMask) in writes_pair() 273 cb(userdata, fullinst, RC_FILE_TEMPORARY, inst->RGB.DestIndex, inst->RGB.WriteMask); in writes_pair() [all …]
|
D | radeon_pair_dead_sources.c | 28 inst->U.P.RGB.Src[sub->Arg[i].Source].Used = 1; in mark_used() 53 inst->U.P.RGB.Src[i].Used = 0; in rc_pair_remove_dead_sources() 56 mark_used(inst, &inst->U.P.RGB); in rc_pair_remove_dead_sources() 59 mark_used_presub(&inst->U.P.RGB); in rc_pair_remove_dead_sources()
|
/external/giflib/ |
D | quantize.c | 28 GifByteType RGB[3]; member 82 ColorArrayEntries[i].RGB[0] = i >> (2 * BITS_PER_PRIM_COLOR); in GifQuantizeBuffer() 83 ColorArrayEntries[i].RGB[1] = (i >> BITS_PER_PRIM_COLOR) & in GifQuantizeBuffer() 85 ColorArrayEntries[i].RGB[2] = i & MAX_PRIM_COLOR; in GifQuantizeBuffer() 147 Red += QuantizedColor->RGB[0]; in GifQuantizeBuffer() 148 Green += QuantizedColor->RGB[1]; in GifQuantizeBuffer() 149 Blue += QuantizedColor->RGB[2]; in GifQuantizeBuffer() 274 MaxColor = QuantizedColor->RGB[SortRGBAxis]; /* Max. of first half */ in SubdivColorMap() 276 MinColor = QuantizedColor->Pnext->RGB[SortRGBAxis]; /* of second */ in SubdivColorMap() 320 int hash1 = entry1->RGB[SortRGBAxis] * 256 * 256 in SortCmpRtn() [all …]
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkImageUtil.cpp | 148 case FMT_CASE(RGB, UNORM_SHORT_565): return VK_FORMAT_R5G6B5_UNORM_PACK16; in mapTextureFormat() 170 case FMT_CASE(RGB, UNORM_INT8): return VK_FORMAT_R8G8B8_UNORM; in mapTextureFormat() 171 case FMT_CASE(RGB, SNORM_INT8): return VK_FORMAT_R8G8B8_SNORM; in mapTextureFormat() 172 case FMT_CASE(RGB, UNSIGNED_INT8): return VK_FORMAT_R8G8B8_UINT; in mapTextureFormat() 173 case FMT_CASE(RGB, SIGNED_INT8): return VK_FORMAT_R8G8B8_SINT; in mapTextureFormat() 199 case FMT_CASE(RGB, UNORM_INT16): return VK_FORMAT_R16G16B16_UNORM; in mapTextureFormat() 200 case FMT_CASE(RGB, SNORM_INT16): return VK_FORMAT_R16G16B16_SNORM; in mapTextureFormat() 201 case FMT_CASE(RGB, UNSIGNED_INT16): return VK_FORMAT_R16G16B16_UINT; in mapTextureFormat() 202 case FMT_CASE(RGB, SIGNED_INT16): return VK_FORMAT_R16G16B16_SINT; in mapTextureFormat() 203 case FMT_CASE(RGB, HALF_FLOAT): return VK_FORMAT_R16G16B16_SFLOAT; in mapTextureFormat() [all …]
|
/external/deqp/framework/opengl/ |
D | gluTextureUtil.cpp | 78 case TextureFormat::RGB: format = isInt ? GL_RGB_INTEGER : GL_RGB; break; in getTransferFormat() 152 case FMT_CASE(RGB, UNORM_SHORT_565): return GL_RGB565; in getInternalFormat() 172 case FMT_CASE(RGB, UNORM_INT8): return GL_RGB8; in getInternalFormat() 173 case FMT_CASE(RGB, UNSIGNED_INT_11F_11F_10F_REV): return GL_R11F_G11F_B10F; in getInternalFormat() 174 case FMT_CASE(RGB, FLOAT): return GL_RGB32F; in getInternalFormat() 175 case FMT_CASE(RGB, SIGNED_INT32): return GL_RGB32I; in getInternalFormat() 176 case FMT_CASE(RGB, UNSIGNED_INT32): return GL_RGB32UI; in getInternalFormat() 177 case FMT_CASE(RGB, UNORM_INT16): return GL_RGB16; in getInternalFormat() 178 case FMT_CASE(RGB, SNORM_INT16): return GL_RGB16_SNORM; in getInternalFormat() 179 case FMT_CASE(RGB, HALF_FLOAT): return GL_RGB16F; in getInternalFormat() [all …]
|
/external/pdfium/third_party/lcms2-2.6/src/ |
D | cmscam02.c | 36 cmsFloat64Number RGB[3]; member 105 clr.RGB[0] = (clr.XYZ[0] * 0.7328) + (clr.XYZ[1] * 0.4296) + (clr.XYZ[2] * -0.1624); in XYZtoCAT02() 106 clr.RGB[1] = (clr.XYZ[0] * -0.7036) + (clr.XYZ[1] * 1.6975) + (clr.XYZ[2] * 0.0061); in XYZtoCAT02() 107 clr.RGB[2] = (clr.XYZ[0] * 0.0030) + (clr.XYZ[1] * 0.0136) + (clr.XYZ[2] * 0.9834); in XYZtoCAT02() 119 (pMod->D / pMod -> adoptedWhite.RGB[i])) + in ChromaticAdaptation() 120 (1.0 - pMod->D)) * clr.RGB[i]; in ChromaticAdaptation() 341 clr.RGB[i] = clr.RGBc[i] / in InverseChromaticAdaptation() 342 ((pMod->adoptedWhite.XYZ[1] * pMod->D / pMod->adoptedWhite.RGB[i]) + 1.0 - pMod->D); in InverseChromaticAdaptation() 351 clr.XYZ[0] = (clr.RGB[0] * 1.096124) + (clr.RGB[1] * -0.278869) + (clr.RGB[2] * 0.182745); in CAT02toXYZ() 352 clr.XYZ[1] = (clr.RGB[0] * 0.454369) + (clr.RGB[1] * 0.473533) + (clr.RGB[2] * 0.072098); in CAT02toXYZ() [all …]
|
/external/opencv3/modules/imgproc/test/ |
D | test_cvtyuv.cpp | 6 #undef RGB 10 typedef Vec3b RGB; typedef 37 virtual RGB read(const Mat& rgb, int row, int col) = 0; 48 virtual void write(Mat& rgb, int row, int col, const RGB& val) = 0; 86 void write(Mat& rgb, int row, int col, const RGB& val) in write() 96 void write(Mat& rgb, int row, int col, const RGB& val) in write() 107 void write(Mat& rgb, int row, int col, const RGB& val) in write() 118 void write(Mat& rgb, int row, int col, const RGB& val) in write() 278 RGB read(const Mat& rgb, int row, int col) in read() 280 return rgb.at<RGB>(row, col); in read() [all …]
|
/external/opencv3/modules/imgproc/doc/ |
D | colors.markdown | 7 RGB \f$\leftrightarrow\f$ GRAY 9 Transformations within RGB space like adding/removing the alpha channel, reversing the channel 10 order, conversion to/from 16-bit RGB color (R5:G6:B5 or R5:G5:B5), as well as conversion 12 \f[\text{RGB[A] to Gray:} \quad Y \leftarrow 0.299 \cdot R + 0.587 \cdot G + 0.114 \cdot B\f] 14 \f[\text{Gray to RGB[A]:} \quad R \leftarrow Y, G \leftarrow Y, B \leftarrow Y, A \leftarrow \m… 15 The conversion from a RGB image to gray is done with: 23 RGB \f$\leftrightarrow\f$ CIE XYZ.Rec 709 with D65 white point 38 RGB \f$\leftrightarrow\f$ YCrCb JPEG (or YCC) 52 RGB \f$\leftrightarrow\f$ HSV 71 RGB \f$\leftrightarrow\f$ HLS [all …]
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/ |
D | Utils.java | 32 import org.eclipse.swt.graphics.RGB; 148 static int closest(RGB[] rgbs, int n, RGB rgb) { in closest() 152 RGB rgb2 = rgbs[i]; in closest() 166 RGB rgb; 188 RGB rgb = data.palette.getRGB(pixels[x]); in downSample() 210 RGB[] rgbs = new RGB[n + (mask != null ? 1 : 0)]; in downSample() 214 … data.transparentPixel != -1 ? data.palette.getRGB(data.transparentPixel) : new RGB(255, 255, 255); in downSample() 232 RGB rgb = data.palette.getRGB(pixels[x]); in downSample()
|
/external/clang/test/CodeGenCXX/ |
D | mangle-ms.cpp | 195 typedef double RGB[3]; typedef 196 RGB color1; 198 extern const RGB color2 = {}; 200 extern RGB const color3[5] = {}; 202 extern RGB const ((color4)[5]) = {};
|
/external/mesa3d/src/mesa/drivers/dri/nouveau/ |
D | nv10_state_frag.c | 146 map |= RC_IN_USAGE(RGB); in get_input_mapping() 308 INIT_COMBINER(RGB, ctx, &rc_c, i); in nv10_get_general_combiner() 342 INPUT_SRC(&rc, D, E_TIMES_F, RGB); in nv10_get_final_combiner() 343 INPUT_SRC(&rc, F, SECONDARY_COLOR, RGB); in nv10_get_final_combiner() 348 INPUT_SRC(&rc, C, FOG, RGB); in nv10_get_final_combiner() 357 INPUT_SRC(&rc, B, SPARE0, RGB); in nv10_get_final_combiner() 360 INPUT_SRC(&rc, B, PRIMARY_COLOR, RGB); in nv10_get_final_combiner()
|
/external/mesa3d/docs/OLD/ |
D | MESA_packed_depth_stencil.spec | 91 RGB Color R, G, B components 112 UNSIGNED_BYTE_3_3_2 ubyte 3 RGB 113 UNSIGNED_BYTE_2_3_3_REV ubyte 3 RGB 114 UNSIGNED_SHORT_5_6_5 ushort 3 RGB 115 UNSIGNED_SHORT_5_6_5_REV ushort 3 RGB 177 RGB red green blue
|
/external/webrtc/webrtc/modules/video_render/test/testAPI/ |
D | testAPI.cc | 360 ColorKey.dwColorSpaceHighValue = RGB(0, 0, 0); in TestBitmapText() 361 ColorKey.dwColorSpaceLowValue = RGB(0, 0, 0); in TestBitmapText() 370 RGB(255, 0, 0), RGB(0, 0, 0), 0.25f, 0.1f, 1.0f, in TestBitmapText() 401 ColorKey.dwColorSpaceHighValue = RGB(0,0,0); in TestBitmapText() 402 ColorKey.dwColorSpaceLowValue = RGB(0,0,0); in TestBitmapText() 404 renderModule->SetText(1, NULL, 20, RGB(255,255,255), in TestBitmapText() 405 RGB(0,0,0), 0.0f, 0.0f, 0.0f, 0.0f); in TestBitmapText()
|
/external/libjpeg-turbo/ |
D | CMakeLists.txt | 491 # CC: RGB->RGB565 SAMP: fullsize IDCT: islow ENT: huff 499 # CC: RGB->RGB565 (dithered) SAMP: fullsize IDCT: islow ENT: huff 509 # CC: RGB->YCC SAMP: fullsize/h2v1 FDCT: ifast ENT: 2-pass huff 518 # CC: YCC->RGB SAMP: fullsize/h2v1 fancy IDCT: ifast ENT: huff 525 # CC: YCC->RGB SAMP: h2v1 merged IDCT: ifast ENT: huff 551 # CC: RGB->YCC SAMP: fullsize/h2v2 FDCT: ifast ENT: prog huff 560 # CC: YCC->RGB SAMP: fullsize/h2v2 fancy IDCT: ifast ENT: prog huff 568 # CC: YCC->RGB SAMP: h2v2 merged IDCT: ifast ENT: prog huff 577 # CC: RGB->Gray SAMP: fullsize FDCT: islow ENT: huff 593 # CC: Gray->RGB SAMP: fullsize IDCT: islow ENT: huff [all …]
|
/external/libjpeg-turbo/simd/ |
D | jsimd_arm_neon.S | 1321 vst3.8 {d10, d11, d12}, [RGB]! 1323 vst3.8 {d10[0], d11[0], d12[0]}, [RGB]! 1324 vst3.8 {d10[1], d11[1], d12[1]}, [RGB]! 1325 vst3.8 {d10[2], d11[2], d12[2]}, [RGB]! 1326 vst3.8 {d10[3], d11[3], d12[3]}, [RGB]! 1328 vst3.8 {d10[4], d11[4], d12[4]}, [RGB]! 1329 vst3.8 {d10[5], d11[5], d12[5]}, [RGB]! 1331 vst3.8 {d10[6], d11[6], d12[6]}, [RGB]! 1337 vst4.8 {d10, d11, d12, d13}, [RGB]! 1339 vst4.8 {d10[0], d11[0], d12[0], d13[0]}, [RGB]! [all …]
|
/external/mesa3d/docs/ |
D | MESA_pixmap_colormap.spec | 32 Since Mesa allows RGB rendering into drawables with PseudoColor, 63 The Mesa implementation of GLX allows RGB rendering into X windows and 65 to compute pixel values from RGB values Mesa requires a colormap.
|
D | MESA_ycbcr_texture.spec | 35 There is no support for converting YCbCr images to RGB or vice versa 128 sizes will return zero. The YCbCr colors are converted to RGB during 201 3 September 2003 - further clarify when YCbCr->RGB conversion takes place
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_format_pack.py | 276 src_colorspace = RGB, 277 dst_colorspace = RGB): 285 assert dst_colorspace == RGB 297 assert src_colorspace == RGB 468 src_colorspace = RGB 496 src_colorspace = RGB 536 dst_colorspace = RGB 574 dst_colorspace = RGB
|