HomeSort by relevance Sort by last modified time
    Searched full:hitrate (Results 1 - 25 of 27) sorted by null

1 2

  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
predict.def 22 DEF_PREDICTOR (ENUM, NAME, HITRATE)
32 HITRATE is the probability that edge predicted by predictor as taken
69 DEF_PREDICTOR (PRED_CONTINUE, "continue", HITRATE (50), 0)
80 DEF_PREDICTOR (PRED_LOOP_BRANCH, "loop branch", HITRATE (86),
84 DEF_PREDICTOR (PRED_LOOP_EXIT, "loop exit", HITRATE (91),
88 DEF_PREDICTOR (PRED_POINTER, "pointer", HITRATE (85), 0)
89 DEF_PREDICTOR (PRED_TREE_POINTER, "pointer (on trees)", HITRATE (85), 0)
92 DEF_PREDICTOR (PRED_OPCODE_POSITIVE, "opcode values positive", HITRATE (79), 0)
93 DEF_PREDICTOR (PRED_OPCODE_NONEQUAL, "opcode values nonequal", HITRATE (71), 0)
94 DEF_PREDICTOR (PRED_FPOPCODE, "fp_opcode", HITRATE (90), 0
    [all...]
predict.h 24 #define DEF_PREDICTOR(ENUM, NAME, HITRATE, FLAGS) ENUM,
reg-notes.def 108 that added the note, second specifies the predicted hitrate of
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
predict.def 22 DEF_PREDICTOR (ENUM, NAME, HITRATE)
32 HITRATE is the probability that edge predicted by predictor as taken
69 DEF_PREDICTOR (PRED_CONTINUE, "continue", HITRATE (50), 0)
80 DEF_PREDICTOR (PRED_LOOP_BRANCH, "loop branch", HITRATE (86),
84 DEF_PREDICTOR (PRED_LOOP_EXIT, "loop exit", HITRATE (91),
88 DEF_PREDICTOR (PRED_POINTER, "pointer", HITRATE (85), 0)
89 DEF_PREDICTOR (PRED_TREE_POINTER, "pointer (on trees)", HITRATE (85), 0)
92 DEF_PREDICTOR (PRED_OPCODE_POSITIVE, "opcode values positive", HITRATE (79), 0)
93 DEF_PREDICTOR (PRED_OPCODE_NONEQUAL, "opcode values nonequal", HITRATE (71), 0)
94 DEF_PREDICTOR (PRED_FPOPCODE, "fp_opcode", HITRATE (90), 0
    [all...]
predict.h 24 #define DEF_PREDICTOR(ENUM, NAME, HITRATE, FLAGS) ENUM,
reg-notes.def 108 that added the note, second specifies the predicted hitrate of
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
predict.def 22 DEF_PREDICTOR (ENUM, NAME, HITRATE)
32 HITRATE is the probability that edge predicted by predictor as taken
69 DEF_PREDICTOR (PRED_CONTINUE, "continue", HITRATE (50), 0)
80 DEF_PREDICTOR (PRED_LOOP_BRANCH, "loop branch", HITRATE (86),
84 DEF_PREDICTOR (PRED_LOOP_EXIT, "loop exit", HITRATE (91),
88 DEF_PREDICTOR (PRED_POINTER, "pointer", HITRATE (85), 0)
89 DEF_PREDICTOR (PRED_TREE_POINTER, "pointer (on trees)", HITRATE (85), 0)
92 DEF_PREDICTOR (PRED_OPCODE_POSITIVE, "opcode values positive", HITRATE (79), 0)
93 DEF_PREDICTOR (PRED_OPCODE_NONEQUAL, "opcode values nonequal", HITRATE (71), 0)
94 DEF_PREDICTOR (PRED_FPOPCODE, "fp_opcode", HITRATE (90), 0
    [all...]
predict.h 24 #define DEF_PREDICTOR(ENUM, NAME, HITRATE, FLAGS) ENUM,
reg-notes.def 108 that added the note, second specifies the predicted hitrate of
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
predict.def 22 DEF_PREDICTOR (ENUM, NAME, HITRATE)
32 HITRATE is the probability that edge predicted by predictor as taken
69 DEF_PREDICTOR (PRED_CONTINUE, "continue", HITRATE (50), 0)
80 DEF_PREDICTOR (PRED_LOOP_BRANCH, "loop branch", HITRATE (86),
84 DEF_PREDICTOR (PRED_LOOP_EXIT, "loop exit", HITRATE (91),
88 DEF_PREDICTOR (PRED_POINTER, "pointer", HITRATE (85), 0)
89 DEF_PREDICTOR (PRED_TREE_POINTER, "pointer (on trees)", HITRATE (85), 0)
92 DEF_PREDICTOR (PRED_OPCODE_POSITIVE, "opcode values positive", HITRATE (79), 0)
93 DEF_PREDICTOR (PRED_OPCODE_NONEQUAL, "opcode values nonequal", HITRATE (71), 0)
94 DEF_PREDICTOR (PRED_FPOPCODE, "fp_opcode", HITRATE (90), 0
    [all...]
predict.h 24 #define DEF_PREDICTOR(ENUM, NAME, HITRATE, FLAGS) ENUM,
reg-notes.def 108 that added the note, second specifies the predicted hitrate of
  /external/guava/guava-tests/test/com/google/common/cache/
CacheStatsTest.java 32 assertEquals(1.0, stats.hitRate());
48 assertEquals(11.0/24, stats.hitRate());
67 assertEquals(42.0/76, diff.hitRate());
88 assertEquals(64.0/124, sum.hitRate());
LocalLoadingCacheTest.java 94 assertEquals(0.0, stats.hitRate());
107 assertEquals(1.0/2, stats.hitRate());
118 assertEquals(1.0/3, stats.hitRate());
132 assertEquals(1.0/4, stats.hitRate());
AbstractCacheTest.java 88 assertEquals(1.0, stats.hitRate());
120 assertEquals(11.0/requestCount, stats.hitRate());
  /libcore/benchmarks/src/benchmarks/regression/
PriorityQueueBenchmark.java 29 @Param({"0", "25", "50", "75", "100"}) private int hitRate;
41 int numShared = (int)(queueSize * ((double)hitRate / 100));
42 // the total number of elements we require to engineer a hit rate of hitRate%
  /external/guava/guava/src/com/google/common/cache/
CacheStats.java 105 * Note that {@code hitRate + missRate =~ 1.0}.
107 public double hitRate() {
125 * Note that {@code hitRate + missRate =~ 1.0}. Cache misses include all requests which
  /frameworks/base/core/tests/coretests/src/android/util/
LruCacheTest.java 146 assertEquals("LruCache[maxSize=3,hits=0,misses=0,hitRate=0%]", cache.toString());
159 assertEquals("LruCache[maxSize=3,hits=3,misses=2,hitRate=60%]", cache.toString());
  /frameworks/base/core/java/android/util/
LruCache.java 378 return String.format("LruCache[maxSize=%d,hits=%d,misses=%d,hitRate=%d%%]",
  /frameworks/base/tools/layoutlib/bridge/src/android/util/
LruCache.java 388 return String.format("LruCache[maxSize=%d,hits=%d,misses=%d,hitRate=%d%%]",
  /frameworks/support/v4/java/android/support/v4/util/
LruCache.java 323 return String.format("LruCache[maxSize=%d,hits=%d,misses=%d,hitRate=%d%%]",
  /frameworks/native/opengl/libagl/
array.cpp 416 printf( "total=%5u, hits=%5u, miss=%5u, hitrate=%3u%%,"
    [all...]
  /development/samples/training/AnimationsDemo/libs/
android-support-v13.jar 
  /development/samples/training/ContactsList/libs/
android-support-v4.jar 
  /development/samples/training/NavigationDrawer/libs/
android-support-v4.jar 

Completed in 893 milliseconds

1 2