Searched refs:hdr_ptr (Results 1 – 1 of 1) sorted by relevance
261 small_pool_ptr hdr_ptr, prev_hdr_ptr; in alloc_small() local278 hdr_ptr = mem->small_list[pool_id]; in alloc_small()279 while (hdr_ptr != NULL) { in alloc_small()280 if (hdr_ptr->hdr.bytes_left >= sizeofobject) in alloc_small()282 prev_hdr_ptr = hdr_ptr; in alloc_small()283 hdr_ptr = hdr_ptr->hdr.next; in alloc_small()287 if (hdr_ptr == NULL) { in alloc_small()299 hdr_ptr = (small_pool_ptr) jpeg_get_small(cinfo, min_request + slop); in alloc_small()300 if (hdr_ptr != NULL) in alloc_small()308 hdr_ptr->hdr.next = NULL; in alloc_small()[all …]