Searched refs:newOffset (Results 1 – 2 of 2) sorted by relevance
/dalvik/dx/src/com/android/dx/merge/ |
D | IndexMap.java | 95 public void putTypeListOffset(int oldOffset, int newOffset) { in putTypeListOffset() argument 96 if (oldOffset <= 0 || newOffset <= 0) { in putTypeListOffset() 99 typeListOffsets.put(oldOffset, newOffset); in putTypeListOffset() 102 public void putAnnotationOffset(int oldOffset, int newOffset) { in putAnnotationOffset() argument 103 if (oldOffset <= 0 || newOffset <= 0) { in putAnnotationOffset() 106 annotationOffsets.put(oldOffset, newOffset); in putAnnotationOffset() 109 public void putAnnotationSetOffset(int oldOffset, int newOffset) { in putAnnotationSetOffset() argument 110 if (oldOffset <= 0 || newOffset <= 0) { in putAnnotationSetOffset() 113 annotationSetOffsets.put(oldOffset, newOffset); in putAnnotationSetOffset() 116 public void putAnnotationSetRefListOffset(int oldOffset, int newOffset) { in putAnnotationSetRefListOffset() argument [all …]
|
/dalvik/libdex/ |
D | DexSwapVerify.cpp | 2394 u4 newOffset = (offset + alignmentMask) & ~alignmentMask; in iterateSectionWithOptionalUpdate() local 2395 u1* ptr = (u1*) filePointer(state, newOffset); in iterateSectionWithOptionalUpdate() 2397 if (offset < newOffset) { in iterateSectionWithOptionalUpdate() 2399 if (offset < newOffset) { in iterateSectionWithOptionalUpdate() 2400 CHECK_OFFSET_RANGE(offset, newOffset); in iterateSectionWithOptionalUpdate() 2401 while (offset < newOffset) { in iterateSectionWithOptionalUpdate() 2413 newOffset = fileOffset(state, newPtr); in iterateSectionWithOptionalUpdate() 2420 if (newOffset > state->fileLen) { in iterateSectionWithOptionalUpdate() 2430 offset = newOffset; in iterateSectionWithOptionalUpdate()
|