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

  /external/arduino/hardware/arduino/cores/arduino/
wiring.h 97 #define bitSet(value, bit) ((value) |= (1UL << (bit)))
99 #define bitWrite(value, bit, bitvalue) (bitvalue ? bitSet(value, bit) : bitClear(value, bit))
  /external/chromium_org/third_party/icu/source/test/perf/utrie2perf/
utrie2perf.cpp 219 uint32_t bitSet=0;
222 bitSet|=(uint32_t)1<<u_charDirection(c);
224 if(length>0 && bitSet==0) {
  /external/icu/icu4c/source/test/perf/utrie2perf/
utrie2perf.cpp 219 uint32_t bitSet=0;
222 bitSet|=(uint32_t)1<<u_charDirection(c);
224 if(length>0 && bitSet==0) {
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3tokenstream.c 716 * the token type BitSet. Return null if no tokens were found. This
772 pANTLR3_BITSET bitSet;
775 bitSet = antlr3BitsetList(list->table);
777 newlist = tokenStream->getTokensSet(tokenStream, start, stop, bitSet);
779 bitSet->free(bitSet);
788 pANTLR3_BITSET bitSet;
791 bitSet = antlr3BitsetOf(type, -1);
792 newlist = tokenStream->getTokensSet(tokenStream, start, stop, bitSet);
794 bitSet->free(bitSet)
    [all...]
antlr3bitset.c 43 static void antlr3BitsetORInPlace (pANTLR3_BITSET bitset, pANTLR3_BITSET bitset2);
44 static ANTLR3_UINT32 antlr3BitsetSize (pANTLR3_BITSET bitset);
45 static void antlr3BitsetAdd (pANTLR3_BITSET bitset, ANTLR3_INT32 bit);
47 static ANTLR3_BOOLEAN antlr3BitsetMember (pANTLR3_BITSET bitset, ANTLR3_UINT32 bit);
48 static ANTLR3_UINT32 antlr3BitsetNumBits (pANTLR3_BITSET bitset);
49 static void antlr3BitsetRemove (pANTLR3_BITSET bitset, ANTLR3_UINT32 bit);
50 static ANTLR3_BOOLEAN antlr3BitsetIsNil (pANTLR3_BITSET bitset);
51 static pANTLR3_INT32 antlr3BitsetToIntList (pANTLR3_BITSET bitset);
55 static void growToInclude (pANTLR3_BITSET bitset, ANTLR3_INT32 bit);
56 static void grow (pANTLR3_BITSET bitset, ANTLR3_INT32 newSize)
78 pANTLR3_BITSET bitset; local
143 pANTLR3_BITSET bitset; local
186 pANTLR3_BITSET bitset; local
256 pANTLR3_BITSET bitset; local
319 pANTLR3_BITSET bitset; local
356 pANTLR3_BITSET bitset; local
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/back/
FirstFitLocalCombiningAllocator.java 38 import java.util.BitSet;
55 int nextClearBit(BitSet bitSet, int startIdx) {
56 int bitNumber = bitSet.nextClearBit(startIdx);
58 bitNumber = bitSet.nextClearBit(bitNumber + 1);
65 int nextClearBit(BitSet bitSet, int startIdx) {
66 int bitNumber = bitSet.nextClearBit(startIdx);
68 bitNumber = bitSet.nextClearBit(bitNumber + 1);
75 int nextClearBit(BitSet bitSet, int startIdx)
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRBaseRecognizer.h 154 - (void) consumeUntilFollow:(id<ANTLRIntStream>)anInput Follow:(ANTLRBitSet *)bitSet;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRBaseRecognizer.h 154 - (void) consumeUntilFollow:(id<ANTLRIntStream>)anInput Follow:(ANTLRBitSet *)bitSet;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRBaseRecognizer.h 154 - (void) consumeUntilFollow:(id<ANTLRIntStream>)anInput Follow:(ANTLRBitSet *)bitSet;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBaseRecognizer.h 146 - (void) consumeUntilFollow:(id<ANTLRIntStream>)anInput Follow:(ANTLRBitSet *)bitSet;
  /external/deqp/modules/egl/
teglResizeTests.cpp 300 inline bool hasBits (T bitSet, T requiredBits)
302 return (bitSet & requiredBits) == requiredBits;
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
BaseRecognizer.as 64 public function matchStream(input:IntStream, ttype:int, follow:BitSet):Object {
92 public function mismatchIsMissingToken(input:IntStream, follow:BitSet):Boolean {
100 var viableTokensFollowingThisRule:BitSet = computeContextSensitiveRuleFOLLOW();
112 // BitSet cannot handle negative numbers like -1 (EOF) so I leave EOR
128 protected function mismatch(input:IntStream, ttype:int, follow:BitSet):void
338 var followSet:BitSet = computeErrorRecoverySet();
444 protected function computeErrorRecoverySet():BitSet {
500 protected function computeContextSensitiveRuleFOLLOW():BitSet {
504 protected function combineFollows(exact:Boolean):BitSet {
506 var followSet:BitSet = new BitSet()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 
  /external/chromium_org/third_party/checkstyle/
checkstyle-5.7-all.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar 

Completed in 902 milliseconds