Home
last modified time | relevance | path

Searched refs:step (Results 1 – 12 of 12) sorted by relevance

/libcore/luni/src/test/java/dalvik/system/
DVMRuntimeTest.java27 private void doTestNewNonMovableArray(Class<?> componentType, int step, int maxLength) { in doTestNewNonMovableArray() argument
42 for (int i = 0; i <= maxLength; i += step) { in doTestNewNonMovableArray()
66 int step = 67; in testNewNonMovableArray() local
67 doTestNewNonMovableArray(boolean.class, step, maxLengthForLoop); in testNewNonMovableArray()
68 doTestNewNonMovableArray(byte.class, step, maxLengthForLoop); in testNewNonMovableArray()
69 doTestNewNonMovableArray(char.class, step, maxLengthForLoop); in testNewNonMovableArray()
70 doTestNewNonMovableArray(short.class, step, maxLengthForLoop); in testNewNonMovableArray()
71 doTestNewNonMovableArray(int.class, step, maxLengthForLoop); in testNewNonMovableArray()
72 doTestNewNonMovableArray(long.class, step, maxLengthForLoop); in testNewNonMovableArray()
73 doTestNewNonMovableArray(float.class, step, maxLengthForLoop); in testNewNonMovableArray()
[all …]
/libcore/
DCleanSpec.mk48 $(call add-clean-step, rm -rf $(OUT)/system/framework/conscrypt-nojarjar.jar)
49 $(call add-clean-step, rm -rf $(OUT)/system/framework/conscrypt-nojarjar.jar)
50 $(call add-clean-step, rm -rf $(OUT)/system/etc/security/cacerts/*)
/libcore/luni/src/test/java/libcore/java/util/zip/
DOldAndroidGZIPStreamTest.java65 byte val, step; in makeSampleFile()
69 step = 1; in makeSampleFile()
74 val += step; in makeSampleFile()
77 step += stepStep; in makeSampleFile()
DOldAndroidDeflateTest.java74 private void bigTest(int step, int expectedAdler) in bigTest() argument
82 createSample(input, step); in bigTest()
99 byte val, step; in createSample()
105 step = 1; in createSample()
110 val += step; in createSample()
113 step += stepStep; in createSample()
DOldAndroidZipStreamTest.java72 byte val, step; in makeSampleFile()
76 step = 1; in makeSampleFile()
81 val += step; in makeSampleFile()
84 step += stepStep; in makeSampleFile()
DOldAndroidZipFileTest.java59 byte val, step; in makeSampleFile()
63 step = 1; in makeSampleFile()
68 val += step; in makeSampleFile()
71 step += stepStep; in makeSampleFile()
/libcore/luni/src/test/resources/systemid/
Drecipt.dtd9 <!ELEMENT preparation (step*)>
10 <!ELEMENT step (#PCDATA)> element
/libcore/luni/src/test/resources/
Drecipt.dtd9 <!ELEMENT preparation (step*)>
10 <!ELEMENT step (#PCDATA)> element
/libcore/luni/src/test/java/tests/support/
DMockFunction.java42 public void step(FunctionContext fc, String args[]) { in step() method in MockFunction
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/
DByteBufferTest.java2041 int nbytes = 4, bigHead, step; in bytes2int() local
2044 step = 1; in bytes2int()
2047 step = -1; in bytes2int()
2054 p += step; in bytes2int()
2060 int nbytes = 8, bigHead, step; in bytes2long() local
2063 step = 1; in bytes2long()
2066 step = -1; in bytes2long()
2073 p += step; in bytes2long()
2079 int nbytes = 2, bigHead, step; in bytes2short() local
2082 step = 1; in bytes2short()
[all …]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
DMatcherTest.java577 int step = 16; // Ideally 1, but devices are still too slow. in testAllCodePoints_p() local
578 for (int i = 0; i < 0x110000; i += step) { in testAllCodePoints_p()
596 int step = 16; // Ideally 1, but devices are still too slow. in testAllCodePoints_P() local
597 for (int i = 0; i < 0x110000; i += step) { in testAllCodePoints_P()
606 assertEquals(0x110000 / step, cnt); in testAllCodePoints_P()
/libcore/luni/src/main/java/java/util/concurrent/
DForkJoinPool.java1347 int step = (n <= 4) ? 2 : ((n >>> 1) & EVENMASK) + 2; in registerWorker() local
1348 while (ws[r = (r + step) & m] != null) { in registerWorker()