Home
last modified time | relevance | path

Searched refs:blue (Results 1 – 25 of 1185) sorted by relevance

12345678910>>...48

/external/ImageMagick/MagickCore/
Dgem.c89 const double luma,double *red,double *green,double *blue) in ConvertHCLToRGB() argument
105 assert(blue != (double *) NULL); in ConvertHCLToRGB()
150 *blue=QuantumRange*(b+m); in ConvertHCLToRGB()
182 const double luma,double *red,double *green,double *blue) in ConvertHCLpToRGB() argument
199 assert(blue != (double *) NULL); in ConvertHCLpToRGB()
256 *blue=QuantumRange*(z*b+m); in ConvertHCLpToRGB()
287 const double brightness,double *red,double *green,double *blue) in ConvertHSBToRGB() argument
301 assert(blue != (double *) NULL); in ConvertHSBToRGB()
306 *blue=(*red); in ConvertHSBToRGB()
321 *blue=QuantumRange*p; in ConvertHSBToRGB()
[all …]
Dcolorspace.c173 const double blue,double *cyan,double *magenta,double *yellow) in ConvertRGBToCMY() argument
177 *yellow=QuantumScale*(QuantumRange-blue); in ConvertRGBToCMY()
189 const double blue,double *L,double *M,double *S) in ConvertRGBToLMS() argument
196 ConvertRGBToXYZ(red,green,blue,&X,&Y,&Z); in ConvertRGBToLMS()
201 const double blue,double *L,double *a,double *b) in ConvertRGBToLab() argument
208 ConvertRGBToXYZ(red,green,blue,&X,&Y,&Z); in ConvertRGBToLab()
213 const double blue,double *L,double *u,double *v) in ConvertRGBToLuv() argument
220 ConvertRGBToXYZ(red,green,blue,&X,&Y,&Z); in ConvertRGBToLuv()
225 const double blue,double *low_x,double *low_y,double *cap_Y) in ConvertRGBToxyY() argument
233 ConvertRGBToXYZ(red,green,blue,&X,&Y,&Z); in ConvertRGBToxyY()
[all …]
Dcolorspace-private.h36 pixel->blue=((QuantumRange-(QuantumScale*pixel->blue*(QuantumRange- in ConvertCMYKToRGB()
44 blue, in ConvertRGBToCMYK() local
55 blue=QuantumScale*pixel->blue; in ConvertRGBToCMYK()
61 blue=QuantumScale*DecodePixelGamma(pixel->blue); in ConvertRGBToCMYK()
65 (fabs((double) blue) < MagickEpsilon)) in ConvertRGBToCMYK()
72 yellow=(MagickRealType) (1.0-blue); in ConvertRGBToCMYK()
84 pixel->blue=QuantumRange*yellow; in ConvertRGBToCMYK()
Denhance.c928 pixel.blue=clut_map[ScaleQuantumToMap(ClampToQuantum( in ClutImage()
929 pixel.blue))].blue; in ClutImage()
1028 blue; in ColorDecisionListImage() member
1092 color_correction.blue.slope=1.0; in ColorDecisionListImage()
1093 color_correction.blue.offset=0.0; in ColorDecisionListImage()
1094 color_correction.blue.power=1.0; in ColorDecisionListImage()
1129 color_correction.blue.slope=StringToDouble(token, in ColorDecisionListImage()
1162 color_correction.blue.offset=StringToDouble(token, in ColorDecisionListImage()
1194 color_correction.blue.power=StringToDouble(token, in ColorDecisionListImage()
1235 " color_correction.blue.slope: %g",color_correction.blue.slope); in ColorDecisionListImage()
[all …]
Dfeature.c700 grays[i].blue=(~0U); in GetImageFeatures()
732 grays[ScaleQuantumToMap(GetPixelBlue(image,p))].blue= in GetImageFeatures()
758 if (grays[i].blue != ~0U) in GetImageFeatures()
759 grays[gray.blue++].blue=grays[i].blue; in GetImageFeatures()
773 if (gray.blue > number_grays) in GetImageFeatures()
774 number_grays=gray.blue; in GetImageFeatures()
962 while (grays[u].blue != ScaleQuantumToMap(GetPixelBlue(image,p))) in GetImageFeatures()
964 … while (grays[v].blue != ScaleQuantumToMap(GetPixelBlue(image,p+offset*GetPixelChannels(image)))) in GetImageFeatures()
966 cooccurrence[u][v].direction[i].blue++; in GetImageFeatures()
967 cooccurrence[v][u].direction[i].blue++; in GetImageFeatures()
[all …]
/external/skqp/src/codec/
DSkMaskSwizzler.cpp23 uint8_t blue = masks->getBlue(p); in swizzle_mask16_to_rgba_opaque() local
24 dstPtr[i] = SkPackARGB_as_RGBA(0xFF, red, green, blue); in swizzle_mask16_to_rgba_opaque()
40 uint8_t blue = masks->getBlue(p); in swizzle_mask16_to_bgra_opaque() local
41 dstPtr[i] = SkPackARGB_as_BGRA(0xFF, red, green, blue); in swizzle_mask16_to_bgra_opaque()
57 uint8_t blue = masks->getBlue(p); in swizzle_mask16_to_rgba_unpremul() local
59 dstPtr[i] = SkPackARGB_as_RGBA(alpha, red, green, blue); in swizzle_mask16_to_rgba_unpremul()
75 uint8_t blue = masks->getBlue(p); in swizzle_mask16_to_bgra_unpremul() local
77 dstPtr[i] = SkPackARGB_as_BGRA(alpha, red, green, blue); in swizzle_mask16_to_bgra_unpremul()
93 uint8_t blue = masks->getBlue(p); in swizzle_mask16_to_rgba_premul() local
95 dstPtr[i] = premultiply_argb_as_rgba(alpha, red, green, blue); in swizzle_mask16_to_rgba_premul()
[all …]
DSkMasks.cpp134 masks.blue &= (1 << bitsPerPixel) - 1; in CreateMasks()
139 if (((masks.red & masks.green) | (masks.red & masks.blue) | in CreateMasks()
140 (masks.red & masks.alpha) | (masks.green & masks.blue) | in CreateMasks()
141 (masks.green & masks.alpha) | (masks.blue & masks.alpha)) != 0) { in CreateMasks()
148 const MaskInfo blue = process_mask(masks.blue, bitsPerPixel); in CreateMasks() local
151 return new SkMasks(red, green, blue, alpha); in CreateMasks()
156 const MaskInfo& blue, const MaskInfo& alpha) in SkMasks() argument
159 , fBlue(blue) in SkMasks()
/external/skia/src/codec/
DSkMaskSwizzler.cpp23 uint8_t blue = masks->getBlue(p); in swizzle_mask16_to_rgba_opaque() local
24 dstPtr[i] = SkPackARGB_as_RGBA(0xFF, red, green, blue); in swizzle_mask16_to_rgba_opaque()
40 uint8_t blue = masks->getBlue(p); in swizzle_mask16_to_bgra_opaque() local
41 dstPtr[i] = SkPackARGB_as_BGRA(0xFF, red, green, blue); in swizzle_mask16_to_bgra_opaque()
57 uint8_t blue = masks->getBlue(p); in swizzle_mask16_to_rgba_unpremul() local
59 dstPtr[i] = SkPackARGB_as_RGBA(alpha, red, green, blue); in swizzle_mask16_to_rgba_unpremul()
75 uint8_t blue = masks->getBlue(p); in swizzle_mask16_to_bgra_unpremul() local
77 dstPtr[i] = SkPackARGB_as_BGRA(alpha, red, green, blue); in swizzle_mask16_to_bgra_unpremul()
93 uint8_t blue = masks->getBlue(p); in swizzle_mask16_to_rgba_premul() local
95 dstPtr[i] = premultiply_argb_as_rgba(alpha, red, green, blue); in swizzle_mask16_to_rgba_premul()
[all …]
/external/slf4j/slf4j-nop/src/test/java/org/slf4j/
DInvocationTest.java95 Marker blue = MarkerFactory.getMarker("BLUE"); in testMarker() local
96 logger.debug(blue, "hello"); in testMarker()
97 logger.info(blue, "hello"); in testMarker()
98 logger.warn(blue, "hello"); in testMarker()
99 logger.error(blue, "hello"); in testMarker()
101 logger.debug(blue, "hello {}", "world"); in testMarker()
102 logger.info(blue, "hello {}", "world"); in testMarker()
103 logger.warn(blue, "hello {}", "world"); in testMarker()
104 logger.error(blue, "hello {}", "world"); in testMarker()
106 logger.debug(blue, "hello {} and {} ", "world", "universe"); in testMarker()
[all …]
/external/slf4j/slf4j-jcl/src/test/java/org/slf4j/
DInvocationTest.java101 Marker blue = MarkerFactory.getMarker("BLUE"); in testMarker() local
102 logger.debug(blue, "hello"); in testMarker()
103 logger.info(blue, "hello"); in testMarker()
104 logger.warn(blue, "hello"); in testMarker()
105 logger.error(blue, "hello"); in testMarker()
107 logger.debug(blue, "hello {}", "world"); in testMarker()
108 logger.info(blue, "hello {}", "world"); in testMarker()
109 logger.warn(blue, "hello {}", "world"); in testMarker()
110 logger.error(blue, "hello {}", "world"); in testMarker()
112 logger.debug(blue, "hello {} and {} ", "world", "universe"); in testMarker()
[all …]
/external/slf4j/slf4j-simple/src/test/java/org/slf4j/
DInvocationTest.java107 Marker blue = MarkerFactory.getMarker("BLUE"); in testMarker() local
108 logger.debug(blue, "hello"); in testMarker()
109 logger.info(blue, "hello"); in testMarker()
110 logger.warn(blue, "hello"); in testMarker()
111 logger.error(blue, "hello"); in testMarker()
113 logger.debug(blue, "hello {}", "world"); in testMarker()
114 logger.info(blue, "hello {}", "world"); in testMarker()
115 logger.warn(blue, "hello {}", "world"); in testMarker()
116 logger.error(blue, "hello {}", "world"); in testMarker()
118 logger.debug(blue, "hello {} and {} ", "world", "universe"); in testMarker()
[all …]
/external/swiftshader/third_party/PowerVR_SDK/Tools/
DPVRTDecompress.cpp37 PVRTuint8 red,green,blue,alpha; member
42 PVRTint32 red,green,blue,alpha; member
71 colour.blue = (PVRTuint8)(u32ColourData & 0x1e) | ((u32ColourData & 0x1e) >> 4); // 4->5 bits in getColourA()
79 …colour.blue = (PVRTuint8)((u32ColourData & 0xe) << 1) | ((u32ColourData & 0xe) >> 2); // 3->… in getColourA()
101 colour.blue = (PVRTuint8)((u32ColourData & 0x1f0000) >> 16); // 5->5 bits in getColourB()
109 …colour.blue = (PVRTuint8)(((u32ColourData & 0xf0000) >> 15) | ((u32ColourData & 0xf0000) >> … in getColourB()
132 Pixel128S hP = {(PVRTint32)P.red,(PVRTint32)P.green,(PVRTint32)P.blue,(PVRTint32)P.alpha}; in interpolateColours()
133 Pixel128S hQ = {(PVRTint32)Q.red,(PVRTint32)Q.green,(PVRTint32)Q.blue,(PVRTint32)Q.alpha}; in interpolateColours()
134 Pixel128S hR = {(PVRTint32)R.red,(PVRTint32)R.green,(PVRTint32)R.blue,(PVRTint32)R.alpha}; in interpolateColours()
135 Pixel128S hS = {(PVRTint32)S.red,(PVRTint32)S.green,(PVRTint32)S.blue,(PVRTint32)S.alpha}; in interpolateColours()
[all …]
/external/slf4j/slf4j-log4j12/src/test/java/org/slf4j/
DInvocationTest.java123 Marker blue = MarkerFactory.getMarker("BLUE"); in testMarker() local
124 logger.trace(blue, "hello"); in testMarker()
125 logger.debug(blue, "hello"); in testMarker()
126 logger.info(blue, "hello"); in testMarker()
127 logger.warn(blue, "hello"); in testMarker()
128 logger.error(blue, "hello"); in testMarker()
130 logger.debug(blue, "hello {}", "world"); in testMarker()
131 logger.info(blue, "hello {}", "world"); in testMarker()
132 logger.warn(blue, "hello {}", "world"); in testMarker()
133 logger.error(blue, "hello {}", "world"); in testMarker()
[all …]
/external/python/cpython3/Tools/pynche/
DDetailsViewer.py200 blue = self.__blue + delta
201 tie.append(blue)
203 blue = self.__blue
207 if red < 0 or green < 0 or blue < 0 or \
208 red > 255 or green > 255 or blue > 255:
210 red, green, blue = self.__red, self.__green, self.__blue
216 if blue < 0:
217 blue += 256
222 if blue > 255:
223 blue -= 256
[all …]
DStripViewer.py63 def constant_red_generator(numchips, red, green, blue): argument
68 def constant_green_generator(numchips, red, green, blue): argument
73 def constant_blue_generator(numchips, red, green, blue): argument
75 return list(zip(seq, seq, [blue] * numchips))
78 def constant_cyan_generator(numchips, red, green, blue): argument
80 return list(zip(seq, [green] * numchips, [blue] * numchips))
83 def constant_magenta_generator(numchips, red, green, blue): argument
85 return list(zip([red] * numchips, seq, [blue] * numchips))
88 def constant_yellow_generator(numchips, red, green, blue): argument
248 red, green, blue = ColorDB.rrggbb_to_triplet(color)
[all …]
/external/python/cpython2/Tools/pynche/
DDetailsViewer.py200 blue = self.__blue + delta
201 tie.append(blue)
203 blue = self.__blue
207 if red < 0 or green < 0 or blue < 0 or \
208 red > 255 or green > 255 or blue > 255:
210 red, green, blue = self.__red, self.__green, self.__blue
216 if blue < 0:
217 blue += 256
222 if blue > 255:
223 blue -= 256
[all …]
DStripViewer.py63 def constant_red_generator(numchips, red, green, blue): argument
68 def constant_green_generator(numchips, red, green, blue): argument
73 def constant_blue_generator(numchips, red, green, blue): argument
75 return map(None, seq, seq, [blue] * numchips)
78 def constant_cyan_generator(numchips, red, green, blue): argument
80 return map(None, seq, [green] * numchips, [blue] * numchips)
83 def constant_magenta_generator(numchips, red, green, blue): argument
85 return map(None, [red] * numchips, seq, [blue] * numchips)
88 def constant_yellow_generator(numchips, red, green, blue): argument
248 red, green, blue = ColorDB.rrggbb_to_triplet(color)
[all …]
/external/cldr/tools/java/org/unicode/cldr/tool/
Dkeyboards.css6 border: 1px solid blue;
12 border: 1px solid blue;
19 border: 1px solid blue;
26 border: 1px solid blue;
32 border: 1px solid blue;
39 border: 1px solid blue;
47 border: 1px solid blue;
55 border: 1px solid blue;
63 border: 1px solid blue;
/external/slf4j/slf4j-jdk14/src/test/java/org/slf4j/
DInvocationTest.java128 Marker blue = MarkerFactory.getMarker("BLUE"); in testMarker() local
129 logger.debug(blue, "hello"); in testMarker()
130 logger.info(blue, "hello"); in testMarker()
131 logger.warn(blue, "hello"); in testMarker()
132 logger.error(blue, "hello"); in testMarker()
134 logger.debug(blue, "hello {}", "world"); in testMarker()
135 logger.info(blue, "hello {}", "world"); in testMarker()
136 logger.warn(blue, "hello {}", "world"); in testMarker()
137 logger.error(blue, "hello {}", "world"); in testMarker()
139 logger.debug(blue, "hello {} and {} ", "world", "universe"); in testMarker()
[all …]
/external/python/cpython2/Tools/pynche/X/
Drgb.txt34 240 248 255 alice blue
65 25 25 112 midnight blue
68 0 0 128 navy blue
70 100 149 237 cornflower blue
72 72 61 139 dark slate blue
74 106 90 205 slate blue
76 123 104 238 medium slate blue
78 132 112 255 light slate blue
80 0 0 205 medium blue
82 65 105 225 royal blue
[all …]
/external/python/cpython3/Tools/pynche/X/
Drgb.txt34 240 248 255 alice blue
65 25 25 112 midnight blue
68 0 0 128 navy blue
70 100 149 237 cornflower blue
72 72 61 139 dark slate blue
74 106 90 205 slate blue
76 123 104 238 medium slate blue
78 132 112 255 light slate blue
80 0 0 205 medium blue
82 65 105 225 royal blue
[all …]
/external/skia/tools/doxygen/
Dcustomdoxygen.css4 --blue: rgb(0,114,178);
11 --light-blue: rgb(128,185,217);
19 --dark-blue: rgb(0,65,101);
30 color: var(--blue);
39 color: var(--dark-blue);
44 border: 1px solid var(--light-blue);
48 color: var(--blue);
52 color: var(--blue);
66 color: var(--blue);
70 color: var(--blue);
[all …]
/external/slf4j/slf4j-api/src/test/java/org/slf4j/
DBasicMarkerTest.java50 final Marker blue; field in BasicMarkerTest
61 blue = factory.getMarker(BLUE_STR); in BasicMarkerTest()
65 comp.add(blue); in BasicMarkerTest()
73 assertEquals(BLUE_STR, blue.getName()); in testPrimitive()
74 assertTrue(blue.contains(blue)); in testPrimitive()
78 assertEquals(blue, blue2); in testPrimitive()
79 assertTrue(blue.contains(blue2)); in testPrimitive()
80 assertTrue(blue2.contains(blue)); in testPrimitive()
84 assertTrue(blue.contains(BLUE_STR)); in testPrimitiveByName()
89 assertTrue(comp.contains(blue)); in testComposite()
[all …]
/external/ImageMagick/tests/
Dvalidate.c96 const double intensity,double *red,double *green,double *blue) in ConvertHSIToRGB() argument
105 *blue=intensity*(1.0-saturation); in ConvertHSIToRGB()
108 *green=3.0*intensity-*red-*blue; in ConvertHSIToRGB()
117 *blue=3.0*intensity-*red-*green; in ConvertHSIToRGB()
123 *blue=intensity*(1.0+saturation*cos(h*(MagickPI/180.0))/cos((60.0-h)* in ConvertHSIToRGB()
125 *red=3.0*intensity-*green-*blue; in ConvertHSIToRGB()
129 *blue*=QuantumRange; in ConvertHSIToRGB()
133 const double blue,double *hue,double *saturation,double *intensity) in ConvertRGBToHSI() argument
139 *intensity=(QuantumScale*red+QuantumScale*green+QuantumScale*blue)/3.0; in ConvertRGBToHSI()
147 QuantumScale*blue))/(*intensity); in ConvertRGBToHSI()
[all …]
/external/skqp/docs/
DSkColor4f_Reference.bmh17 fA Alpha is may be greater or smaller than fG green, fB blue, or fR red.
21 fA Alpha is equal to or larger than fG green, fB blue, and fR red. The values
38 #Line # blue component ##
39 Single precision float for blue ranges from no blue (0.0) to full blue (1.0).
144 SkDebugf("red=%g green=%g blue=%g alpha=%g\n", color.fR, color.fG, color.fB, color.fA);
148 red=0.266667 green=0.533333 blue=0.8 alpha=0.533333
169 SkDebugf("red=%g green=%g blue=%g alpha=%g\n", color.fR, color.fG, color.fB, color.fA);
174 red=0.266667 green=0.533333 blue=0.8 alpha=0.533333
246 uint8_t red = 77, green = 101, blue = 153, alpha = 43;
247 SkColor argb = SkColorSetARGB(alpha, red, green, blue);
[all …]

12345678910>>...48