HomeSort by relevance Sort by last modified time
    Searched defs:island (Results 1 - 2 of 2) sorted by null

  /frameworks/compile/mclinker/lib/LD/
StubFactory.cpp 50 // find the island for the input relocation
51 BranchIsland* island = pBRIslandFactory.find(*(pReloc.targetRef().frag())); local
52 if (NULL == island) {
53 island = pBRIslandFactory.produce(*(pReloc.targetRef().frag()));
56 // find if there is such a stub in the island already
57 assert(NULL != island);
58 Stub* stub = island->findStub(prototype, pReloc);
73 name.append(island->name());
96 island->addRelocation(*reloc);
99 // add stub to the branch island
    [all...]
  /frameworks/compile/mclinker/lib/Fragment/
FragmentLinker.cpp 125 BranchIsland& island = *facIter; local
126 BranchIsland::reloc_iterator iter, iterEnd = island.reloc_end();
127 for (iter = island.reloc_begin(); iter != iterEnd; ++iter)
182 BranchIsland& island = *facIter; local
183 BranchIsland::reloc_iterator iter, iterEnd = island.reloc_end();
184 for (iter = island.reloc_begin(); iter != iterEnd; ++iter) {

Completed in 717 milliseconds