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

  /external/chromium_org/third_party/mach_override/
mach_override.c 106 BranchIsland **island,
112 BranchIsland *island );
117 BranchIsland *island,
125 BranchIsland *island,
240 // Allocate and target the escape island to the overriding function.
251 // Build the branch absolute instruction to the escape island.
264 // Build the jump relative instruction to the escape island
279 // Optionally allocate & return the reentry island. This may contain relocated
281 // the escape island has to the original function, except the escape island i
    [all...]
  /frameworks/compile/mclinker/lib/LD/
BranchIslandFactory.cpp 24 /// @param pMaxIslandSize - the predefined value for the max size of a island
65 /// produce - produce a island for the given fragment
66 /// @param pFragment - the fragment needs a branch island
69 BranchIsland *island = allocate(); local
70 new (island) BranchIsland(pFragment, // entry fragment to the island
71 m_MaxIslandSize, // the max size of the island
72 size() - 1u); // index in the island factory
73 return island;
77 /// @param pFragment - the fragment needs a branch island
    [all...]
  /external/llvm/test/MC/MachO/ARM/
long-call-branch-island-relocation.s 24 @ island.
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMLDBackend.cpp 692 for (BranchIslandFactory::iterator island = getBRIslandFactory()->begin(),
693 island_end = getBRIslandFactory()->end(); island != island_end; ++island) {
694 if ((*island).end() == file_format->getText().getSectionData()->end())
697 Fragment* exit = (*island).end();
698 if (((*island).offset() + (*island).size()) > exit->getOffset()) {
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonLDBackend.cpp 633 for (BranchIslandFactory::iterator island = getBRIslandFactory()->begin(),
634 island_end = getBRIslandFactory()->end(); island != island_end; ++island)
636 if ((*island).end() == file_format->getText().getSectionData()->end())
639 Fragment* exit = (*island).end();
640 if (((*island).offset() + (*island).size()) > exit->getOffset()) {
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
LevelBuilder.java 129 tileMapIndex = R.drawable.island;
  /frameworks/compile/mclinker/lib/Object/
ObjectLinker.cpp 777 BranchIsland& island = *facIter; local
778 BranchIsland::reloc_iterator iter, iterEnd = island.reloc_end();
779 for (iter = island.reloc_begin(); iter != iterEnd; ++iter)
851 BranchIsland& island = *facIter; local
852 BranchIsland::reloc_iterator iter, iterEnd = island.reloc_end();
853 for (iter = island.reloc_begin(); iter != iterEnd; ++iter) {
    [all...]
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsLDBackend.cpp 751 BranchIsland& island = *ii; local
752 if (island.end() == textData->end())
755 Fragment* exit = island.end();
756 if ((island.offset() + island.size()) > exit->getOffset()) {

Completed in 323 milliseconds