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

1 23 4 5 6 7 8 91011

  /external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
Form31i.java 27 import java.util.BitSet;
89 public BitSet compatibleRegs(DalvInsn insn) {
91 BitSet bits = new BitSet(1);
Form31t.java 25 import java.util.BitSet;
78 public BitSet compatibleRegs(DalvInsn insn) {
80 BitSet bits = new BitSet(1);
Form32x.java 25 import java.util.BitSet;
75 public BitSet compatibleRegs(DalvInsn insn) {
77 BitSet bits = new BitSet(2);
Form33x.java 25 import java.util.BitSet;
82 public BitSet compatibleRegs(DalvInsn insn) {
84 BitSet bits = new BitSet(3);
Form51l.java 28 import java.util.BitSet;
86 public BitSet compatibleRegs(DalvInsn insn) {
88 BitSet bits = new BitSet(1);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
MismatchedNotSetException.cs 51 public MismatchedNotSetException(BitSet expecting, IIntStream input)
55 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input)
59 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input, Exception innerException)
RecognizerSharedState.cs 56 //public List<BitSet> following;
57 public BitSet[] following;
152 //following = new List<BitSet>( BaseRecognizer.InitialFollowStackSize );
153 following = new BitSet[BaseRecognizer.InitialFollowStackSize];
163 following = (BitSet[])state.following.Clone();
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
MismatchedNotSetException.cs 56 public MismatchedNotSetException(BitSet expecting, IIntStream input)
61 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input)
66 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input, Exception innerException)
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...]
  /libcore/benchmarks/src/benchmarks/regression/
BitSetBenchmark.java 21 import java.util.BitSet;
27 private BitSet bs;
30 bs = new BitSet(size);
  /frameworks/base/wifi/java/android/net/wifi/
WifiConfiguration.java 24 import java.util.BitSet;
254 public BitSet allowedKeyManagement;
260 public BitSet allowedProtocols;
266 public BitSet allowedAuthAlgorithms;
272 public BitSet allowedPairwiseCiphers;
278 public BitSet allowedGroupCiphers;
336 allowedKeyManagement = new BitSet();
337 allowedProtocols = new BitSet();
338 allowedAuthAlgorithms = new BitSet();
339 allowedPairwiseCiphers = 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);

Completed in 961 milliseconds

1 23 4 5 6 7 8 91011