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

  /frameworks/compile/mclinker/lib/LD/
BranchIslandFactory.cpp 25 /// @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
68 BranchIsland* island = allocate(); local
69 new (island) BranchIsland(pFragment, // entry fragment to the island
70 m_MaxIslandSize, // the max size of the island
71 size() - 1u); // index in the island factory
72 return island;
76 /// @param pFragment - the fragment needs a branch island
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/
World.java 525 // Disconnect from island graph.
1059 private final Island island = new Island(); field in class:World
1073 // Size the island for the worst case.
1074 island.init(m_bodyCount, m_contactManager.m_contactCount, m_jointCount,
1077 // Clear all the island flags.
1107 // Reset island and stack.
1108 island.clear();
1115 // Grab the next body off the stack and add it to the island
    [all...]
  /frameworks/compile/mclinker/lib/Object/
ObjectLinker.cpp 833 BranchIsland& island = *facIter; local
834 BranchIsland::reloc_iterator iter, iterEnd = island.reloc_end();
835 for (iter = island.reloc_begin(); iter != iterEnd; ++iter)
911 BranchIsland& island = *facIter; local
    [all...]
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsLDBackend.cpp 834 BranchIsland& island = *ii; local
835 if (island.size() > stubGroupSize()) {
840 if (island.numOfStubs() == 0) {
844 Fragment* exit = &*island.end();
845 if (exit == island.begin()->getParent()->end()) {
849 if ((island.offset() + island.size()) > exit->getOffset()) {
851 (invalid_frags.back()->getParent() != island.getParent())) {
873 for (BranchIslandFactory::iterator island = getBRIslandFactory()->begin(),
875 island != island_end
    [all...]

Completed in 207 milliseconds