Lines Matching defs:bucket
99 ePICPixHashElem *bucket[EPIC_HASH_SIZE];
398 ePICPixHashElem *bucket = hash->bucket[idx];
401 if (bucket[i].pix_id == key)
402 return &bucket[i];
409 ePICPixHashElem *bucket, *ret;
412 if (hash->bucket_size[idx] > INT_MAX / sizeof(**hash->bucket))
417 bucket = av_realloc(hash->bucket[idx], new_size * sizeof(*bucket));
418 if (!bucket)
420 hash->bucket[idx] = bucket;
424 ret = &hash->bucket[idx][hash->bucket_fill[idx]++];
468 ePICPixListElem *list_elem = hash->bucket[i][j].list;
475 av_freep(&hash->bucket[i]);