Home | History | Annotate | Download | only in libpng-1.2.19

Lines Matching refs:dither_sort

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)
218 while ((int)png_ptr->dither_sort[j] >= maximum_colors);
232 if ((int)png_ptr->dither_sort[i] >= maximum_colors)
238 while ((int)png_ptr->dither_sort[j] >= maximum_colors);
276 png_free(png_ptr, png_ptr->dither_sort);
277 png_ptr->dither_sort=NULL;