HomeSort by relevance Sort by last modified time
    Searched refs:misses (Results 1 - 25 of 133) sorted by null

1 2 3 4 5 6

  /external/curl/tests/
extern-scan.pl 41 my $misses=0;
symbol-scan.pl 59 my $misses=0;
97 $misses++;
137 $misses++;
160 $misses++;
174 if($misses) {
  /external/libdrm/
xf86drmHash.h 43 unsigned long misses; /* Not in table */ member in struct:HashTable
xf86drmHash.c 118 table->misses = 0;
171 ++table->misses;
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue14331.go 7 // Inline function misses struct tags.
issue4879.go 7 // Issue 4879: export data misses the '&' for some
  /prebuilts/go/linux-x86/test/fixedbugs/
issue14331.go 7 // Inline function misses struct tags.
issue4879.go 7 // Issue 4879: export data misses the '&' for some
  /external/guava/guava-tests/benchmark/com/google/common/cache/
LoadingCacheSingleThreadBenchmark.java 49 static AtomicLong misses = new AtomicLong(0); field in class:LoadingCacheSingleThreadBenchmark
62 return (int) misses.incrementAndGet();
73 misses.set(0);
99 double hit = req - misses.get();
  /external/guava/guava-tests/benchmark/com/google/common/collect/
MapMakerSingleThreadBenchmark.java 52 static AtomicLong misses = new AtomicLong(0); field in class:MapMakerSingleThreadBenchmark
65 return (int) misses.incrementAndGet();
76 misses.set(0);
102 double hit = req - misses.get();
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CharsetRecog_2022.java 39 int misses = 0; local
64 misses++;
83 quality = (100*hits - 100*misses) / (hits + misses);
  /external/selinux/libselinux/utils/
avcstat.c 27 #define HEADERS "lookups hits misses allocations reclaims frees"
32 unsigned long long misses; member in struct:avc_cache_stats
177 "hits", "misses", "allocs", "reclaims", "frees");
187 &tmp.misses,
196 tot.misses += tmp.misses;
208 tot.lookups, tot.hits, tot.misses,
213 rel.misses = tot.misses - last.misses;
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteDebug.java 136 /** statement cache stats: hits/misses/cachesize */
140 int hits, int misses, int cachesize) {
145 this.cache = hits + "/" + misses + "/" + cachesize;
  /external/icu/icu4c/source/i18n/
csr2022.cpp 39 int32_t misses = 0; local
70 misses += 1;
91 quality = (100*hits - 100*misses) / (hits + misses);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CharsetRecog_2022.java 38 int misses = 0; local
63 misses++;
82 quality = (100*hits - 100*misses) / (hits + misses);
  /external/autotest/scheduler/
rdb_cache_manager.py 212 self.misses = 0
230 if not self.hits and not self.misses:
232 requests = float(self.hits + self.misses)
273 self.misses += 1
rdb_cache_unittests.py 76 if not (self.cache.hits == 0 and self.cache.misses == 2):
135 if not (self.cache.hits == 2 and self.cache.misses ==1):
179 if not (self.cache.misses == 1 and self.cache.hits == 2):
228 assert(self.cache.misses == 2 and self.cache.hits == 1)
293 cache.misses = 0
320 if not (self.cache.hits == 0 and self.cache.misses == 2):
  /external/mesa3d/src/glx/
glxhash.c 120 unsigned long misses; /* Not in table */ member in struct:__glxHashTable
168 table->misses = 0;
226 ++table->misses;
361 printf("Hits = %ld, partials = %ld, misses = %ld\n",
362 table->hits, table->partials, table->misses);
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
LruBitmapPool.java 31 private int misses; field in class:LruBitmapPool
116 misses++;
164 Log.v(TAG, "Hits=" + hits + " misses=" + misses + " puts=" + puts + " evictions=" + evictions
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
Interval.java 40 public static int misses = 0; field in class:Interval
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/sbcs/
StatisticsTool.java 393 int charCount, misses = 0; local
428 misses += 1;
436 if (misses > 0) {
437 System.out.println(" NONE: " + misses);
  /prebuilts/go/darwin-x86/src/cmd/pprof/internal/svg/
svg.go 26 // Work around for dot bug which misses quoting some ampersands,
  /prebuilts/go/linux-x86/src/cmd/pprof/internal/svg/
svg.go 26 // Work around for dot bug which misses quoting some ampersands,
  /system/extras/tests/icachetest/
Profiler.h 162 double getMPKI(uint64_t misses) const noexcept {
163 return (misses * 1000.0) / getInstructions();
  /external/libdrm/tests/
hash.c 109 printf("Entries = %ld, hits = %ld, partials = %ld, misses = %ld\n",
110 table->entries, table->hits, table->partials, table->misses);

Completed in 1020 milliseconds

1 2 3 4 5 6