Home
last modified time | relevance | path

Searched refs:theBits (Results 1 – 3 of 3) sorted by relevance

/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/
DOptions.java163 int theBits = options; in getOptionsString() local
164 while (theBits != 0) in getOptionsString()
166 int oneLessBit = theBits & (theBits - 1); // clear rightmost one bit in getOptionsString()
167 int singleBit = theBits ^ oneLessBit; in getOptionsString()
174 theBits = oneLessBit; in getOptionsString()
/external/antlr/runtime/ObjC/Framework/
DANTLRBitSet.h53 + (ANTLRBitSet *) newBitSetWithBits:(const unsigned long long *)theBits Count:(NSUInteger)longCount;
66 - (ANTLRBitSet *) initWithBits:(const unsigned long long const*)theBits Count:(NSUInteger)theCount;
DANTLRBitSet.m55 + (ANTLRBitSet *) newBitSetWithBits:(const unsigned long long *)theBits Count:(NSUInteger)longCount
57 return [[ANTLRBitSet alloc] initWithBits:theBits Count:longCount];
142 - (ANTLRBitSet *) initWithBits:(const unsigned long long *)theBits Count:(NSUInteger)longCount
153 // swappedBits = CFSwapInt64HostToBig(theBits[longNo]);
155 if (theBits[longNo] & (1LL << bitIdx)) {