Home
last modified time | relevance | path

Searched refs:numbers (Results 1 – 8 of 8) sorted by relevance

/art/test/708-jit-cache-churn/src/
DJitCacheChurnTest.java199 private final String [] numbers = { "One", "Two", "Three", "Four", "Five", "Six" }; field in JitCacheChurnTest.TaskNine
202 String number = numbers[instance % numbers.length]; in $noinline$Call()
208 private final String [] numbers = { "12345", "23451", "34512", "78901", "89012" }; field in JitCacheChurnTest.TaskTen
212 String number = numbers[instance % numbers.length]; in $noinline$Call()
214 odd += Integer.parseInt(numbers[i]); in $noinline$Call()
220 even += Integer.parseInt(numbers[i]); in $noinline$Call()
/art/test/055-enum-performance/
Dinfo.txt1 This is a performance test of Enum.valueOf(). To see the numbers, invoke
/art/test/451-regression-add-float/
Dinfo.txt2 could be now be a constant for floating point numbers.
/art/test/133-static-invoke-super/
Dinfo.txt1 This is a performance test of invoking static methods in super class. To see the numbers, invoke
/art/test/175-alloc-big-bignums/
Dinfo.txt1 Allocate large numbers of huge BigIntegers in rapid succession. Most of the
/art/tools/ahat/etc/
Dstyle.css30 * Most of the columns show numbers of bytes. Numbers should be right aligned.
/art/tools/jvmti-agents/ti-alloc-sample/
DREADME.md64 represented as just numbers.
/art/test/956-methodhandles/src/
DMain.java1232 public VariableArityTester(char c, Number... numbers) { update(c, numbers); } in VariableArityTester() argument
1254 public String update(char c, Number... numbers) { return lastResult = tally(c, numbers); } in update() argument
1283 public static String tally(char c, Number... numbers) { in tally() argument
1284 return c + ", " + Arrays.toString(numbers); in tally()