Searched refs:newOffset (Results 1 - 3 of 3) sorted by relevance

/dalvik/dx/src/com/android/dx/merge/
H A DIndexMap.java95 public void putTypeListOffset(int oldOffset, int newOffset) { argument
96 if (oldOffset <= 0 || newOffset <= 0) {
99 typeListOffsets.put(oldOffset, newOffset);
102 public void putAnnotationOffset(int oldOffset, int newOffset) { argument
103 if (oldOffset <= 0 || newOffset <= 0) {
106 annotationOffsets.put(oldOffset, newOffset);
109 public void putAnnotationSetOffset(int oldOffset, int newOffset) { argument
110 if (oldOffset <= 0 || newOffset <= 0) {
113 annotationSetOffsets.put(oldOffset, newOffset);
116 public void putAnnotationSetRefListOffset(int oldOffset, int newOffset) { argument
123 putAnnotationDirectoryOffset(int oldOffset, int newOffset) argument
130 putStaticValuesOffset(int oldOffset, int newOffset) argument
[all...]
/dalvik/vm/
H A DProfile.cpp937 int oldOffset, newOffset; local
947 newOffset = oldOffset + state->recordSize;
948 if (newOffset > state->bufferSize) {
952 } while (android_atomic_release_cas(oldOffset, newOffset,
/dalvik/libdex/
H A DDexSwapVerify.cpp2408 u4 newOffset = (offset + alignmentMask) & ~alignmentMask; local
2409 u1* ptr = (u1*) filePointer(state, newOffset);
2411 if (offset < newOffset) {
2413 if (offset < newOffset) {
2414 CHECK_OFFSET_RANGE(offset, newOffset);
2415 while (offset < newOffset) {
2427 newOffset = fileOffset(state, newPtr);
2434 if (newOffset > state->fileLen) {
2444 offset = newOffset;

Completed in 55 milliseconds