Home
last modified time | relevance | path

Searched refs:WARMUP_ROUNDS (Results 1 – 3 of 3) sorted by relevance

/external/jackson-core/src/test/java/perf/
DParserTestBase.java19 final int WARMUP_ROUNDS = 5; in test() local
46 if (roundsDone >= WARMUP_ROUNDS) { in test()
53 if ((roundsDone % 3) == 0 && roundsDone > WARMUP_ROUNDS) { in test()
54 double den = (double) (roundsDone - WARMUP_ROUNDS); in test()
DManualCharAccessTest.java56 final int WARMUP_ROUNDS = 5; in test() local
85 if (roundsDone >= WARMUP_ROUNDS) { in test()
92 if ((roundsDone % 7) == 0 && roundsDone > WARMUP_ROUNDS) { in test()
93 double den = (double) (roundsDone - WARMUP_ROUNDS); in test()
/external/jackson-databind/src/test/java/perf/
DObjectReaderTestBase.java9 protected final static int WARMUP_ROUNDS = 5; field in ObjectReaderTestBase