Searched refs:offset (Results 376 - 387 of 387) sorted by relevance

<<111213141516

/dalvik/vm/mterp/x86/
H A Dfooter.S123 /* Note: %ebx contains the 16-bit word offset to be applied to rPC to
146 xorl rINST_FULL,rINST_FULL # zero offset in case we switch interps
/dalvik/libcore/archive/src/main/native/
H A Dzipsup.c95 IDATA offset));
2190 * Attempt to read a zip entry at offset from the zip file provided.
2198 * @param[in] offset the offset into the zipFile of the desired zip entry
2211 HyZipEntry * entry, IDATA offset)
2222 if (zipFile->pointer != offset)
2224 seekResult = hyfile_seek (zipFile->fd, offset, HySeekSet);
2232 if (zipFile->pointer != offset)
2210 zip_getZipEntryFromOffset(HyPortLibrary * portLib, HyZipFile * zipFile, HyZipEntry * entry, IDATA offset) argument
/dalvik/vm/mterp/out/
H A DInterpAsm-x86.S179 * Advance rPC by branch offset in register
945 * Unconditional branch, 8-bit offset.
947 * The branch distance is a signed code-unit offset, which we need to
948 * double to get a byte offset.
964 * Unconditional branch, 16-bit offset.
966 * The branch distance is a signed code-unit offset
982 * Unconditional branch, 32-bit offset.
984 * The branch distance is a signed code-unit offset.
1022 movl %eax,rINST_FULL # set up word offset
1053 movl %eax,rINST_FULL # set up word offset
[all...]
/dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
H A DMessageDigest2Test.java665 public void engineUpdate(byte[] input, int offset, int len) { argument
/dalvik/vm/analysis/
H A DCodeVerify.c2506 * The "this" argument to <init> uses code offset kUninitThisArgAddr, which
2569 u4 offset; local
2577 offset = dexGetFirstHandlerOffset(pCode);
2580 offset = 0;
2585 dexCatchIteratorInit(&iterator, pCode, offset);
2615 offset = dexCatchIteratorGetEndOffset(&iterator, pCode);
2789 int i, offset; local
5236 int offset, absOffset; local
5239 offset = switchInsns[offsetToTargets + targ*2] |
5241 absOffset = insnIdx + offset;
[all...]
H A DDexVerify.c261 * Verify an array data table. "curOffset" is the offset of the fill-array-data
280 "VFY: invalid array data start: at %d, data offset %d, count %d\n",
285 /* offset to array data table is a relative branch-style offset */
291 "VFY: unaligned array data table: at %d, data offset %d\n",
304 "VFY: invalid array data end: at %d, data offset %d, end %d, "
440 "VFY: bad field index %d (max %d) at offset 0x%04x\n",
541 int offset, absOffset; local
/dalvik/vm/
H A DThread.c368 * Cache the vtable offset for "run()".
3030 int offset = dvmFindFieldOffset(gDvm.classJavaLangThreadGroup, local
3032 if (offset < 0) {
3035 nameStr = (StringObject*) dvmGetFieldObject(groupObj, offset);
/dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
H A DFileChannelTest.java4438 // offset from file_begin
4610 public long read(ByteBuffer[] srcs, int offset, int length) argument
4614 if (0 == offset && length == srcs.length) {
4656 public long write(ByteBuffer[] srcs, int offset, int length) argument
4660 if(0 == offset && length == srcs.length){
H A DSocketChannelTest.java4154 public long read(ByteBuffer[] targets, int offset, int length) argument
4159 if (0 == offset && length == targets.length) {
4169 public long write(ByteBuffer[] sources, int offset, int length) argument
4174 if (0 == offset && length == sources.length) {
/dalvik/vm/mterp/armv5te/
H A Dfooter.S378 mov r1, r1, asr #1 @ r1<- offset in code units
380 /* call, r0 gets catchRelPc (a code-unit offset) */
/dalvik/libcore/sql/src/test/java/tests/sql/
H A DPreparedStatementTest.java3190 public int setBytes(long pos, byte[] theBytes, int offset, int len) argument
3250 public int setString(long pos, String str, int offset, int len) argument
/dalvik/libcore/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DStreamHandlerTest.java1287 public synchronized void write(byte[] buffer, int offset, int count) { argument

Completed in 318 milliseconds

<<111213141516