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
224 sortableType.getIndexMap(), adjust(sortableType.getClassDef())); in adjust()
240 public Annotation adjust(Annotation annotation) { in adjust() method in IndexMap
DDexMerger.java433 return indexMap.adjust(in.readProtoId()); in mergeProtoIds()
456 return indexMap.adjust(in.readFieldId()); in mergeFieldIds()
479 return indexMap.adjust(in.readMethodId()); in mergeMethodIds()
503 return indexMap.adjust(in.readAnnotation()); in mergeAnnotations()
573 SortableType sortableType = indexMap.adjust( in readSortableTypes()