Searched refs:oldOffset (Results 1 – 2 of 2) sorted by relevance
/dalvik/dx/src/com/android/dx/merge/ |
D | IndexMap.java | 76 public void putTypeListOffset(int oldOffset, int newOffset) { in putTypeListOffset() argument 77 if (oldOffset <= 0 || newOffset <= 0) { in putTypeListOffset() 80 typeListOffsets.put(oldOffset, newOffset); in putTypeListOffset() 83 public void putAnnotationOffset(int oldOffset, int newOffset) { in putAnnotationOffset() argument 84 if (oldOffset <= 0 || newOffset <= 0) { in putAnnotationOffset() 87 annotationOffsets.put(oldOffset, newOffset); in putAnnotationOffset() 90 public void putAnnotationSetOffset(int oldOffset, int newOffset) { in putAnnotationSetOffset() argument 91 if (oldOffset <= 0 || newOffset <= 0) { in putAnnotationSetOffset() 94 annotationSetOffsets.put(oldOffset, newOffset); in putAnnotationSetOffset() 97 public void putAnnotationDirectoryOffset(int oldOffset, int newOffset) { in putAnnotationDirectoryOffset() argument [all …]
|
/dalvik/vm/ |
D | Profile.cpp | 737 int oldOffset, newOffset; in dvmMethodTraceAdd() local 761 oldOffset = state->curOffset; in dvmMethodTraceAdd() 762 newOffset = oldOffset + state->recordSize; in dvmMethodTraceAdd() 767 } while (android_atomic_release_cas(oldOffset, newOffset, in dvmMethodTraceAdd() 777 ptr = state->buf + oldOffset; in dvmMethodTraceAdd()
|