Searched refs:end (Results 1 - 25 of 71) sorted by relevance

123

/dalvik/vm/compiler/codegen/x86/
H A DArchUtility.cpp27 int dvmCompilerCacheFlush(long start, long end, long flags) argument
/dalvik/dexgen/src/com/android/dexgen/util/
H A DByteArrayAnnotatedOutput.java122 * bytes at the end).
150 int end = writeAt + 1;
153 ensureCapacity(end);
154 } else if (end > data.length) {
160 cursor = end;
166 int end = writeAt + 2;
169 ensureCapacity(end);
170 } else if (end > data.length) {
177 cursor = end;
183 int end
562 private int end; field in class:ByteArrayAnnotatedOutput.Annotation
575 Annotation(int start, int end, String text) argument
597 setEndIfUnset(int end) argument
608 setEnd(int end) argument
[all...]
H A DLeb128Utils.java64 int end = ((value & Integer.MIN_VALUE) == 0) ? 0 : -1;
67 hasMore = (remaining != end)
H A DByteArray.java37 * {@code end - start} (in the constructor) */
45 * @param end {@code >= start, <= bytes.length;} end index of
48 public ByteArray(byte[] bytes, int start, int end) { argument
57 if (end < start) {
58 throw new IllegalArgumentException("end < start");
61 if (end > bytes.length) {
62 throw new IllegalArgumentException("end > bytes.length");
67 this.size = end - start;
92 * @param end {
96 slice(int start, int end) argument
[all...]
H A DHex.java251 int end = offset + length;
254 if (((offset | length | end) < 0) || (end > arr.length)) {
257 offset + "..!" + end);
/dalvik/dx/src/com/android/dx/util/
H A DByteArrayAnnotatedOutput.java131 * bytes at the end).
159 int end = writeAt + 1;
162 ensureCapacity(end);
163 } else if (end > data.length) {
169 cursor = end;
175 int end = writeAt + 2;
178 ensureCapacity(end);
179 } else if (end > data.length) {
186 cursor = end;
192 int end
555 private int end; field in class:ByteArrayAnnotatedOutput.Annotation
568 Annotation(int start, int end, String text) argument
590 setEndIfUnset(int end) argument
601 setEnd(int end) argument
[all...]
H A DLeb128Utils.java65 int end = ((value & Integer.MIN_VALUE) == 0) ? 0 : -1;
68 hasMore = (remaining != end)
151 int end = ((value & Integer.MIN_VALUE) == 0) ? 0 : -1;
154 hasMore = (remaining != end)
H A DByteArray.java37 * {@code end - start} (in the constructor) */
45 * @param end {@code >= start, <= bytes.length;} end index of
48 public ByteArray(byte[] bytes, int start, int end) { argument
57 if (end < start) {
58 throw new IllegalArgumentException("end < start");
61 if (end > bytes.length) {
62 throw new IllegalArgumentException("end > bytes.length");
67 this.size = end - start;
92 * @param end {
96 slice(int start, int end) argument
[all...]
H A DHex.java251 int end = offset + length;
254 if (((offset | length | end) < 0) || (end > arr.length)) {
257 offset + "..!" + end);
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DCatchTable.java99 /** {@code > start;} end address (exclusive) */
100 private final int end; field in class:CatchTable.Entry
109 * @param end {@code > start;} end address (exclusive)
112 public Entry(int start, int end, CatchHandlerList handlers) { argument
117 if (end <= start) {
118 throw new IllegalArgumentException("end <= start");
126 this.end = end;
133 int hash = (start * 31) + end;
[all...]
/dalvik/dx/src/com/android/dx/dex/code/
H A DCatchTable.java99 /** {@code > start;} end address (exclusive) */
100 private final int end; field in class:CatchTable.Entry
109 * @param end {@code > start;} end address (exclusive)
112 public Entry(int start, int end, CatchHandlerList handlers) { argument
117 if (end <= start) {
118 throw new IllegalArgumentException("end <= start");
126 this.end = end;
133 int hash = (start * 31) + end;
[all...]
/dalvik/tests/028-array-write/src/
H A DMain.java13 static public void report(long start, long end) { argument
18 System.out.println("Finished in " + ((end - start) / 1000000.0)
28 long start, end;
36 end = System.nanoTime();
38 report(start, end);
42 long start, end;
54 end = System.nanoTime();
56 report(start, end);
/dalvik/dexgen/src/com/android/dexgen/rop/
H A DByteBlock.java33 /** {@code > start;} bytecode offset (exclusive) of the end of the block */
34 private final int end; field in class:ByteBlock
48 * @param end {@code > start;} bytecode offset (exclusive) of the end
55 public ByteBlock(int label, int start, int end, IntList successors, argument
65 if (end <= start) {
66 throw new IllegalArgumentException("end <= start");
88 this.end = end;
97 Hex.u2(end)
[all...]
/dalvik/dx/src/com/android/dx/cf/code/
H A DByteBlock.java33 /** {@code > start;} bytecode offset (exclusive) of the end of the block */
34 private final int end; field in class:ByteBlock
48 * @param end {@code > start;} bytecode offset (exclusive) of the end
55 public ByteBlock(int label, int start, int end, IntList successors, argument
65 if (end <= start) {
66 throw new IllegalArgumentException("end <= start");
88 this.end = end;
97 Hex.u2(end)
[all...]
/dalvik/tests/030-bad-finalizer/src/
H A DBadFinalizer.java20 long start, end;
24 end = System.nanoTime();
/dalvik/vm/alloc/
H A DWriteBarrier.h44 * or equal to start and strictly less than end, have been written,
48 size_t start, size_t end)
47 dvmWriteBarrierArray(const ArrayObject *obj, size_t start, size_t end) argument
H A DHeapBitmap.cpp103 uintptr_t end = HB_OFFSET_TO_INDEX(bitmap->max - bitmap->base); local
104 for (uintptr_t i = 0; i <= end; ++i) {
137 uintptr_t end = HB_OFFSET_TO_INDEX(bitmap->max - bitmap->base); local
139 for (i = 0; i <= end; ++i) {
151 end = HB_OFFSET_TO_INDEX(bitmap->max - bitmap->base);
185 size_t end = HB_OFFSET_TO_INDEX(max - liveHb->base); local
188 for (size_t i = start; i <= end; i++) {
/dalvik/libdex/
H A DDexCatch.cpp68 u4 end = start + pTry->insnCount; local
70 if (address >= end) {
83 /* Get the handler offset just past the end of the one just iterated over.
H A DDexOptData.cpp28 * pointer into the given memory range (from start inclusive to end
31 static bool isValidPointer(const void* ptr, const void* start, const void* end) argument
33 return (ptr >= start) && (ptr < end) && (((u4) ptr & 7) == 0);
40 const u1* end = (const u1*) pOptHeader + local
45 return (u4) adler32(adler, start, end - start);
70 ALOGE("Unaligned opt data area end");
83 /* Process chunks until we see the end marker. */
/dalvik/tests/023-many-interfaces/src/
H A DManyInterfaces.java159 private static void report(String label, long start, long end, int iter, argument
162 System.out.println(label + ": " + (end - start) / 1000 + "us"
163 + " (" + (end - start) / (iter*rept) + "ns per call)");
180 long start, end;
193 end = System.nanoTime();
194 report("testIface001", start, end, iter, rept);
198 end = System.nanoTime();
199 report("testIface049", start, end, iter, rept);
203 end = System.nanoTime();
204 report("testIface099", start, end, ite
[all...]
/dalvik/tests/021-string2/src/junit/framework/
H A DComparisonFailure.java34 int end= Math.min(fExpected.length(), fActual.length());
37 for(; i < end; i++) {
56 if (i <= end && i > 0) {
/dalvik/tests/053-wait-some/src/
H A DMain.java19 long start, end;
40 end = System.currentTimeMillis();
42 long elapsed = end - start;
/dalvik/tests/082-inline-execute/src/junit/framework/
H A DComparisonFailure.java34 int end= Math.min(fExpected.length(), fActual.length());
37 for(; i < end; i++) {
56 if (i <= end && i > 0) {
/dalvik/docs/
H A Dprettify.js138 " defined elsif end ensure false in module next nil not or redo rescue " +
239 pattern += '|^)\\s*$'; // matches at end, and matches empty string
287 var end = html.indexOf(';', pos);
288 if (end >= 0) {
289 var num = html.substring(pos + 3, end);
298 html.substring(end + 1));
466 // ignored. Continue walking the list until we see a matching end
622 // source content, and end tag.
633 var start, end;
635 end
[all...]
/dalvik/dx/src/com/android/dx/command/dump/
H A DBlockDumper.java227 int end = bb.getEnd();
236 Hex.u2(start) + ".." + Hex.u2(end));
240 for (int j = start; j < end; j += len) {
248 parsed(bytes, end, 0, "returns");
252 parsed(bytes, end, 0, "next " + Hex.u2(succ));
261 parsed(bytes, end, 0,
269 byteAt = end;
272 int end = bytes.size();
273 if (byteAt < end) {
274 parsed(bytes, byteAt, end
[all...]

Completed in 464 milliseconds

123