HomeSort by relevance Sort by last modified time
    Searched refs:png_byte (Results 26 - 48 of 48) sorted by null

12

  /external/libpng/
pngwrite.c 164 info_ptr->trans[j] = (png_byte)(255 - info_ptr->trans[j]);
437 ptime->month = (png_byte)(ttime->tm_mon + 1);
438 ptime->day = (png_byte)ttime->tm_mday;
439 ptime->hour = (png_byte)ttime->tm_hour;
440 ptime->minute = (png_byte)ttime->tm_min;
441 ptime->second = (png_byte)ttime->tm_sec;
908 png_ptr->row_info.pixel_depth = (png_byte)(png_ptr->row_info.bit_depth *
    [all...]
pngget.c 72 png_byte PNGAPI
81 png_byte PNGAPI
90 png_byte PNGAPI
99 png_byte PNGAPI
108 png_byte PNGAPI
371 png_byte PNGAPI
860 png_byte PNGAPI
863 return (png_byte)(png_ptr? png_ptr->rgb_to_gray_status : 0);
912 png_byte PNGAPI
pngmem.c 179 png_byte huge * hptr;
239 hptr = (png_byte huge *)table;
242 hptr = (png_byte huge *)((long)(hptr) & 0xfffffff0L);
pngtest.c 212 * png_byte color_type color type of pixels
213 * png_byte bit_depth bit depth of samples
214 * png_byte channels number of channels (1-4)
215 * png_byte pixel_depth bits per pixel (depth*channels)
345 png_byte *n_data;
349 n_data = (png_byte *)CVT_PTR_NOCHECK(data);
357 png_byte buf[NEAR_BUF_SIZE];
419 png_byte *near_data; /* Needs to be "png_byte *" instead of "png_bytep" */
423 near_data = (png_byte *)CVT_PTR_NOCHECK(data)
    [all...]
pngconf.h 1243 typedef unsigned char png_byte; typedef
    [all...]
pngerror.c 179 buffer[iout++] = (png_byte)c;
png.c 34 PNG_CONST png_byte FARDATA png_sig[8] = {137, 80, 78, 71, 13, 10, 26, 10};
109 png_ptr->sig_bytes = (png_byte)(num_bytes < 0 ? 0 : num_bytes);
123 png_byte png_signature[8] = {137, 80, 78, 71, 13, 10, 26, 10};
pngpread.c 131 png_ptr->sig_bytes = (png_byte)(png_ptr->sig_bytes + num_to_check);
219 png_byte chunk_length[4];
745 png_byte chunk_length[4];
    [all...]
example.c 759 png_byte image[height][width*bytes_per_pixel];
CHANGES 147 changed parameter type of png_set_filler(...filler...) from png_byte
223 changed srgb_intent from png_byte to int to avoid compiler bugs
491 Changed type of png_user_transform_depth|channels from int to png_byte.
598 Changed "unit" parameter of png_write_sCAL from png_byte to int, to work
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngwrite.c 154 info_ptr->trans[j] = (png_byte)(255 - info_ptr->trans[j]);
404 ptime->month = (png_byte)(ttime->tm_mon + 1);
405 ptime->day = (png_byte)ttime->tm_mday;
406 ptime->hour = (png_byte)ttime->tm_hour;
407 ptime->minute = (png_byte)ttime->tm_min;
408 ptime->second = (png_byte)ttime->tm_sec;
870 png_ptr->row_info.pixel_depth = (png_byte)(png_ptr->row_info.bit_depth *
    [all...]
pngmem.c 166 png_byte huge * hptr;
226 hptr = (png_byte huge *)table;
229 hptr = (png_byte huge *)((long)(hptr) & 0xfffffff0L);
png.c 29 PNG_CONST png_byte FARDATA png_sig[8] = {137, 80, 78, 71, 13, 10, 26, 10};
105 png_ptr->sig_bytes = (png_byte)(num_bytes < 0 ? 0 : num_bytes);
119 png_byte png_signature[8] = {137, 80, 78, 71, 13, 10, 26, 10};
pngconf.h 1120 typedef unsigned char png_byte; typedef
    [all...]
pngerror.c 144 buffer[iout++] = (png_byte)c;
pngpread.c 117 png_ptr->sig_bytes = (png_byte)(png_ptr->sig_bytes+num_to_check);
204 png_byte chunk_length[4];
667 png_byte chunk_length[4];
    [all...]
pngread.c 409 png_byte chunk_length[4];
706 png_byte chunk_length[4];
923 png_byte chunk_length[4];
    [all...]
  /development/tools/etc1tool/
etc1tool.cpp 156 png_byte pngHeader[PNG_HEADER_SIZE];
268 pEncodedData = new png_byte[encodedSize];
284 pImageData = new png_byte[stride * height];
386 *pDest++ = (png_byte) diff;
  /frameworks/base/tools/aapt/
Images.cpp 943 rgbPalette[idx].red = (png_byte) ((col >> 24) & 0xff);
944 rgbPalette[idx].green = (png_byte) ((col >> 16) & 0xff);
945 rgbPalette[idx].blue = (png_byte) ((col >> 8) & 0xff);
946 alphaPalette[idx] = (png_byte) (col & 0xff);
962 *out++ = (png_byte) (rr * 0.2126f + gg * 0.7152f + bb * 0.0722f);
    [all...]
  /external/libpng/contrib/gregbook/
readpng2.c 215 static const png_byte chunks_to_ignore[] = {
  /external/webkit/Source/WebCore/platform/image-decoders/png/
PNGImageDecoder.cpp 160 void createInterlaceBuffer(int size) { m_interlaceBuffer = new png_byte[size]; }
  /external/skia/src/images/
SkImageDecoder_libpng.cpp 218 png_set_keep_unknown_chunks(png_ptr, PNG_HANDLE_CHUNK_ALWAYS, (png_byte*)"", 0);
    [all...]
  /external/libpng/contrib/visupng/
VisualPng.c 52 png_byte **ppbImage, int *pxImgSize, int *pyImgSize, int *piChannels,
658 png_byte **ppbImage, int *pxImgSize, int *pyImgSize,

Completed in 7432 milliseconds

12