/sdk/emulator/qtools/ |
parse_options-inl.h | 30 if (include_some_pids && pid_include_vector.GetBit(event->pid) == 0) 32 if (exclude_some_pids && pid_exclude_vector.GetBit(event->pid)) 46 if (include_some_pids && pid_include_vector.GetBit(pid) == 0) 48 if (exclude_some_pids && pid_exclude_vector.GetBit(pid)) 111 while (pid_include_vector.GetBit(event->pid) == 0) { 118 while (pid_exclude_vector.GetBit(event->pid)) {
|
bitvector.h | 30 bool GetBit(int bitnum) {
|
/external/chromium_org/third_party/skia/src/utils/ |
SkPathUtils.cpp | 32 static int GetBit( const char* buffer, int x ) { 44 if (GetBit(line,i)) { 55 if (GetBit(line,i)) { 70 int curPixel = GetBit(line,i); 87 if ( GetBit(line,width-1) ) ++end; 91 } else if ( GetBit(line, width - 1) ) { // if last pixel on add 123 int curPixel = GetBit(line,i); 139 if ( GetBit(line,w-1) ) ++end; 144 } else if ( GetBit(line,w-1) ) { // if last pixel on add rect
|
/external/skia/src/utils/ |
SkPathUtils.cpp | 32 static int GetBit( const char* buffer, int x ) { 44 if (GetBit(line,i)) { 55 if (GetBit(line,i)) { 70 int curPixel = GetBit(line,i); 87 if ( GetBit(line,width-1) ) ++end; 91 } else if ( GetBit(line, width - 1) ) { // if last pixel on add 123 int curPixel = GetBit(line,i); 139 if ( GetBit(line,w-1) ) ++end; 144 } else if ( GetBit(line,w-1) ) { // if last pixel on add rect
|
/external/chromium_org/net/dns/ |
record_rdata_unittest.cc | 211 EXPECT_FALSE(record_obj->GetBit(0)); 212 EXPECT_TRUE(record_obj->GetBit(1)); 214 EXPECT_FALSE(record_obj->GetBit(i)); 216 EXPECT_TRUE(record_obj->GetBit(15));
|
record_rdata.h | 204 bool GetBit(unsigned i) const;
|
record_rdata.cc | 278 bool NsecRecordRdata::GetBit(unsigned i) const {
|
mdns_client_impl.cc | 292 if (!rdata->GetBit((*i)->type())) { 303 if (!rdata->GetBit(i->first.second)) { 604 if (!rdata->GetBit(rrtype_))
|
/external/chromium_org/third_party/smhasher/src/ |
Bitvec.h | 17 uint32_t getbit ( const void * blob, int len, uint32_t bit ); 37 inline uint32_t getbit ( T & blob, uint32_t bit ) function 39 return getbit(&blob,sizeof(blob),bit); 42 template<> inline uint32_t getbit ( uint32_t & blob, uint32_t bit ) { return (blob >> (bit & 31)) & 1; } function 43 template<> inline uint32_t getbit ( uint64_t & blob, uint32_t bit ) { return (blob >> (bit & 63)) & 1; } function
|
AvalancheTest.h | 57 int bitA = getbit(&A,hashbytes,iOut); 58 int bitB = getbit(&B,hashbytes,iOut); 144 uint32_t b = getbit(d,out1) | (getbit(d,out2) << 1); 279 uint32_t x = getbit(d,out1) | (getbit(d,out2) << 1); 382 uint32_t b = getbit(d,out1) | (getbit(d,out2) << 1);
|
Bitslice.cpp | 74 int b = getbit(hashes[i],j);
|
Bitvec.cpp | 122 uint32_t getbit ( const void * block, int len, uint32_t bit ) function 200 setbit(blob,len,i,getbit(blob,len,i-c)); 280 setbit(blob,len,i,getbit(blob,len,i+c)); 359 uint32_t bit = getbit(blob,len,nbits-1); 454 uint32_t bit = getbit(blob,len,0);
|
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
BitString.java | 75 public boolean getBit(int bit) { 94 result[i] = getBit(i);
|
/external/llvm/utils/TableGen/ |
CodeEmitterGen.cpp | 72 Init *OrigBit = BI->getBit(bit); 73 Init *BitSwap = BI->getBit(bitSwapIdx); 79 NewBits[middle] = BI->getBit(middle); 94 if (VarBitInit *VBI = dyn_cast<VarBitInit>(BI->getBit(bit))) { 98 } else if (VarInit *VI = dyn_cast<VarInit>(BI->getBit(bit))) { 275 if (BitInit *B = dyn_cast<BitInit>(BI->getBit(e-i-1)))
|
InstrInfoEmitter.cpp | 488 if (BitInit *Bit = dyn_cast<BitInit>(TSF->getBit(i)))
|
FixedLenDecoderEmitter.cpp | 145 if (BitInit *bit = dyn_cast<BitInit>(bits.getBit(index))) [all...] |
RegisterInfoEmitter.cpp | [all...] |
X86RecognizableInstr.cpp | 191 if (static_cast<BitInit*>(init.getBit(index))->getValue()) [all...] |
/external/llvm/include/llvm/TableGen/ |
Record.h | 536 /// getBit - This method is used to return the initializer for the specified 538 virtual Init *getBit(unsigned Bit) const = 0; 609 virtual Init *getBit(unsigned Bit) const { 640 virtual Init *getBit(unsigned Bit) const { 678 if (!getBit(i)->isComplete()) return false; 683 if (getBit(i)->isComplete()) return false; 690 virtual Init *getBit(unsigned Bit) const { 732 virtual Init *getBit(unsigned Bit) const { 773 virtual Init *getBit(unsigned Bit) const { 839 virtual Init *getBit(unsigned Bit) const [all...] |
/external/llvm/lib/TableGen/ |
Record.cpp | 105 return BI->getBit(0); 219 if (BitInit *Bit = dyn_cast<BitInit>(BI->getBit(i))) { 486 NewBits[i] = getBit(Bits[i]); 495 if (Init *Bit = getBit(e-i-1)) 531 Init *Bit = CachedInit->getBit(CurBit->getBitNum()); 549 Init *Bit = CurBitVar->getBit(CurBit->getBitNum()); 721 Init *OpInit::getBit(unsigned Bit) const { [all...] |
/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
stun.h | 238 bool GetBit(int index) const;
|
stun.cc | 350 bool StunUInt32Attribute::GetBit(int index) const {
|
/external/grub/netboot/ |
eepro.c | 49 #define GetBit(x,y) ((x & (1<<y))>>y) 557 GetBit(read_eeprom(5), ee_BNC_TPE) ? "BNC" : "TP");
|
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
stun.cc | 665 bool StunUInt32Attribute::GetBit(size_t index) const {
|
stun.h | 366 bool GetBit(size_t index) const;
|