HomeSort by relevance Sort by last modified time
    Searched refs:BitSet (Results 51 - 75 of 211) sorted by null

1 23 4 5 6 7 8 9

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
RecognizerSharedState.cs 58 //public List<BitSet> following;
59 public BitSet[] following;
155 //following = new List<BitSet>( BaseRecognizer.InitialFollowStackSize );
156 following = new BitSet[BaseRecognizer.InitialFollowStackSize];
167 following = (BitSet[])state.following.Clone();
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
RecognizerSharedState.java 43 public BitSet[] following = new BitSet[BaseRecognizer.INITIAL_FOLLOW_STACK_SIZE];
124 this.following = new BitSet[state.following.length];
BaseRecognizer.java 100 public Object match(IntStream input, int ttype, BitSet follow)
130 public boolean mismatchIsMissingToken(IntStream input, BitSet follow) {
138 BitSet viableTokensFollowingThisRule = computeContextSensitiveRuleFOLLOW();
151 // BitSet cannot handle negative numbers like -1 (EOF) so I leave EOR
362 BitSet followSet = computeErrorRecoverySet();
468 protected BitSet computeErrorRecoverySet() {
524 protected BitSet computeContextSensitiveRuleFOLLOW() {
532 protected BitSet combineFollows(boolean exact) {
534 BitSet followSet = new BitSet();
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
DeadCodeRemover.java 22 import java.util.BitSet;
42 private final BitSet worklist;
66 worklist = new BitSet(regCount);
175 private boolean isCircularNoSideEffect(int regV, BitSet set) {
187 set = new BitSet(regCount);
228 BitSet noSideEffectRegs;
234 * @param noSideEffectRegs to-build bitset of regs that are
237 public NoSideEffectVisitor(BitSet noSideEffectRegs) {
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
DeadCodeRemover.java 29 import java.util.BitSet;
49 private final BitSet worklist;
73 worklist = new BitSet(regCount);
182 private boolean isCircularNoSideEffect(int regV, BitSet set) {
194 set = new BitSet(regCount);
235 BitSet noSideEffectRegs;
241 * @param noSideEffectRegs to-build bitset of regs that are
244 public NoSideEffectVisitor(BitSet noSideEffectRegs) {
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_util.cpp 225 BitSet::andNot(const BitSet &set)
233 BitSet& BitSet::operator|=(const BitSet &set)
242 bool BitSet::resize(unsigned int nBits)
263 bool BitSet::allocate(unsigned int nBits, bool zero)
283 unsigned int BitSet::popCount() const
293 void BitSet::fill(uint32_t val)
302 void BitSet::setOr(BitSet *pA, BitSet *pB
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_util.cpp 225 BitSet::andNot(const BitSet &set)
233 BitSet& BitSet::operator|=(const BitSet &set)
242 bool BitSet::resize(unsigned int nBits)
263 bool BitSet::allocate(unsigned int nBits, bool zero)
283 unsigned int BitSet::popCount() const
293 void BitSet::fill(uint32_t val)
302 void BitSet::setOr(BitSet *pA, BitSet *pB
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/back/
LivenessAnalyzer.java 25 import java.util.BitSet;
42 private final BitSet visitedBlocks;
47 private final BitSet liveOutBlocks;
116 visitedBlocks = new BitSet(blocksSz);
117 liveOutBlocks = new BitSet(blocksSz);
220 BitSet preds = blockN.getPredecessors();
  /external/dexmaker/src/dx/java/com/android/dx/ssa/back/
LivenessAnalyzer.java 25 import java.util.BitSet;
43 private final BitSet visitedBlocks;
48 private final BitSet liveOutBlocks;
117 visitedBlocks = new BitSet(blocksSz);
118 liveOutBlocks = new BitSet(blocksSz);
221 BitSet preds = blockN.getPredecessors();
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
CoroutineManager.java 23 import java.util.BitSet;
109 * Currently implemented as a bitset as a compromise between
113 BitSet m_activeIDs=new BitSet();
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form11n.java 26 import java.util.BitSet;
91 public BitSet compatibleRegs(DalvInsn insn) {
93 BitSet bits = new BitSet(1);
Form12x.java 25 import java.util.BitSet;
112 public BitSet compatibleRegs(DalvInsn insn) {
114 BitSet bits = new BitSet(2);
Form21c.java 29 import java.util.BitSet;
120 public BitSet compatibleRegs(DalvInsn insn) {
123 BitSet bits = new BitSet(sz);
Form21h.java 26 import java.util.BitSet;
101 public BitSet compatibleRegs(DalvInsn insn) {
103 BitSet bits = new BitSet(1);
Form21s.java 26 import java.util.BitSet;
90 public BitSet compatibleRegs(DalvInsn insn) {
92 BitSet bits = new BitSet(1);
Form22b.java 26 import java.util.BitSet;
92 public BitSet compatibleRegs(DalvInsn insn) {
94 BitSet bits = new BitSet(2);
Form22c.java 27 import java.util.BitSet;
94 public BitSet compatibleRegs(DalvInsn insn) {
96 BitSet bits = new BitSet(2);
Form22s.java 26 import java.util.BitSet;
92 public BitSet compatibleRegs(DalvInsn insn) {
94 BitSet bits = new BitSet(2);
Form31c.java 29 import java.util.BitSet;
115 public BitSet compatibleRegs(DalvInsn insn) {
118 BitSet bits = new BitSet(sz);
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
Form11n.java 27 import java.util.BitSet;
92 public BitSet compatibleRegs(DalvInsn insn) {
94 BitSet bits = new BitSet(1);
Form12x.java 26 import java.util.BitSet;
113 public BitSet compatibleRegs(DalvInsn insn) {
115 BitSet bits = new BitSet(2);
Form21c.java 30 import java.util.BitSet;
121 public BitSet compatibleRegs(DalvInsn insn) {
124 BitSet bits = new BitSet(sz);
Form21h.java 27 import java.util.BitSet;
102 public BitSet compatibleRegs(DalvInsn insn) {
104 BitSet bits = new BitSet(1);
Form21s.java 27 import java.util.BitSet;
91 public BitSet compatibleRegs(DalvInsn insn) {
93 BitSet bits = new BitSet(1);
Form22b.java 27 import java.util.BitSet;
93 public BitSet compatibleRegs(DalvInsn insn) {
95 BitSet bits = new BitSet(2);

Completed in 639 milliseconds

1 23 4 5 6 7 8 9