Home
last modified time | relevance | path

Searched refs:s_pixel (Results 1 – 25 of 47) sorted by relevance

12

/dports/graphics/Hermes/Hermes-1.3.3/src/
H A Dc_muhmu.c17 { int32 s_pixel; in ConvertC_muhmu32_32rgb888() local
22 s_pixel=(s_pixel&0xff)|((s_pixel&(0xff<<10))>>2)|((s_pixel&(0xff<<20))>>4); in ConvertC_muhmu32_32rgb888()
36 { int32 s_pixel; in ConvertC_muhmu32_32bgr888() local
41 s_pixel=((s_pixel&0xff)<<16)|((s_pixel&(0xff<<10))>>2)| in ConvertC_muhmu32_32bgr888()
58 { int32 s_pixel; in ConvertC_muhmu32_32rgba888() local
63 s_pixel=(s_pixel&0xff)|((s_pixel&(0xff<<10))>>2)|((s_pixel&(0xff<<20))>>4); in ConvertC_muhmu32_32rgba888()
77 { int32 s_pixel; in ConvertC_muhmu32_32bgra888() local
82 s_pixel=((s_pixel&0xff)<<16)|((s_pixel&(0xff<<10))>>2)| in ConvertC_muhmu32_32bgra888()
98 { int32 s_pixel; in ConvertC_muhmu32_24rgb888() local
103 s_pixel=(s_pixel&0xff)|((s_pixel&(0xff<<10))>>2)|((s_pixel&(0xff<<20))>>4); in ConvertC_muhmu32_24rgb888()
[all …]
H A Dc_32.c27 { int32 s_pixel; in ConvertC_32rgb888_32bgr888() local
64 { int32 s_pixel; in ConvertC_32rgb888_32bgra888() local
74 s_pixel|=0xff; in ConvertC_32rgb888_32bgra888()
119 s_pixel=(s_pixel&0xffffff)|(s_pixel2<<24); in ConvertC_32rgb888_24rgb888()
127 s_pixel=((s_pixel>>16)&0xff)|(s_pixel2<<8); in ConvertC_32rgb888_24rgb888()
135 s_pixel=(s_pixel<<8)|((s_pixel2>>16)&0xff); in ConvertC_32rgb888_24rgb888()
143 s_pixel=(s_pixel<<24)|(s_pixel2&0xffffff); in ConvertC_32rgb888_24rgb888()
172 { int32 s_pixel; in ConvertC_32rgb888_24bgr888() local
194 int32 s_pixel; in ConvertC_32rgb888_16rgb565() local
476 *dest=(char8)(((s_pixel>>16)&0xe0)|((s_pixel>>11)&0x1c)|((s_pixel>>6)&0x3)); in ConvertC_32rgb888_8rgb332()
[all …]
H A Dc_16.c151 int32 s_pixel; in ConvertC_16rgb565_16bgr565() local
158 s_pixel=(s_pixel>>11)|(s_pixel&0x7e0)|((s_pixel<<11)&0xf800); in ConvertC_16rgb565_16bgr565()
171 s_pixel=(s_pixel&0x07e007e0)|((s_pixel&0xf800f800)>>11)| in ConvertC_16rgb565_16bgr565()
181 s_pixel=(s_pixel>>11)|(s_pixel&0x7e0)|((s_pixel<<11)&0xf800); in ConvertC_16rgb565_16bgr565()
194 int32 s_pixel; in ConvertC_16rgb565_16rgb555() local
202 s_pixel=(s_pixel&0x1f)|((s_pixel&0xf800)>>1)|((s_pixel&0x7c0)>>1); in ConvertC_16rgb565_16rgb555()
216 s_pixel=(s_pixel&0x001f001f)|((s_pixel&0xf800f800)>>1)| in ConvertC_16rgb565_16rgb555()
227 s_pixel=(s_pixel&0x1f)|((s_pixel&0xf800)>>1)|((s_pixel&0x7c0)>>1); in ConvertC_16rgb565_16rgb555()
248 s_pixel=((s_pixel&0xf800)>>11)|((s_pixel&0x7c0)>>1)|((s_pixel&0x1f)<<10); in ConvertC_16rgb565_16bgr555()
262 s_pixel=((s_pixel&0xf800f800)>>11)|((s_pixel&0x07c007c0)>>1)| in ConvertC_16rgb565_16bgr555()
[all …]
H A Dc_i8.c26 char8 s_pixel; in ConvertC_index8_32() local
34 { s_pixel=(char8)*(source); in ConvertC_index8_32()
48 int32 s_pixel,s_pixel2; in ConvertC_index8_24() local
65 s_pixel=(s_pixel&0xffffff)|(s_pixel2<<24); in ConvertC_index8_24()
66 WRITE32(dest,s_pixel); in ConvertC_index8_24()
73 s_pixel=((s_pixel>>16)&0xff)|(s_pixel2<<8); in ConvertC_index8_24()
74 WRITE32(dest+2,s_pixel); in ConvertC_index8_24()
81 s_pixel=(s_pixel<<8)|((s_pixel2>>16)&0xff); in ConvertC_index8_24()
82 WRITE32(dest,s_pixel); in ConvertC_index8_24()
89 s_pixel=(s_pixel<<24)|(s_pixel2&0xffffff); in ConvertC_index8_24()
[all …]
H A Dc_32_ao_blit.c24 int32 s_pixel,d_pixel,r,g,b,a; in ConvertC_32rgba8888_32rgb888_blit() local
29 s_pixel=READ32(source); in ConvertC_32rgba8888_32rgb888_blit()
32 a = s_pixel & 0xFF; in ConvertC_32rgba8888_32rgb888_blit()
51 int32 s_pixel; in ConvertC_32rgb888_16rgb565() local
95 { s_pixel=*source_32; in ConvertC_32rgb888_16rgb565()
98 ((s_pixel>>5)&0x7e0)| in ConvertC_32rgb888_16rgb565()
99 ((s_pixel>>3)&0x1f))); in ConvertC_32rgb888_16rgb565()
112 { int32 s_pixel; in ConvertC_32rgb888_32bgr888_S() local
123 WRITE32(dest,s_pixel); in ConvertC_32rgb888_32bgr888_S()
150 { int32 s_pixel; in ConvertC_32rgb888_32bgra888_S() local
[all …]
H A Dc_genrc_ao_blit.c27 { unsigned long s_pixel, d_pixel, r, g, b, a; in ConvertC_Generic32_A_Generic32_O_Blit() local
37 s_pixel = READ32(source); in ConvertC_Generic32_A_Generic32_O_Blit()
43 sa = (s_pixel & iface->s_mask_a)/(float)iface->s_mask_a; in ConvertC_Generic32_A_Generic32_O_Blit()
104 { unsigned long s_pixel, d_pixel, r, g, b, a; in ConvertC_Generic32_A_Generic24_O_Blit() local
107 char8 *d_ptr=(char8 *)((int)&s_pixel); in ConvertC_Generic32_A_Generic24_O_Blit()
125 s_pixel=READ32(source); in ConvertC_Generic32_A_Generic24_O_Blit()
175 #define CG_VARS() int32 s_pixel; \
191 s_pixel = src_read_macro(source); \
192 dest_write_macro(dest, (convert_rgb_macro(s_pixel))); \
204 #define CG_S_VARS() int32 s_pixel; \
[all …]
H A Dc_genrc_ac.c18 #define CG_VARS() int32 s_pixel; \
36 s_pixel = src_read_macro(source); \
37 s_pixel = convert_rgb_macro(s_pixel); \
38 if ((s_pixel & amask) == 0) \
43 dest_write_macro(dest, s_pixel); \
56 #define CG_S_VARS() int32 s_pixel; \
78 s_pixel = src_read_macro(source + (x>>16)); \
79 s_pixel = convert_rgb_macro(s_pixel); \
80 if ((s_pixel & amask) == 0) \
85 dest_write_macro(dest, s_pixel); \
/dports/graphics/fpc-hermes/fpc-3.2.2/packages/hermes/src/
H A Dp_muhmu.inc45 s_pixel: Uint32;
63 s_pixel: Uint32;
81 s_pixel: Uint32;
99 s_pixel: Uint32;
117 s_pixel: Uint32;
123 s_pixel := (s_pixel and $ff) or
140 s_pixel: Uint32;
146 s_pixel := (s_pixel and $ff) or
478 s_pixel: DWord;
498 s_pixel: DWord;
[all …]
H A Dp_ga.inc44 s_pixel, r, g, b, a: Uint32;
78 s_pixel, r, g, b, a: Uint32;
118 s_pixel, r, g, b, a: Uint32;
148 s_pixel := s_pixel or ((r or g or b or a) shl DWORD_SMALLINT1_SHL);
184 s_pixel, r, g, b, a: Uint32;
218 s_pixel, r, g, b, a: Uint32;
254 s_pixel, r, g, b, a: Uint32;
296 s_pixel, r, g, b, a: Uint32;
332 s_pixel, r, g, b, a: Uint32;
368 s_pixel, r, g, b, a: Uint32;
[all …]
H A Dp_g.inc44 s_pixel, r, g, b: Uint32;
76 s_pixel, r, g, b: Uint32;
95 s_pixel := r or g or b;
114 s_pixel, r, g, b: Uint32;
140 s_pixel := s_pixel or ((r or g or b) shl DWORD_SMALLINT1_SHL);
174 s_pixel, r, g, b: Uint32;
206 s_pixel, r, g, b: Uint32;
240 s_pixel, r, g, b: Uint32;
280 s_pixel, r, g, b: Uint32;
314 s_pixel, r, g, b: Uint32;
[all …]
H A Dp_32.inc52 s_pixel: Uint32;
56 s_ptr := @s_pixel;
87 s_pixel: Uint32;
91 s_ptr := @s_pixel;
144 s_pixel := (s_pixel and $ffffff) or (s_pixel2 shl 24);
146 s_pixel := (s_pixel shl 8) or ((s_pixel2 shr 16) and $FF);
160 s_pixel := ((s_pixel shr 16) and $ff) or (s_pixel2 shl 8);
162 s_pixel := (s_pixel shl 24) or (s_pixel2 and $FFFFFF);
190 s_pixel: Uint32;
212 s_pixel: Uint32;
[all …]
H A Dp_i8.inc52 s_pixel: Uint8;
61 s_pixel := source^;
92 s_pixel := s_pixel or (s_pixel2 shl 24);
94 s_pixel := (s_pixel shl 8) or (s_pixel2 shr 16);
96 PUint32(dest)^ := s_pixel;
108 s_pixel := (s_pixel shr 16) or (s_pixel2 shl 8);
110 s_pixel := (s_pixel shl 24) or s_pixel2;
273 s_pixel := s_pixel or (s_pixel2 shl 24);
275 s_pixel := (s_pixel shl 8) or (s_pixel2 shr 16);
289 s_pixel := (s_pixel shr 16) or (s_pixel2 shl 8);
[all …]
/dports/lang/fpc-source/fpc-3.2.2/packages/hermes/src/
H A Dp_muhmu.inc45 s_pixel: Uint32;
63 s_pixel: Uint32;
81 s_pixel: Uint32;
99 s_pixel: Uint32;
117 s_pixel: Uint32;
123 s_pixel := (s_pixel and $ff) or
140 s_pixel: Uint32;
146 s_pixel := (s_pixel and $ff) or
478 s_pixel: DWord;
498 s_pixel: DWord;
[all …]
H A Dp_ga.inc44 s_pixel, r, g, b, a: Uint32;
78 s_pixel, r, g, b, a: Uint32;
118 s_pixel, r, g, b, a: Uint32;
148 s_pixel := s_pixel or ((r or g or b or a) shl DWORD_SMALLINT1_SHL);
184 s_pixel, r, g, b, a: Uint32;
218 s_pixel, r, g, b, a: Uint32;
254 s_pixel, r, g, b, a: Uint32;
296 s_pixel, r, g, b, a: Uint32;
332 s_pixel, r, g, b, a: Uint32;
368 s_pixel, r, g, b, a: Uint32;
[all …]
H A Dp_g.inc44 s_pixel, r, g, b: Uint32;
76 s_pixel, r, g, b: Uint32;
95 s_pixel := r or g or b;
114 s_pixel, r, g, b: Uint32;
140 s_pixel := s_pixel or ((r or g or b) shl DWORD_SMALLINT1_SHL);
174 s_pixel, r, g, b: Uint32;
206 s_pixel, r, g, b: Uint32;
240 s_pixel, r, g, b: Uint32;
280 s_pixel, r, g, b: Uint32;
314 s_pixel, r, g, b: Uint32;
[all …]
H A Dp_32.inc52 s_pixel: Uint32;
56 s_ptr := @s_pixel;
87 s_pixel: Uint32;
91 s_ptr := @s_pixel;
144 s_pixel := (s_pixel and $ffffff) or (s_pixel2 shl 24);
146 s_pixel := (s_pixel shl 8) or ((s_pixel2 shr 16) and $FF);
160 s_pixel := ((s_pixel shr 16) and $ff) or (s_pixel2 shl 8);
162 s_pixel := (s_pixel shl 24) or (s_pixel2 and $FFFFFF);
190 s_pixel: Uint32;
212 s_pixel: Uint32;
[all …]
H A Dp_i8.inc52 s_pixel: Uint8;
61 s_pixel := source^;
92 s_pixel := s_pixel or (s_pixel2 shl 24);
94 s_pixel := (s_pixel shl 8) or (s_pixel2 shr 16);
96 PUint32(dest)^ := s_pixel;
108 s_pixel := (s_pixel shr 16) or (s_pixel2 shl 8);
110 s_pixel := (s_pixel shl 24) or s_pixel2;
273 s_pixel := s_pixel or (s_pixel2 shl 24);
275 s_pixel := (s_pixel shl 8) or (s_pixel2 shr 16);
289 s_pixel := (s_pixel shr 16) or (s_pixel2 shl 8);
[all …]
/dports/print/ghostscript7-x11/ghostscript-7.07/src/
H A Dgdevmr8n.c165 #define rop_body_8(s_pixel, t_pixel)\ in mem_gray8_rgb24_strip_copy_rop() argument
180 #define rop_body_24(s_pixel, t_pixel)\ in mem_gray8_rgb24_strip_copy_rop() argument
233 rop_body_24(s_pixel, const_texture); in mem_gray8_rgb24_strip_copy_rop()
240 byte s_pixel = *sptr; in mem_gray8_rgb24_strip_copy_rop() local
242 rop_body_8(s_pixel, (byte)const_texture); in mem_gray8_rgb24_strip_copy_rop()
249 bits32 s_pixel = get24(sptr); in mem_gray8_rgb24_strip_copy_rop() local
251 rop_body_24(s_pixel, const_texture); in mem_gray8_rgb24_strip_copy_rop()
344 byte s_pixel = in mem_gray8_rgb24_strip_copy_rop() local
349 rop_body_8(s_pixel, t_pixel); in mem_gray8_rgb24_strip_copy_rop()
357 bits32 s_pixel = in mem_gray8_rgb24_strip_copy_rop() local
[all …]
/dports/print/ghostscript7-base/ghostscript-7.07/src/
H A Dgdevmr8n.c165 #define rop_body_8(s_pixel, t_pixel)\ in mem_gray8_rgb24_strip_copy_rop() argument
180 #define rop_body_24(s_pixel, t_pixel)\ in mem_gray8_rgb24_strip_copy_rop() argument
233 rop_body_24(s_pixel, const_texture); in mem_gray8_rgb24_strip_copy_rop()
240 byte s_pixel = *sptr; in mem_gray8_rgb24_strip_copy_rop() local
242 rop_body_8(s_pixel, (byte)const_texture); in mem_gray8_rgb24_strip_copy_rop()
249 bits32 s_pixel = get24(sptr); in mem_gray8_rgb24_strip_copy_rop() local
251 rop_body_24(s_pixel, const_texture); in mem_gray8_rgb24_strip_copy_rop()
344 byte s_pixel = in mem_gray8_rgb24_strip_copy_rop() local
349 rop_body_8(s_pixel, t_pixel); in mem_gray8_rgb24_strip_copy_rop()
357 bits32 s_pixel = in mem_gray8_rgb24_strip_copy_rop() local
[all …]
/dports/print/ghostscript9-agpl-base/ghostscript-9.52/base/
H A Dgdevmr8n.c197 #define rop_body_8(s_pixel, t_pixel)\ in mem_gray8_rgb24_strip_copy_rop() argument
210 #define rop_body_24(s_pixel, t_pixel)\ in mem_gray8_rgb24_strip_copy_rop() argument
317 byte s_pixel = *sptr; in mem_gray8_rgb24_strip_copy_rop() local
507 byte s_pixel = in mem_gray8_rgb24_strip_copy_rop() local
517 bits32 s_pixel = in mem_gray8_rgb24_strip_copy_rop() local
605 #define rop_body_8(s_pixel, t_pixel)\ in mem_gray8_rgb24_strip_copy_rop() argument
616 #define rop_body_24(s_pixel, t_pixel)\ in mem_gray8_rgb24_strip_copy_rop() argument
672 byte s_pixel = *sptr; in mem_gray8_rgb24_strip_copy_rop() local
681 bits32 s_pixel = get24(sptr); in mem_gray8_rgb24_strip_copy_rop() local
776 byte s_pixel = in mem_gray8_rgb24_strip_copy_rop() local
[all …]
/dports/print/ghostscript9-agpl-x11/ghostscript-9.52/base/
H A Dgdevmr8n.c197 #define rop_body_8(s_pixel, t_pixel)\ in mem_gray8_rgb24_strip_copy_rop() argument
210 #define rop_body_24(s_pixel, t_pixel)\ in mem_gray8_rgb24_strip_copy_rop() argument
317 byte s_pixel = *sptr; in mem_gray8_rgb24_strip_copy_rop() local
507 byte s_pixel = in mem_gray8_rgb24_strip_copy_rop() local
517 bits32 s_pixel = in mem_gray8_rgb24_strip_copy_rop() local
605 #define rop_body_8(s_pixel, t_pixel)\ in mem_gray8_rgb24_strip_copy_rop() argument
616 #define rop_body_24(s_pixel, t_pixel)\ in mem_gray8_rgb24_strip_copy_rop() argument
672 byte s_pixel = *sptr; in mem_gray8_rgb24_strip_copy_rop() local
681 bits32 s_pixel = get24(sptr); in mem_gray8_rgb24_strip_copy_rop() local
776 byte s_pixel = in mem_gray8_rgb24_strip_copy_rop() local
[all …]
/dports/print/ghostscript9-x11/ghostscript-9.06/base/
H A Dgdevmr8n.c179 #define rop_body_8(s_pixel, t_pixel)\ in mem_gray8_rgb24_strip_copy_rop() argument
180 if ( (s_pixel) == strans || /* So = 0, s_tr = 1 */\ in mem_gray8_rgb24_strip_copy_rop()
194 #define rop_body_24(s_pixel, t_pixel)\ in mem_gray8_rgb24_strip_copy_rop() argument
310 byte s_pixel = *sptr; in mem_gray8_rgb24_strip_copy_rop() local
504 byte s_pixel = in mem_gray8_rgb24_strip_copy_rop() local
516 bits32 s_pixel = in mem_gray8_rgb24_strip_copy_rop() local
602 #define rop_body_8(s_pixel, t_pixel)\ in mem_gray8_rgb24_strip_copy_rop() argument
617 #define rop_body_24(s_pixel, t_pixel)\ in mem_gray8_rgb24_strip_copy_rop() argument
685 byte s_pixel = *sptr; in mem_gray8_rgb24_strip_copy_rop() local
801 byte s_pixel = in mem_gray8_rgb24_strip_copy_rop() local
[all …]
/dports/print/ghostscript9-base/ghostscript-9.06/base/
H A Dgdevmr8n.c179 #define rop_body_8(s_pixel, t_pixel)\ in mem_gray8_rgb24_strip_copy_rop() argument
180 if ( (s_pixel) == strans || /* So = 0, s_tr = 1 */\ in mem_gray8_rgb24_strip_copy_rop()
194 #define rop_body_24(s_pixel, t_pixel)\ in mem_gray8_rgb24_strip_copy_rop() argument
310 byte s_pixel = *sptr; in mem_gray8_rgb24_strip_copy_rop() local
504 byte s_pixel = in mem_gray8_rgb24_strip_copy_rop() local
516 bits32 s_pixel = in mem_gray8_rgb24_strip_copy_rop() local
602 #define rop_body_8(s_pixel, t_pixel)\ in mem_gray8_rgb24_strip_copy_rop() argument
617 #define rop_body_24(s_pixel, t_pixel)\ in mem_gray8_rgb24_strip_copy_rop() argument
685 byte s_pixel = *sptr; in mem_gray8_rgb24_strip_copy_rop() local
801 byte s_pixel = in mem_gray8_rgb24_strip_copy_rop() local
[all …]
/dports/print/ghostscript8-base/ghostscript-8.71/base/
H A Dgdevmr8n.c161 #define rop_body_8(s_pixel, t_pixel)\ in mem_gray8_rgb24_strip_copy_rop() argument
176 #define rop_body_24(s_pixel, t_pixel)\ in mem_gray8_rgb24_strip_copy_rop() argument
237 rop_body_24(s_pixel, const_texture); in mem_gray8_rgb24_strip_copy_rop()
244 byte s_pixel = *sptr; in mem_gray8_rgb24_strip_copy_rop() local
248 rop_body_8(s_pixel, (byte)const_texture); in mem_gray8_rgb24_strip_copy_rop()
255 bits32 s_pixel = get24(sptr); in mem_gray8_rgb24_strip_copy_rop() local
259 rop_body_24(s_pixel, const_texture); in mem_gray8_rgb24_strip_copy_rop()
360 byte s_pixel = in mem_gray8_rgb24_strip_copy_rop() local
367 rop_body_8(s_pixel, t_pixel); in mem_gray8_rgb24_strip_copy_rop()
375 bits32 s_pixel = in mem_gray8_rgb24_strip_copy_rop() local
[all …]
/dports/print/ghostscript8-x11/ghostscript-8.71/base/
H A Dgdevmr8n.c161 #define rop_body_8(s_pixel, t_pixel)\ in mem_gray8_rgb24_strip_copy_rop() argument
176 #define rop_body_24(s_pixel, t_pixel)\ in mem_gray8_rgb24_strip_copy_rop() argument
237 rop_body_24(s_pixel, const_texture); in mem_gray8_rgb24_strip_copy_rop()
244 byte s_pixel = *sptr; in mem_gray8_rgb24_strip_copy_rop() local
248 rop_body_8(s_pixel, (byte)const_texture); in mem_gray8_rgb24_strip_copy_rop()
255 bits32 s_pixel = get24(sptr); in mem_gray8_rgb24_strip_copy_rop() local
259 rop_body_24(s_pixel, const_texture); in mem_gray8_rgb24_strip_copy_rop()
360 byte s_pixel = in mem_gray8_rgb24_strip_copy_rop() local
367 rop_body_8(s_pixel, t_pixel); in mem_gray8_rgb24_strip_copy_rop()
375 bits32 s_pixel = in mem_gray8_rgb24_strip_copy_rop() local
[all …]

12