Home
last modified time | relevance | path

Searched refs:map (Results 1 – 24 of 24) sorted by relevance

/dalvik/libdex/
DDexDataMap.cpp33 DexDataMap* map = NULL; in dexDataMapAlloc() local
41 map = (DexDataMap*) malloc(size); in dexDataMapAlloc()
43 if (map == NULL) { in dexDataMapAlloc()
47 map->count = 0; in dexDataMapAlloc()
48 map->max = maxCount; in dexDataMapAlloc()
49 map->offsets = (u4*) (map + 1); in dexDataMapAlloc()
50 map->types = (u2*) (map->offsets + maxCount); in dexDataMapAlloc()
52 return map; in dexDataMapAlloc()
58 void dexDataMapFree(DexDataMap* map) { in dexDataMapFree() argument
64 free(map); in dexDataMapFree()
[all …]
DDexDataMap.h41 void dexDataMapFree(DexDataMap* map);
47 void dexDataMapAdd(DexDataMap* map, u4 offset, u2 type);
53 int dexDataMapGet(DexDataMap* map, u4 offset);
60 bool dexDataMapVerify(DexDataMap* map, u4 offset, u2 type);
65 DEX_INLINE bool dexDataMapVerify0Ok(DexDataMap* map, u4 offset, u2 type) { in dexDataMapVerify0Ok() argument
70 return dexDataMapVerify(map, offset, type); in dexDataMapVerify0Ok()
/dalvik/dx/src/com/android/dx/io/instructions/
DAddressMap.java27 private final HashMap<Integer,Integer> map; field in AddressMap
33 map = new HashMap<Integer,Integer>(); in AddressMap()
41 Integer value = map.get(keyAddress); in get()
49 map.put(keyAddress, valueAddress); in put()
/dalvik/dx/src/com/android/dx/ssa/
DRegisterMapper.java41 public abstract RegisterSpec map(RegisterSpec registerSpec); in map() method in RegisterMapper
48 public final RegisterSpecList map(RegisterSpecList sources) { in map() method in RegisterMapper
53 newSources.set(i, map(sources.get(i))); in map()
67 public final RegisterSpecSet map(RegisterSpecSet sources) { in map() method in RegisterMapper
74 newSources.put(map(registerSpec)); in map()
DBasicRegisterMapper.java50 public RegisterSpec map(RegisterSpec registerSpec) { in map() method in BasicRegisterMapper
DMoveParamCombiner.java118 public RegisterSpec map(RegisterSpec registerSpec) { in run()
DSsaInsn.java159 result = mapper.map(result); in mapRegisters()
DNormalSsaInsn.java48 RegisterSpecList newSources = mapper.map(oldSources); in mapSourceRegisters()
DPhiInsn.java272 o.regSpec = mapper.map(old); in mapSourceRegisters()
DConstCollector.java381 public RegisterSpec map(RegisterSpec registerSpec) { in updateConstUses()
DSsaRenamer.java340 public RegisterSpec map(RegisterSpec registerSpec) { in map() method in SsaRenamer.BlockRenamer.RenamingMapper
DEscapeAnalysis.java671 public RegisterSpec map(RegisterSpec registerSpec) { in movePropagate()
/dalvik/dx/tests/034-dex-minimal/
Dexpected.txt49 |map:
50 |[70] map list
52 |[74] header_item map
57 |[80] map_list map
66 | map list: 1 item; 28 bytes total
/dalvik/dexgen/src/com/android/dexgen/dex/file/
DDexFile.java59 private final MixedItemSection map; field in DexFile
120 map = new MixedItemSection("map", this, 4, SortType.NONE); in DexFile()
129 classData, map }; in DexFile()
282 return map; in getMap()
412 return map; in getLastDataSection()
509 if (one == map) { in toDex0()
515 MapItem.addMap(sections, map); in toDex0()
516 map.prepare(); in toDex0()
/dalvik/dx/src/com/android/dx/dex/file/
DDexFile.java67 private final MixedItemSection map; field in DexFile
138 map = new MixedItemSection("map", this, 4, SortType.NONE); in DexFile()
157 wordData, typeLists, stringData, byteData, classData, map }; in DexFile()
164 wordData, typeLists, stringData, byteData, classData, map }; in DexFile()
358 return map; in getMap()
514 return map; in getLastDataSection()
662 if (one == map) { in toDex0()
668 MapItem.addMap(sections, map); in toDex0()
669 map.prepare(); in toDex0()
/dalvik/dx/tests/139-lambda-metafactory/
Dexpected.txt735 |map:
736 |[654] map list
738 |[658] header_item map
743 |[664] string_id_item map
748 |[670] type_id_item map
753 |[67c] proto_id_item map
758 |[688] field_id_item map
763 |[694] method_id_item map
768 |[6a0] class_def_item map
773 |[6ac] call_site_id_item map
[all …]
/dalvik/dx/src/com/android/dx/dex/code/
DLocalStart.java103 return new LocalStart(getPosition(), mapper.map(local)); in withMapper()
DLocalSnapshot.java101 return new LocalSnapshot(getPosition(), mapper.map(locals)); in withMapper()
DDalvInsn.java392 return withRegisters(mapper.map(getRegisters())); in withMapper()
/dalvik/dx/tests/132-invoke-polymorphic/
Dexpected.txt1359 |map:
1360 |[ac0] map list
1362 |[ac4] header_item map
1367 |[ad0] string_id_item map
1372 |[adc] type_id_item map
1377 |[ae8] proto_id_item map
1382 |[af4] method_id_item map
1387 |[b00] class_def_item map
1392 |[b0c] annotation_set_item map
1397 |[b18] code_item map
[all …]
/dalvik/dx/tests/135-invoke-custom/src/invokecustom/
DInvokeCustom.java198 .map(String::trim).findAny().orElse(""); in lambdaTest()
/dalvik/dx/src/com/android/dx/command/dexer/
DMain.java1198 Map<String, List<String>> map = new HashMap<String, List<String>>(); field in Main.BestEffortMainDexListFilter
1204 List<String> fullPath = map.get(simple); in BestEffortMainDexListFilter()
1207 map.put(simple, fullPath); in BestEffortMainDexListFilter()
1218 List<String> fullPaths = map.get(simple); in accept()
/dalvik/dexdump/
DDexDump.cpp2150 MemMapping map; in process() local
2157 if (dexOpenAndMap(fileName, gOptions.tempFileName, &map, false) != 0) { in process()
2166 pDexFile = dexFileParse((u1*)map.addr, map.length, flags); in process()
2182 sysReleaseShmem(&map); in process()
/dalvik/dx/tests/135-invoke-custom/
Dexpected.txt279 |[7c] "map"
977 … |[4e] java.util.stream.Stream.map:(Ljava/util/function/Function;)Ljava/util/stream/Stream;
2843 000edc: 7220 4e00 2000 | 0026: invoke-interface {v0, v2}, java.util.stream.Stream.map:(Lj…
5472 001dbf: 6d61 7000 |"map"
6225 |map:
6226 |[22bc] map list
6228 |[22c0] header_item map
6233 |[22cc] string_id_item map
6238 |[22d8] type_id_item map
6243 |[22e4] proto_id_item map
[all …]