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

  /dalvik/dx/src/com/android/dx/util/
IntSet.java 22 public interface IntSet {
52 void merge(IntSet other);
ListIntSet.java 24 public class ListIntSet implements IntSet {
61 public void merge(IntSet other) {
BitIntSet.java 24 public class BitIntSet implements IntSet {
71 public void merge(IntSet other) {
  /dalvik/dx/src/com/android/dx/ssa/
SetFactory.java 20 import com.android.dx.util.IntSet;
60 * Make IntSet for the dominance-frontier sets.
65 /*package*/ static IntSet makeDomFrontSet(int szBlocks) {
72 * Make IntSet for the interference graph sets. Public because
78 public static IntSet makeInterferenceSet(int countRegs) {
85 * Make IntSet for register live in/out sets.
90 /*package*/ static IntSet makeLivenessSet(int countRegs) {
InterferenceRegisterMapper.java 22 import com.android.dx.util.IntSet;
88 IntSet existing = newRegInterference.get(newReg);
DomFront.java 19 import com.android.dx.util.IntSet;
51 public IntSet dominanceFrontiers;
SsaBasicBlock.java 32 import com.android.dx.util.IntSet;
106 private IntSet liveIn;
112 private IntSet liveOut;
819 public IntSet getLiveInRegs() {
832 public IntSet getLiveOutRegs() {
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/back/
InterferenceGraph.java 25 import com.android.dx.util.IntSet;
41 private final ArrayList<IntSet> interference;
50 interference = new ArrayList<IntSet>(countRegs);
93 public void mergeInterferenceSet(int reg, IntSet set) {
FirstFitAllocator.java 25 import com.android.dx.util.IntSet;
87 IntSet current = new BitIntSet(oldRegCount);
RegisterAllocator.java 30 import com.android.dx.util.IntSet;
178 IntSet liveOut = block.getLiveOutRegs();
FirstFitLocalCombiningAllocator.java 29 import com.android.dx.util.IntSet;
868 IntSet liveOut = insn.getBlock().getLiveOutRegs();
927 RegisterSpecList ssaSetToSpecs(IntSet ssaSet) {
    [all...]
  /external/emma/core/java12/com/vladium/util/
IntSet.java 7 * $Id: IntSet.java,v 1.1.1.1 2004/05/09 16:57:53 vlad_r Exp $
23 final class IntSet
28 * Equivalent to <CODE>IntSet(11, 0.75F)</CODE>.
30 public IntSet ()
36 * Equivalent to <CODE>IntSet(capacity, 0.75F)</CODE>.
38 public IntSet (final int initialCapacity)
44 * Constructs an IntSet with specified initial capacity and load factor.
49 public IntSet (int initialCapacity, final float loadFactor)
  /external/emma/core/java12/com/vladium/emma/data/
MethodDescriptor.java 18 import com.vladium.util.IntSet;
145 IntSet blockIDs = (IntSet) lineMap.get (line);
149 blockIDs = new IntSet ();
162 final int [] blockIDs = ((IntSet) lineMap.get (line)).values ();
165 lineMap.put (line, blockIDs); // overwrite IntSet as the value
  /external/v8/test/cctest/
test-hashmap.cc 44 class IntSet {
46 explicit IntSet(IntKeyHash hash) : hash_(hash), map_(DefaultMatchFun) {}
94 IntSet set(hash);
  /external/gtest/test/
gtest-typed-test_test.cc 61 typedef std::set<int> IntSet;
105 typename TestFixture::IntSet empty2;
  /external/protobuf/gtest/test/
gtest-typed-test_test.cc 63 typedef std::set<int> IntSet;
107 typename TestFixture::IntSet empty2;
  /external/emma/core/java12/com/vladium/emma/instr/
InstrVisitor.java 32 import com.vladium.util.IntSet;
715 final IntSet leaders = new IntSet ();
    [all...]
  /external/emma/lib/
emma.jar 
  /prebuilt/sdk/tools/lib/
dx.jar 

Completed in 232 milliseconds