Home
last modified time | relevance | path

Searched refs:step (Results 1 – 13 of 13) 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_DIR)/system/framework/conscrypt-nojarjar.jar)
49 $(call add-clean-step, rm -rf $(OUT_DIR)/system/framework/conscrypt-nojarjar.jar)
50 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/core*)
51 $(call add-clean-step, rm -rf $(OUT_DIR)/host/common/obj/JAVA_LIBRARIES/core*)
52 $(call add-clean-step, rm -rf $(OUT_DIR)/system/etc/security/cacerts/*)
53 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/core*)
54 $(call add-clean-step, rm -rf $(OUT_DIR)/host/common/obj/JAVA_LIBRARIES/core*)
55 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/core*)
56 $(call add-clean-step, rm -rf $(OUT_DIR)/host/common/obj/JAVA_LIBRARIES/core*)
/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/ojluni/src/main/java/sun/security/provider/certpath/
DAdjacencyList.java250 for (Vertex step : l) { in toString()
251 sb.append(step.toString()).append("\n"); in toString()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/
DByteBufferTest.java2086 int nbytes = 4, bigHead, step; in bytes2int() local
2089 step = 1; in bytes2int()
2092 step = -1; in bytes2int()
2099 p += step; in bytes2int()
2105 int nbytes = 8, bigHead, step; in bytes2long() local
2108 step = 1; in bytes2long()
2111 step = -1; in bytes2long()
2118 p += step; in bytes2long()
2124 int nbytes = 2, bigHead, step; in bytes2short() local
2127 step = 1; in bytes2short()
[all …]
/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/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.java1574 int step = (n <= 4) ? 2 : ((n >>> 1) & EVENMASK) + 2; in registerWorker() local
1575 while (ws[i = (i + step) & m] != null) { in registerWorker()
1907 int step = (int)(r >>> 48) | 1; in runWorker() local
1909 if (scan(w, bound, step, (int)r) < 0 && awaitWork(w) < 0) in runWorker()
1932 private int scan(WorkQueue w, int bound, int step, int r) { in scan() argument
1968 else if ((idx = (idx + step) & m) == origin) { in scan()
2012 step = 3, // first scan step in helpComplete()
2033 step = (r >>> 16) | 3; in helpComplete()
2038 else if ((k = (k + step) & m) == origin) { in helpComplete()