HomeSort by relevance Sort by last modified time
    Searched defs:bits_per_pixel (Results 1 - 25 of 37) sorted by null

1 2

  /external/ImageMagick/coders/
pix.c 112 bits_per_pixel,
144 bits_per_pixel=ReadBlobMSBShort(image);
145 if ((width == 0UL) || (height == 0UL) || ((bits_per_pixel != 8) &&
146 (bits_per_pixel != 24)))
155 if (bits_per_pixel == 8)
191 if (bits_per_pixel == 8)
238 bits_per_pixel=ReadBlobMSBShort(image);
239 status=(width != 0UL) && (height == 0UL) && ((bits_per_pixel == 8) ||
240 (bits_per_pixel == 24)) ? MagickTrue : MagickFalse;
110 bits_per_pixel, local
tim.c 108 bits_per_pixel,
176 case 0: bits_per_pixel=4; break;
177 case 1: bits_per_pixel=8; break;
178 case 2: bits_per_pixel=16; break;
179 case 3: bits_per_pixel=24; break;
180 default: bits_per_pixel=4; break;
240 width=(width*16)/bits_per_pixel;
262 switch (bits_per_pixel)
106 bits_per_pixel, local
dps.c 142 bits_per_pixel;
220 &bits_per_pixel,&page);
232 GetBlobFileHandle(image),(int) bits_per_pixel.height,visual_info->depth,
245 dps_image=XGetImage(display,pixmap,0,0,bits_per_pixel.width,
246 bits_per_pixel.height,AllPlanes,ZPixmap);
480 GetBlobFileHandle(image),1,pixels_per_point,&pixmap,&bits_per_pixel,&page);
484 GetBlobFileHandle(image),(int) bits_per_pixel.height,1,&page,-page.x,
494 matte_image=XGetImage(display,pixmap,0,0,bits_per_pixel.width,
495 bits_per_pixel.height,AllPlanes,ZPixmap);
140 bits_per_pixel; local
xwd.c 290 ximage->bits_per_pixel=(int) header.bits_per_pixel;
307 if ((ximage->bits_per_pixel > 32) || (ximage->bitmap_unit > 32))
712 bits_per_pixel,
763 bits_per_pixel=(size_t) (image->storage_class == DirectClass ? 24 : 8);
764 xwd_info.bits_per_pixel=(CARD32) bits_per_pixel;
765 bytes_per_line=(CARD32) ((((xwd_info.bits_per_pixel*
858 scanline_pad=(bytes_per_line-((image->columns*bits_per_pixel) >> 3));
705 bits_per_pixel, local
dib.c 88 bits_per_pixel;
538 dib_info.bits_per_pixel=ReadBlobLSBShort(image);
539 if (dib_info.bits_per_pixel > 32)
547 if ((dib_info.bits_per_pixel != 1) && (dib_info.bits_per_pixel != 4) &&
548 (dib_info.bits_per_pixel != 8) && (dib_info.bits_per_pixel != 16) &&
549 (dib_info.bits_per_pixel != 24) && (dib_info.bits_per_pixel != 32))
552 ((dib_info.bits_per_pixel == 16) || (dib_info.bits_per_pixel == 32))
86 bits_per_pixel; member in struct:_DIBInfo
    [all...]
fits.c 150 static inline double GetFITSPixel(Image *image,int bits_per_pixel)
160 if (bits_per_pixel > 0)
166 if (bits_per_pixel > 0)
176 const int bits_per_pixel,double *minima,double *maxima)
194 *minima=GetFITSPixel(image,bits_per_pixel);
198 pixel=GetFITSPixel(image,bits_per_pixel);
213 const size_t bits_per_pixel,const EndianType endian,unsigned char *pixels)
219 pixels+=(bits_per_pixel >> 3)-1;
223 pixels+=bits_per_pixel >> 3;
237 bits_per_pixel,
232 bits_per_pixel, member in struct:_FITSInfo
    [all...]
palm.c 265 bits_per_pixel,
327 bits_per_pixel=(size_t) ReadBlobByte(image);
328 if ((bits_per_pixel != 1) && (bits_per_pixel != 2) &&
329 (bits_per_pixel != 4) && (bits_per_pixel != 8) &&
330 (bits_per_pixel != 16))
348 if ((bits_per_pixel < 16) &&
349 (AcquireImageColormap(image,one << bits_per_pixel,exception) == MagickFalse))
352 if (bits_per_pixel == 16) /* Direct Color *
259 bits_per_pixel, local
722 bits_per_pixel, local
    [all...]
pcl.c 696 bits_per_pixel,
747 bits_per_pixel=1;
755 bits_per_pixel=24;
769 bits_per_pixel=8;
773 (void) WriteBlobByte(image,bits_per_pixel); /* bits per index */
786 for (one=1; i < (ssize_t) (one << bits_per_pixel); i++)
799 length=(image->columns*bits_per_pixel+7)/8;
866 switch (bits_per_pixel)
689 bits_per_pixel, local
pcx.c 79 bits_per_pixel;
325 bits_per_pixel;
334 bits_per_pixel=ReadBlobByte(image);
335 if (bits_per_pixel == -1)
337 pcx_info.bits_per_pixel=(unsigned char) bits_per_pixel;
354 ((pcx_info.bits_per_pixel != 1) && (pcx_info.bits_per_pixel != 2) &&
355 (pcx_info.bits_per_pixel != 4) && (pcx_info.bits_per_pixel != 8))
77 bits_per_pixel; member in struct:_PCXInfo
319 bits_per_pixel; local
    [all...]
rle.c 183 bits_per_pixel,
237 bits_per_pixel=(size_t) ReadBlobByte(image);
247 ((number_planes <= 2) || number_planes > 254)) || (bits_per_pixel != 8))
280 number_planes*bits_per_pixel/8)/GetBlobSize(image)) > 254))
180 bits_per_pixel, local
tga.c 110 bits_per_pixel,
233 tga_info.bits_per_pixel=(unsigned char) ReadBlobByte(image);
237 if ((((tga_info.bits_per_pixel <= 1) || (tga_info.bits_per_pixel >= 17)) &&
238 (tga_info.bits_per_pixel != 24) && (tga_info.bits_per_pixel != 32)))
246 image->alpha_trait=(alpha_bits > 0) || (tga_info.bits_per_pixel == 32) ||
250 image->depth=(size_t) ((tga_info.bits_per_pixel <= 8) ? 8 :
251 (tga_info.bits_per_pixel <= 16) ? 5 : 8);
275 image->colors=one << tga_info.bits_per_pixel;
109 bits_per_pixel, member in struct:_TGAInfo
    [all...]
icon.c 95 bits_per_pixel;
127 bits_per_pixel;
315 icon_file.directory[i].bits_per_pixel=(unsigned short)
339 icon_info.bits_per_pixel=ReadBlobLSBShort(image);
346 if (((icon_info.planes == 18505) && (icon_info.bits_per_pixel == 21060)) ||
373 png[14]=(unsigned char) icon_info.bits_per_pixel;
374 png[15]=(unsigned char) (icon_info.bits_per_pixel >> 8);
395 if (icon_info.bits_per_pixel > 32)
416 image->depth=icon_info.bits_per_pixel;
434 " bpp = %.20g",(double) icon_info.bits_per_pixel);
92 bits_per_pixel; member in struct:_IconEntry
124 bits_per_pixel; member in struct:_IconInfo
    [all...]
pdb.c 304 bits_per_pixel,
411 bits_per_pixel=pdb_image.type == 0 ? 2UL : pdb_image.type == 2 ? 4UL : 1UL;
413 if (AcquireImageColormap(image,one << bits_per_pixel,exception) == MagickFalse)
425 packets=(bits_per_pixel*image->columns+7)/8;
462 switch (bits_per_pixel)
778 bits_per_pixel,
808 bits_per_pixel=1;
810 bits_per_pixel=2;
812 bits_per_pixel=3;
814 bits_per_pixel=4
299 bits_per_pixel, local
770 bits_per_pixel, local
    [all...]
bmp.c 141 bits_per_pixel;
643 bmp_info.bits_per_pixel=ReadBlobLSBShort(image);
669 bmp_info.bits_per_pixel=ReadBlobLSBShort(image);
686 " Bits per pixel: %.20g",(double) bmp_info.bits_per_pixel);
851 if ((bmp_info.bits_per_pixel != 1) && (bmp_info.bits_per_pixel != 4) &&
852 (bmp_info.bits_per_pixel != 8) && (bmp_info.bits_per_pixel != 16) &&
853 (bmp_info.bits_per_pixel != 24) && (bmp_info.bits_per_pixel != 32)
138 bits_per_pixel; member in struct:_BMPInfo
    [all...]
cin.c 144 bits_per_pixel,
301 size_t samples_per_pixel,size_t bits_per_pixel,
307 switch (bits_per_pixel)
312 bits_per_pixel+31)/32);
319 bits_per_pixel+31)/32);
327 bits_per_pixel+31)/32);
338 bits_per_pixel+31)/32);
347 bits_per_pixel+8)/16);
353 bits_per_pixel+31)/32);
359 bits_per_pixel+63)/64)
142 bits_per_pixel, member in struct:_CINImageChannel
    [all...]
pict.c 103 bits_per_pixel,
313 % size_t bytes_per_line,const int bits_per_pixel,
325 % o bits_per_pixel: the number of bits in a pixel.
332 const unsigned int bits_per_pixel,MagickSizeType *bytes_per_line)
348 switch (bits_per_pixel)
402 size_t bytes_per_line,const unsigned int bits_per_pixel,size_t *extent)
438 if (bits_per_pixel <= 8)
442 if (bits_per_pixel == 16)
448 if (bits_per_pixel == 32)
488 p=ExpandBuffer(scanline,bits_per_pixel,&number_pixels)
101 bits_per_pixel, member in struct:_PICTPixmap
    [all...]
  /device/google/cuttlefish_common/host/frontend/vnc_server/
vnc_client_connection.h 49 std::uint8_t bits_per_pixel; member in struct:cvd::vnc::VncClientConnection::PixelFormat
  /external/libjpeg-turbo/
rdbmp.c 74 int bits_per_pixel; /* remembers 8- or 24-bit format */ member in struct:_bmp_source_struct
399 switch (source->bits_per_pixel) {
476 source->bits_per_pixel = (int)GET_2B(bmpinfoheader, 10);
478 switch (source->bits_per_pixel) {
498 source->bits_per_pixel = (int)GET_2B(bmpinfoheader, 14);
505 switch (source->bits_per_pixel) {
567 switch (source->bits_per_pixel) {
622 switch (source->bits_per_pixel) {
wrbmp.c 234 int bits_per_pixel, cmap_entries; local
240 bits_per_pixel = 8;
244 bits_per_pixel = 24;
249 bits_per_pixel = 24;
253 bits_per_pixel = 8;
276 PUT_2B(bmpinfoheader, 14, bits_per_pixel); /* biBitCount */
303 int bits_per_pixel, cmap_entries; local
309 bits_per_pixel = 8;
313 bits_per_pixel = 24;
318 bits_per_pixel = 24
    [all...]
  /external/pdfium/public/
fpdf_edit.h 80 unsigned int bits_per_pixel; member in struct:FPDF_IMAGEOBJ_METADATA
  /external/u-boot/drivers/video/
ati_radeon_fb.c 623 int bits_per_pixel, i, tmp, vesa_idx = 0, videomode; local
661 bits_per_pixel = vesa_modes[i].bits_per_pixel;
665 bits_per_pixel = video_get_params (res_mode, penv);
682 res_mode->yres, bits_per_pixel, (hsynch / 1000),
690 switch (bits_per_pixel) {
741 /*SetDrawingEngine (bits_per_pixel);*/
744 radeon_setmode_9200(vesa_idx, bits_per_pixel);
videomodes.h 58 int bits_per_pixel; /* bpp */ member in struct:ctfb_vesa_modes
  /external/webrtc/webrtc/modules/desktop_capture/x11/
x_server_pixel_buffer.cc 52 return image->bits_per_pixel == 32 &&
252 rect.left() * x_image_->bits_per_pixel / 8;
302 int bits_per_pixel = x_image_->bits_per_pixel; local
318 if (bits_per_pixel == 32) {
320 } else if (bits_per_pixel == 16) {
  /external/u-boot/include/
vbe.h 62 u8 bits_per_pixel; /* 19 */ member in struct:vesa_mode_info
  /device/linaro/bootloader/edk2/CorebootModulePkg/Include/
Coreboot.h 217 UINT8 bits_per_pixel; member in struct:cb_framebuffer

Completed in 880 milliseconds

1 2