Searched refs:maxEntries (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DSimpleCache.java29 public SimpleCache(final int maxEntries) { argument
30 super(maxEntries + 1, 1f, true);
31 mMaxEntries = maxEntries;
/frameworks/base/core/java/android/provider/
H A DSearchRecentSuggestions.java227 * @param maxEntries Max entries to leave in the table. 0 means remove all entries.
229 protected void truncateHistory(ContentResolver cr, int maxEntries) { argument
230 if (maxEntries < 0) {
237 if (maxEntries > 0) {
241 " LIMIT -1 OFFSET " + String.valueOf(maxEntries) + ")";
/frameworks/native/opengl/libs/EGL/
H A DBlobCache_test.cpp249 const int maxEntries = MAX_TOTAL_SIZE / 2;
250 for (int i = 0; i < maxEntries; i++) {
256 uint8_t k = maxEntries;
261 for (int i = 0; i < maxEntries+1; i++) {
267 ASSERT_EQ(maxEntries/2 + 1, numCached);
306 const int maxEntries = MAX_TOTAL_SIZE / 2; local
307 for (int i = 0; i < maxEntries; i++) {
315 for (int i = 0; i < maxEntries; i++) {
325 const int maxEntries = MAX_TOTAL_SIZE / 2; local
326 for (int i = 0; i < maxEntries;
347 const int maxEntries = MAX_TOTAL_SIZE / 2; local
[all...]

Completed in 4230 milliseconds