HomeSort by relevance Sort by last modified time
    Searched refs:dither_sort (Results 1 - 4 of 4) sorted by null

  /external/libpng/
pngrtran.c 195 png_ptr->dither_sort = (png_bytep)png_malloc(png_ptr,
198 /* Initialize the dither_sort array */
200 png_ptr->dither_sort[i] = (png_byte)i;
217 if (histogram[png_ptr->dither_sort[j]]
218 < histogram[png_ptr->dither_sort[j + 1]])
222 t = png_ptr->dither_sort[j];
223 png_ptr->dither_sort[j] = png_ptr->dither_sort[j + 1];
224 png_ptr->dither_sort[j + 1] = t;
242 if ((int)png_ptr->dither_sort[i] >= maximum_colors
    [all...]
png.h     [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngrtran.c 169 png_ptr->dither_sort = (png_bytep)png_malloc(png_ptr,
172 /* initialize the dither_sort array */
174 png_ptr->dither_sort[i] = (png_byte)i;
190 if (histogram[png_ptr->dither_sort[j]]
191 < histogram[png_ptr->dither_sort[j + 1]])
195 t = png_ptr->dither_sort[j];
196 png_ptr->dither_sort[j] = png_ptr->dither_sort[j + 1];
197 png_ptr->dither_sort[j + 1] = t;
214 if ((int)png_ptr->dither_sort[i] >= maximum_colors
    [all...]
png.h 1388 png_bytep dither_sort; \/* working sort array *\/ member in struct:png_struct_def
    [all...]

Completed in 292 milliseconds