Home
last modified time | relevance | path

Searched refs:adjust (Results 1 – 3 of 3) sorted by relevance

/dalvik/libdex/
DSysUtil.cpp199 int adjust; in sysMapFileSegmentInShmem() local
205 adjust = start % SYSTEM_PAGE_SIZE; in sysMapFileSegmentInShmem()
206 actualStart = start - adjust; in sysMapFileSegmentInShmem()
207 actualLength = length + adjust; in sysMapFileSegmentInShmem()
219 pMap->addr = (char*)memPtr + adjust; in sysMapFileSegmentInShmem()
/dalvik/dx/src/com/android/dx/merge/
DIndexMap.java192 public MethodId adjust(MethodId methodId) { in adjust() method in IndexMap
199 public FieldId adjust(FieldId fieldId) { in adjust() method in IndexMap
207 public ProtoId adjust(ProtoId protoId) { in adjust() method in IndexMap
214 public ClassDef adjust(ClassDef classDef) { in adjust() method in IndexMap
222 public SortableType adjust(SortableType sortableType) { in adjust() method in IndexMap
223 return new SortableType(sortableType.getDex(), adjust(sortableType.getClassDef())); in adjust()
239 public Annotation adjust(Annotation annotation) { in adjust() method in IndexMap
DDexMerger.java451 return indexMap.adjust(in.readProtoId()); in mergeProtoIds()
474 return indexMap.adjust(in.readFieldId()); in mergeFieldIds()
497 return indexMap.adjust(in.readMethodId()); in mergeMethodIds()
521 return indexMap.adjust(in.readAnnotation()); in mergeAnnotations()
591 SortableType sortableType = indexMap.adjust(new SortableType(buffer, classDef)); in readSortableTypes()