Home
last modified time | relevance | path

Searched refs:histo_queue (Results 1 – 1 of 1) sorted by relevance

/external/webp/src/enc/
Dhistogram.c588 static int HistoQueueInit(HistoQueue* const histo_queue, const int max_index) { in HistoQueueInit() argument
589 histo_queue->size = 0; in HistoQueueInit()
597 histo_queue->max_size = max_index * max_index; in HistoQueueInit()
600 histo_queue->queue = WebPSafeMalloc(histo_queue->max_size + 1, in HistoQueueInit()
601 sizeof(*histo_queue->queue)); in HistoQueueInit()
602 return histo_queue->queue != NULL; in HistoQueueInit()
605 static void HistoQueueClear(HistoQueue* const histo_queue) { in HistoQueueClear() argument
606 assert(histo_queue != NULL); in HistoQueueClear()
607 WebPSafeFree(histo_queue->queue); in HistoQueueClear()
620 static void UpdateQueueFront(HistoQueue* const histo_queue) { in UpdateQueueFront() argument
[all …]