HomeSort by relevance Sort by last modified time
    Searched refs:BitSet (Results 126 - 150 of 263) sorted by null

1 2 3 4 56 7 8 91011

  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SsaMethod.java 32 import java.util.BitSet;
129 * Builds a BitSet of block indices from a basic block list and a list
134 * @return BitSet of block indices
136 static BitSet bitSetFromLabelList(BasicBlockList blocks,
138 BitSet result = new BitSet(blocks.size());
379 BitSet succs = block.getSuccessors();
756 BitSet visited = new BitSet(blocks.size());
776 BitSet childre
    [all...]
Dominators.java 20 import java.util.BitSet;
94 private BitSet getSuccs(SsaBasicBlock block) {
102 private BitSet getPreds(SsaBasicBlock block) {
195 BitSet preds = getPreds(w);
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_util.h 473 class BitSet
476 BitSet() : marker(false), data(0), size(0) { }
477 BitSet(unsigned int nBits, bool zero) : marker(false), data(0), size(0)
481 ~BitSet()
494 void setOr(BitSet *, BitSet *); // second BitSet may be NULL
540 BitSet& operator|=(const BitSet&);
542 BitSet& operator=(const BitSet& set
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
Dominators.java 20 import java.util.BitSet;
94 private BitSet getSuccs(SsaBasicBlock block) {
102 private BitSet getPreds(SsaBasicBlock block) {
195 BitSet preds = getPreds(w);
DomFront.java 21 import java.util.BitSet;
171 BitSet pred = nb.getPredecessors();
  /dalvik/dx/src/com/android/dx/ssa/back/
FirstFitLocalCombiningAllocator.java 37 import java.util.BitSet;
63 private final BitSet ssaRegsMapped;
72 private final BitSet reservedRopRegs;
75 private final BitSet usedRopRegs;
93 ssaRegsMapped = new BitSet(ssaMeth.getRegCount());
108 reservedRopRegs = new BitSet(paramRangeEnd * 2);
110 usedRopRegs = new BitSet(paramRangeEnd * 2);
464 BitSet predBlocks = insn.getBlock().getPredecessors();
800 BitSet resultMovesRequired = null;
824 BitSet curMovesRequired = new BitSet(szSources)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BufferedTokenStream.cs 284 return GetTokens(start, stop, default(BitSet));
288 * the token type BitSet. Return null if no tokens were found. This
291 public virtual List<IToken> GetTokens(int start, int stop, BitSet types) {
316 return GetTokens(start, stop, new BitSet(types));
320 return GetTokens(start, stop, BitSet.Of(ttype));
LegacyCommonTokenStream.cs 235 return GetTokens(start, stop, (BitSet)null);
240 * the token type BitSet. Return null if no tokens were found. This
244 public virtual IList<IToken> GetTokens(int start, int stop, BitSet types) {
273 return GetTokens(start, stop, new BitSet(types));
277 return GetTokens(start, stop, BitSet.Of(ttype));
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BufferedTokenStream.cs 324 return GetTokens(start, stop, default(BitSet));
328 * the token type BitSet. Return null if no tokens were found. This
331 public virtual List<IToken> GetTokens(int start, int stop, BitSet types)
361 return GetTokens(start, stop, new BitSet(types));
366 return GetTokens(start, stop, BitSet.Of(ttype));
LegacyCommonTokenStream.cs 261 return GetTokens( start, stop, (BitSet)null );
266 * the token type BitSet. Return null if no tokens were found. This
270 public virtual IList<IToken> GetTokens( int start, int stop, BitSet types )
308 return GetTokens( start, stop, new BitSet( types ) );
313 return GetTokens( start, stop, BitSet.Of( ttype ) );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimTokenStream.cs 184 return GetTokens( start, stop, (BitSet)null );
189 * the token type BitSet. Return null if no tokens were found. This
193 public IList<SlimToken> GetTokens( int start, int stop, BitSet types )
231 return GetTokens( start, stop, new BitSet( types ) );
236 return GetTokens( start, stop, BitSet.Of( ttype ) );
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BufferedTokenStream.java 196 return getTokens(start, stop, (BitSet)null);
200 * the token type BitSet. Return null if no tokens were found. This
203 public List getTokens(int start, int stop, BitSet types) {
224 return getTokens(start,stop,new BitSet(types));
228 return getTokens(start,stop,BitSet.of(ttype));
LegacyCommonTokenStream.java 192 return getTokens(start, stop, (BitSet)null);
196 * the token type BitSet. Return null if no tokens were found. This
199 public List getTokens(int start, int stop, BitSet types) {
228 return getTokens(start,stop,new BitSet(types));
232 return getTokens(start,stop,BitSet.of(ttype));
Parser.java 62 BitSet follow)
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRParser.h 51 BitSet:(ANTLRBitSet *)follow;
ANTLRTreeParser.h 60 BitSet:(ANTLRBitSet *)follow;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRParser.h 51 BitSet:(ANTLRBitSet *)follow;
ANTLRTreeParser.h 60 BitSet:(ANTLRBitSet *)follow;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRParser.h 51 BitSet:(ANTLRBitSet *)follow;
ANTLRTreeParser.h 60 BitSet:(ANTLRBitSet *)follow;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRParser.h 51 BitSet:(ANTLRBitSet *)follow;
ANTLRTreeParser.h 60 BitSet:(ANTLRBitSet *)follow;
  /external/dexmaker/src/dx/java/com/android/dx/ssa/back/
FirstFitLocalCombiningAllocator.java 33 import java.util.BitSet;
59 private final BitSet ssaRegsMapped;
68 private final BitSet reservedRopRegs;
71 private final BitSet usedRopRegs;
89 ssaRegsMapped = new BitSet(ssaMeth.getRegCount());
104 reservedRopRegs = new BitSet(paramRangeEnd * 2);
106 usedRopRegs = new BitSet(paramRangeEnd * 2);
460 BitSet predBlocks = insn.getBlock().getPredecessors();
796 BitSet resultMovesRequired = null;
820 BitSet curMovesRequired = new BitSet(szSources)
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WpsInfo.java 22 import java.util.BitSet;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
ErrorManager.java 33 import org.antlr.misc.BitSet;
211 public static final BitSet ERRORS_FORCING_NO_ANALYSIS = new BitSet() {
228 public static final BitSet ERRORS_FORCING_NO_CODEGEN = new BitSet() {
267 public BitSet errorMsgIDs = new BitSet();
268 public BitSet warningMsgIDs = new BitSet();
270 //public BitSet infoMsgIDs = new BitSet()
    [all...]

Completed in 976 milliseconds

1 2 3 4 56 7 8 91011