Lines Matching full:hist
218 png_set_hIST(png_structp png_ptr, png_infop info_ptr, png_uint_16p hist)
222 png_debug1(1, "in %s storage function\n", "hIST");
229 "Invalid palette size, hIST allocation skipped.");
238 png_ptr->hist = (png_uint_16p)png_malloc_warn(png_ptr,
240 if (png_ptr->hist == NULL)
242 png_warning(png_ptr, "Insufficient memory for hIST chunk data.");
247 png_ptr->hist[i] = hist[i];
248 info_ptr->hist = png_ptr->hist;