Home
last modified time | relevance | path

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

/third_party/flutter/skia/third_party/externals/icu/source/common/
Drbbi_cache.h181 static inline int32_t modChunkSize(int index) { return index & (CACHE_SIZE - 1); }; in modChunkSize()
183 static constexpr int32_t CACHE_SIZE = 128; variable
184 static_assert((CACHE_SIZE & (CACHE_SIZE-1)) == 0, "CACHE_SIZE must be power of two.");
193 int32_t fBoundaries[CACHE_SIZE];
194 uint16_t fStatuses[CACHE_SIZE];
Drbbi_cache.cpp324 int32_t probe = (min + max + (min>max ? CACHE_SIZE : 0)) / 2; in seek()
/third_party/icu/icu4c/source/common/
Drbbi_cache.h181 static inline int32_t modChunkSize(int index) { return index & (CACHE_SIZE - 1); } in modChunkSize()
183 static constexpr int32_t CACHE_SIZE = 128; variable
184 static_assert((CACHE_SIZE & (CACHE_SIZE-1)) == 0, "CACHE_SIZE must be power of two.");
193 int32_t fBoundaries[CACHE_SIZE];
194 uint16_t fStatuses[CACHE_SIZE];
Drbbi_cache.cpp322 int32_t probe = (min + max + (min>max ? CACHE_SIZE : 0)) / 2; in seek()
/third_party/node/deps/icu-small/source/common/
Drbbi_cache.h181 static inline int32_t modChunkSize(int index) { return index & (CACHE_SIZE - 1); } in modChunkSize()
183 static constexpr int32_t CACHE_SIZE = 128; variable
184 static_assert((CACHE_SIZE & (CACHE_SIZE-1)) == 0, "CACHE_SIZE must be power of two.");
193 int32_t fBoundaries[CACHE_SIZE];
194 uint16_t fStatuses[CACHE_SIZE];
Drbbi_cache.cpp322 int32_t probe = (min + max + (min>max ? CACHE_SIZE : 0)) / 2; in seek()
/third_party/skia/third_party/externals/icu/source/common/
Drbbi_cache.h181 static inline int32_t modChunkSize(int index) { return index & (CACHE_SIZE - 1); } in modChunkSize()
183 static constexpr int32_t CACHE_SIZE = 128; variable
184 static_assert((CACHE_SIZE & (CACHE_SIZE-1)) == 0, "CACHE_SIZE must be power of two.");
193 int32_t fBoundaries[CACHE_SIZE];
194 uint16_t fStatuses[CACHE_SIZE];
Drbbi_cache.cpp322 int32_t probe = (min + max + (min>max ? CACHE_SIZE : 0)) / 2; in seek()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DRuleBasedBreakIterator.java1732 int probe = (min + max + (min>max ? CACHE_SIZE : 0)) / 2;
1774 private final int modChunkSize(int index) { return index & (CACHE_SIZE - 1); }; in modChunkSize()
1776 static final int CACHE_SIZE = 128; local
1785 int[] fBoundaries = new int[CACHE_SIZE];
1786 short[] fStatuses = new short[CACHE_SIZE];
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DRuleBasedBreakIterator.java1758 int probe = (min + max + (min>max ? CACHE_SIZE : 0)) / 2;
1800 private final int modChunkSize(int index) { return index & (CACHE_SIZE - 1); }; in modChunkSize()
1802 static final int CACHE_SIZE = 128; local
1811 int[] fBoundaries = new int[CACHE_SIZE];
1812 short[] fStatuses = new short[CACHE_SIZE];
/third_party/ffmpeg/libavfilter/
Dvf_paletteuse.c66 #define CACHE_SIZE (1<<(3*NBITS)) macro
86 struct cache_node cache[CACHE_SIZE]; /* lookup cache */
982 for (i = 0; i < CACHE_SIZE; i++) in load_palette()
1110 for (i = 0; i < CACHE_SIZE; i++) in uninit()