Searched refs:rgb (Results 1 - 25 of 96) sorted by relevance

1234

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/palmos/
H A Dcolordlg.cpp77 RGBColorType rgb; local
78 rgb.r = colour.Red();
79 rgb.g = colour.Green();
80 rgb.b = colour.Blue();
81 IndexedColorType i = WinRGBToIndex ( &rgb );
84 &rgb,
90 colour.Set(rgb.r, rgb.g, rgb.b);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dxwddec.c40 uint32_t rgb[3]; local
73 rgb[0] = bytestream2_get_be32u(&gb);
74 rgb[1] = bytestream2_get_be32u(&gb);
75 rgb[2] = bytestream2_get_be32u(&gb);
88 rgb[0], rgb[1], rgb[2]);
176 if (rgb[0] == 0x7C00 && rgb[1] == 0x3E0 && rgb[
[all...]
H A Dxwdenc.c39 uint32_t rgb[3] = { 0 }, bitorder = 0; local
58 rgb[0] = 0xFF;
59 rgb[1] = 0xFF00;
60 rgb[2] = 0xFF0000;
62 rgb[0] = 0xFF0000;
63 rgb[1] = 0xFF00;
64 rgb[2] = 0xFF;
78 rgb[0] = 0xFF0000;
79 rgb[1] = 0xFF00;
80 rgb[
[all...]
H A Dbmp.c43 uint32_t rgb[3] = {0}; local
128 rgb[0] = bytestream_get_le32(&buf);
129 rgb[1] = bytestream_get_le32(&buf);
130 rgb[2] = bytestream_get_le32(&buf);
143 if (rgb[0] == 0xFF000000 && rgb[1] == 0x00FF0000 && rgb[2] == 0x0000FF00)
145 else if (rgb[0] == 0x00FF0000 && rgb[1] == 0x0000FF00 && rgb[
[all...]
H A Dqtrle.c63 uint8_t *rgb = s->frame->data[0]; local
105 rgb[pixel_ptr++] = pi0;
106 rgb[pixel_ptr++] = pi1;
113 bytestream2_get_buffer(&s->g, &rgb[pixel_ptr], rle_code);
126 uint8_t *rgb = s->frame->data[0]; local
150 memcpy(&rgb[pixel_ptr], &pi, num_pixels);
160 rgb[pixel_ptr++] = (x >> 4) & 0x0f;
161 rgb[pixel_ptr++] = x & 0x0f;
164 rgb[pixel_ptr++] = (x >> 6) & 0x03;
165 rgb[pixel_pt
182 uint8_t *rgb = s->frame->data[0]; local
231 uint8_t *rgb = s->frame->data[0]; local
275 uint8_t *rgb = s->frame->data[0]; local
322 uint8_t *rgb = s->frame->data[0]; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dbmp.c51 uint32_t rgb[3]; local
131 rgb[0] = bytestream_get_le32(&buf);
132 rgb[1] = bytestream_get_le32(&buf);
133 rgb[2] = bytestream_get_le32(&buf);
144 rgb[0] = (rgb[0] >> 15) & 3;
145 rgb[1] = (rgb[1] >> 15) & 3;
146 rgb[2] = (rgb[
[all...]
H A Dqtrle.c72 unsigned char *rgb = s->frame.data[0]; local
101 rgb[pixel_ptr++] = pi0;
102 rgb[pixel_ptr++] = pi1;
111 rgb[pixel_ptr++] = s->buf[stream_ptr++];
123 unsigned char *rgb = s->frame.data[0]; local
150 rgb[pixel_ptr++] = pi[i];
159 rgb[pixel_ptr++] = ((s->buf[stream_ptr]) >> 4) & 0x0f;
160 rgb[pixel_ptr++] = (s->buf[stream_ptr++]) & 0x0f;
162 rgb[pixel_ptr++] = ((s->buf[stream_ptr]) >> 6) & 0x03;
163 rgb[pixel_pt
180 unsigned char *rgb = s->frame.data[0]; local
233 unsigned char *rgb = s->frame.data[0]; local
282 unsigned char *rgb = s->frame.data[0]; local
332 unsigned char *rgb = s->frame.data[0]; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/carbon/
H A Dcolordlg.cpp62 info.theColor.color.rgb.red = currentColor.red ;
63 info.theColor.color.rgb.green = currentColor.green ;
64 info.theColor.color.rgb.blue = currentColor.blue ;
68 currentColor.red = info.theColor.color.rgb.red ;
69 currentColor.green = info.theColor.color.rgb.green ;
70 currentColor.blue = info.theColor.color.rgb.blue ;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libswscale/
H A Drgb2rgb.c191 uint16_t rgb, r, g, b; local
194 rgb = *s++;
195 r = rgb & 0xF00;
196 g = rgb & 0x0F0;
197 b = rgb & 0x00F;
226 unsigned rgb = ((const uint16_t*)src)[i]; local
227 ((uint16_t*)dst)[i] = (rgb>>11) | (rgb&0x7E0) | (rgb<<11);
237 unsigned rgb local
286 unsigned rgb = ((const uint16_t*)src)[i]; local
298 unsigned rgb = ((const uint16_t*)src)[i]; local
312 unsigned rgb = s[i]; local
323 register uint8_t rgb; local
[all...]
H A Drgb2rgb_template.c133 register int rgb = *(const uint32_t*)s; s += 4; local
134 *d++ = ((rgb&0xFF)>>3) + ((rgb&0xFC00)>>5) + ((rgb&0xF80000)>>8);
145 register int rgb = *(const uint32_t*)s; s += 4; local
146 *d++ = ((rgb&0xF8)<<8) + ((rgb&0xFC00)>>5) + ((rgb&0xF80000)>>19);
157 register int rgb = *(const uint32_t*)s; s += 4; local
158 *d++ = ((rgb
169 register int rgb = *(const uint32_t*)s; s += 4; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/tests/fate/
H A Dlossless-video.mak1 FATE_LOCO += fate-loco-rgb
2 fate-loco-rgb: CMD = framecrc -i $(SAMPLES)/loco/pig-loco-rgb.avi
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libswscale/
H A Drgb2rgb.c201 uint16_t rgb, r, g, b; local
207 rgb = *s++;
208 r = rgb & 0xF00;
209 g = rgb & 0x0F0;
210 b = rgb & 0x00F;
237 unsigned rgb = ((const uint16_t *)src)[i]; local
238 ((uint16_t *)dst)[i] = (rgb >> 11) | (rgb & 0x7E0) | (rgb << 11);
247 unsigned rgb local
293 unsigned rgb = ((const uint16_t *)src)[i]; local
303 unsigned rgb = ((const uint16_t *)src)[i]; local
316 unsigned rgb = s[i]; local
[all...]
H A Drgb2rgb_template.c130 register int rgb = *(const uint32_t *)s; local
132 *d++ = ((rgb & 0xFF) >> 3) +
133 ((rgb & 0xFC00) >> 5) +
134 ((rgb & 0xF80000) >> 8);
146 register int rgb = *(const uint32_t *)s; local
148 *d++ = ((rgb & 0xF8) << 8) +
149 ((rgb & 0xFC00) >> 5) +
150 ((rgb & 0xF80000) >> 19);
161 register int rgb = *(const uint32_t *)s; local
163 *d++ = ((rgb
177 register int rgb = *(const uint32_t *)s; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/tests/fate/
H A Dlossless-video.mak4 FATE_CLLC += fate-cllc-rgb
5 fate-cllc-rgb: CMD = framecrc -i $(TARGET_SAMPLES)/cllc/sample-cllc-rgb.avi
31 FATE_LOCO += fate-loco-rgb
32 fate-loco-rgb: CMD = framecrc -i $(TARGET_SAMPLES)/loco/pig-loco-rgb.avi
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DMuleColour.h44 CMuleColour(unsigned long rgb) argument
47 Set((rgb & 0xFF), (rgb >> 8) & 0xFF, (rgb >> 16) & 0xFF);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/x11/
H A Dbitmap.cpp1170 unsigned char rgb[3], *pp; local
1202 rgb[0] = pp[2];
1203 rgb[1] = pp[1];
1204 rgb[2] = pp[0];
1207 rgb[0] = palette->palette[pp[0]].r;
1208 rgb[1] = palette->palette[pp[0]].g;
1209 rgb[2] = palette->palette[pp[0]].b;
1212 rgb[0] = pp[1] & 0xf8;
1213 rgb[1] = ((pp[1] & 0x07) << 5) |
1215 rgb[
1248 unsigned char rgb[3], *pp; local
[all...]
H A Dutils.cpp309 void wxHSVToXColor(wxHSV *hsv,XColor *rgb) argument
335 rgb->red = r << 8;
336 rgb->green = g << 8;
337 rgb->blue = b << 8;
340 void wxXColorToHSV(wxHSV *hsv,XColor *rgb) argument
342 int r = rgb->red >> 8;
343 int g = rgb->green >> 8;
344 int b = rgb->blue >> 8;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/
H A Dparseutils.h112 const char *av_get_known_color_name(int color_idx, const uint8_t **rgb);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/include/wx/ogl/
H A Dmfutils.h20 #define GetRValue(rgb) ((unsigned char)(rgb))
21 #define GetGValue(rgb) ((unsigned char)(((int)(rgb)) >> 8))
22 #define GetBValue(rgb) ((unsigned char)((rgb)>>16))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/
H A Dcpia.c1785 static int convert420(unsigned char *yuv, unsigned char *rgb, int out_fmt, argument
1797 r = ((*(rgb+1-linesize)) & 0x7c) << 1;
1798 g = ((*(rgb-linesize)) & 0xe0) >> 4 |
1799 ((*(rgb+1-linesize)) & 0x03) << 6;
1800 b = ((*(rgb-linesize)) & 0x1f) << 3;
1806 *rgb++ = ((LIMIT(g+y) & 0xf8) << 2) | (LIMIT(b+y) >> 3);
1807 *rgb++ = ((LIMIT(r+y) & 0xf8) >> 1) | (LIMIT(g+y) >> 6);
1808 *rgb++ = ((LIMIT(g+y1) & 0xf8) << 2) | (LIMIT(b+y1) >> 3);
1809 *rgb = ((LIMIT(r+y1) & 0xf8) >> 1) | (LIMIT(g+y1) >> 6);
1814 r = (*(rgb
1901 yuvconvert(unsigned char *yuv, unsigned char *rgb, int out_fmt, int in_uyvy, int mmap_kludge) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libswscale/bfin/
H A Dyuv2rgb_bfin.c54 static void bfin_prepare_coefficients(SwsContext *c, int rgb, int masks) argument
67 if (rgb) {
95 ltransform lcscf, int rgb, int masks)
102 bfin_prepare_coefficients(c, rgb, masks);
105 pu = in[1+(1^rgb)];
106 pv = in[1+(0^rgb)];
91 core_yuv420_rgb(SwsContext *c, uint8_t **in, int *instrides, int srcSliceY, int srcSliceH, uint8_t **oplanes, int *outstrides, ltransform lcscf, int rgb, int masks) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libpng/libpng-1.2.50/contrib/gregbook/
H A Drpng2-x.c205 } rgb[] = { variable in typeref:struct:rgb_color
225 static int num_rgb = sizeof(rgb) / sizeof(struct rgb_color);
1110 uch r1_min = rgb[bg[pat].rgb1_min].r;
1111 uch g1_min = rgb[bg[pat].rgb1_min].g;
1112 uch b1_min = rgb[bg[pat].rgb1_min].b;
1113 uch r2_min = rgb[bg[pat].rgb2_min].r;
1114 uch g2_min = rgb[bg[pat].rgb2_min].g;
1115 uch b2_min = rgb[bg[pat].rgb2_min].b;
1116 int r1_diff = rgb[bg[pat].rgb1_max].r - r1_min;
1117 int g1_diff = rgb[b
[all...]
H A Drpng2-win.c170 } rgb[] = { variable in typeref:struct:rgb_color
189 static int num_rgb = sizeof(rgb) / sizeof(struct rgb_color);
840 uch r1_min = rgb[bg[pat].rgb1_min].r;
841 uch g1_min = rgb[bg[pat].rgb1_min].g;
842 uch b1_min = rgb[bg[pat].rgb1_min].b;
843 uch r2_min = rgb[bg[pat].rgb2_min].r;
844 uch g2_min = rgb[bg[pat].rgb2_min].g;
845 uch b2_min = rgb[bg[pat].rgb2_min].b;
846 int r1_diff = rgb[bg[pat].rgb1_max].r - r1_min;
847 int g1_diff = rgb[b
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/
H A Dterm-styled-ostream.oo.c28 #include <cr-rgb.h>
297 CRRgb rgb; local
302 cr_rgb_copy (&rgb, &style->rgb_props[which].sv);
303 if (cr_rgb_compute_from_percentage (&rgb) != CR_OK)
305 r = rgb.red & 0xff;
306 g = rgb.green & 0xff;
307 b = rgb.blue & 0xff;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dterm-styled-ostream.c31 #include <cr-rgb.h>
294 CRRgb rgb; local
299 cr_rgb_copy (&rgb, &style->rgb_props[which].sv);
300 if (cr_rgb_compute_from_percentage (&rgb) != CR_OK)
302 r = rgb.red & 0xff;
303 g = rgb.green & 0xff;
304 b = rgb.blue & 0xff;

Completed in 134 milliseconds

1234