Searched defs:newOffset (Results 1 - 2 of 2) sorted by relevance

/dalvik/dx/src/com/android/dx/merge/
H A DIndexMap.java103 public void putTypeListOffset(int oldOffset, int newOffset) { argument
104 if (oldOffset <= 0 || newOffset <= 0) {
107 typeListOffsets.put(oldOffset, newOffset);
110 public void putAnnotationOffset(int oldOffset, int newOffset) { argument
111 if (oldOffset <= 0 || newOffset <= 0) {
114 annotationOffsets.put(oldOffset, newOffset);
117 public void putAnnotationSetOffset(int oldOffset, int newOffset) { argument
118 if (oldOffset <= 0 || newOffset <= 0) {
121 annotationSetOffsets.put(oldOffset, newOffset);
124 public void putAnnotationSetRefListOffset(int oldOffset, int newOffset) { argument
131 putAnnotationDirectoryOffset(int oldOffset, int newOffset) argument
138 putEncodedArrayValueOffset(int oldOffset, int newOffset) argument
[all...]
/dalvik/libdex/
H A DDexSwapVerify.cpp2486 u4 newOffset = (offset + alignmentMask) & ~alignmentMask; local
2487 u1* ptr = (u1*) filePointer(state, newOffset);
2489 if (offset < newOffset) {
2491 if (offset < newOffset) {
2492 CHECK_OFFSET_RANGE(offset, newOffset);
2493 while (offset < newOffset) {
2505 newOffset = fileOffset(state, newPtr);
2512 if (newOffset > state->fileLen) {
2522 offset = newOffset;

Completed in 70 milliseconds