HomeSort by relevance Sort by last modified time
    Searched refs:cache_bits (Results 1 - 16 of 16) sorted by null

  /external/harfbuzz_ng/src/
hb-cache-private.hh 35 template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits>
38 ASSERT_STATIC (key_bits >= cache_bits);
39 ASSERT_STATIC (key_bits + value_bits - cache_bits < 8 * sizeof (unsigned int));
48 unsigned int k = key & ((1<<cache_bits)-1);
50 if ((v >> value_bits) != (key >> cache_bits))
60 unsigned int k = key & ((1<<cache_bits)-1);
61 unsigned int v = ((key>>cache_bits)<<value_bits) | value;
67 unsigned int values[1<<cache_bits];
  /external/webp/src/enc/
histogram.h 83 // using 'cache_bits'. Return NULL in case of memory error.
84 VP8LHistogramSet* VP8LAllocateHistogramSet(int size, int cache_bits);
86 // Allocate and initialize histogram object with specified 'cache_bits'.
89 VP8LHistogram* VP8LAllocateHistogram(int cache_bits);
104 int histogram_bits, int cache_bits,
backward_references.c 343 int cache_bits, VP8LBackwardRefs* const refs) {
346 const int use_color_cache = (cache_bits > 0);
349 if (use_color_cache && !VP8LColorCacheInit(&hashers, cache_bits)) {
386 const uint32_t* const argb, int cache_bits,
393 const int use_color_cache = (cache_bits > 0);
401 cc_init = VP8LColorCacheInit(&hashers, cache_bits);
485 int cache_bits, VP8LHashChain* const hash_chain,
509 static int CostModelBuild(CostModel* const m, int cache_bits,
512 VP8LHistogram* const histo = VP8LAllocateHistogram(cache_bits);
515 VP8LHistogramCreate(histo, refs, cache_bits);
    [all...]
histogram.c 35 const int cache_bits = p->palette_code_bits_; local
36 const int histo_size = VP8LGetHistogramSize(cache_bits);
38 p->palette_code_bits_ = cache_bits;
59 int VP8LGetHistogramSize(int cache_bits) {
60 const int literal_size = VP8LHistogramNumCodes(cache_bits);
98 VP8LHistogram* VP8LAllocateHistogram(int cache_bits) {
100 const int total_size = VP8LGetHistogramSize(cache_bits);
106 VP8LHistogramInit(histo, cache_bits);
110 VP8LHistogramSet* VP8LAllocateHistogramSet(int size, int cache_bits) {
113 const int histo_size = VP8LGetHistogramSize(cache_bits);
    [all...]
vp8l.c 231 // Allocate histogram set with cache_bits = 0.
754 int cache_bits = 0; local
764 refs = VP8LGetBackwardReferences(width, height, argb, quality, 0, &cache_bits,
770 histogram_image = VP8LAllocateHistogramSet(1, cache_bits);
827 int low_effort, int* cache_bits,
859 *cache_bits = MAX_COLOR_CACHE_BITS;
864 low_effort, cache_bits, hash_chain,
871 VP8LAllocateHistogramSet(histogram_image_xysize, *cache_bits);
872 tmp_histos = VP8LAllocateHistogramSet(2, *cache_bits);
880 histogram_bits, *cache_bits, histogram_image
    [all...]
backward_references.h 188 // The input cache_bits to 'VP8LGetBackwardReferences' sets the maximum cache
190 // The optimal cache bits is evaluated and set for the *cache_bits parameter.
195 int low_effort, int* const cache_bits, VP8LHashChain* const hash_chain,
alpha.c 268 stats->cache_bits = best.stats.cache_bits;
  /external/opencv3/3rdparty/libwebp/enc/
backward_references.c 147 int cache_bits, int* window_size,
161 *iter_limit = (cache_bits > 0) ? iter_neg : iter_neg / 2;
265 int cache_bits, int quality,
270 const int use_color_cache = (cache_bits > 0);
280 cc_init = VP8LColorCacheInit(&hashers, cache_bits);
287 GetParamsForHashChainFindCopy(quality, xsize, cache_bits,
386 const uint32_t* const argb, int quality, int cache_bits,
412 int quality, int cache_bits) {
421 argb, quality, cache_bits, &refs)) {
425 if (!BackwardReferencesHashChain(xsize, ysize, argb, cache_bits, quality
869 int cache_bits; local
    [all...]
histogram.h 70 // using 'cache_bits'. Return NULL in case of memory error.
71 VP8LHistogramSet* VP8LAllocateHistogramSet(int size, int cache_bits);
93 int quality, int histogram_bits, int cache_bits,
backward_references.h 207 int quality, int cache_bits, int use_2d_locality,
histogram.c 56 VP8LHistogramSet* VP8LAllocateHistogramSet(int size, int cache_bits) {
75 VP8LHistogramInit(set->histograms[i], cache_bits);
483 int quality, int histo_bits, int cache_bits,
497 VP8LAllocateHistogramSet(histo_image_raw_size, cache_bits);
vp8l.c 522 int cache_bits, int histogram_bits) {
525 const int use_color_cache = (cache_bits > 0);
548 if (!VP8LGetBackwardReferences(width, height, argb, quality, cache_bits,
554 quality, histogram_bits, cache_bits,
575 VP8LWriteBits(bw, 4, cache_bits);
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_state_upload.c 383 static struct dirty_bit_map cache_bits[] = { variable in typeref:struct:dirty_bit_map
508 brw_update_dirty_count(cache_bits, state->cache);
512 brw_print_dirty_count(cache_bits, state->cache);
  /external/opencv3/3rdparty/libwebp/webp/
encode.h 198 int cache_bits; // number of bits for color cache lookup member in struct:WebPAuxStats
  /external/webp/include/webp/
encode.h 222 int cache_bits; // number of bits for color cache lookup member in struct:WebPAuxStats
  /external/webp/src/webp/
encode.h 222 int cache_bits; // number of bits for color cache lookup member in struct:WebPAuxStats

Completed in 730 milliseconds