Searched refs:hdr_ptr (Results 1 – 1 of 1) sorted by relevance
271 small_pool_ptr hdr_ptr, prev_hdr_ptr; in alloc_small() local297 hdr_ptr = mem->small_list[pool_id]; in alloc_small()298 while (hdr_ptr != NULL) { in alloc_small()299 if (hdr_ptr->bytes_left >= sizeofobject) in alloc_small()301 prev_hdr_ptr = hdr_ptr; in alloc_small()302 hdr_ptr = hdr_ptr->next; in alloc_small()306 if (hdr_ptr == NULL) { in alloc_small()318 hdr_ptr = (small_pool_ptr)jpeg_get_small(cinfo, min_request + slop); in alloc_small()319 if (hdr_ptr != NULL) in alloc_small()327 hdr_ptr->next = NULL; in alloc_small()[all …]