/sdk/emulator/qtools/ |
bitvector.h | 22 void SetBit(int bitnum) { 23 assert(bitnum < num_bits_); 24 vector_[bitnum >> 5] |= 1 << (bitnum & 31); 26 void ClearBit(int bitnum) { 27 assert(bitnum < num_bits_); 28 vector_[bitnum >> 5] &= ~(1 << (bitnum & 31)); 30 bool GetBit(int bitnum) { 31 assert(bitnum < num_bits_) [all...] |
parse_options.cpp | 68 int bitnum = atoi(optarg); local 69 pid_exclude_vector.SetBit(bitnum); 87 int bitnum = atoi(optarg); local 88 pid_include_vector.SetBit(bitnum);
|
thumbdis.cpp | 69 %<bitnum>'c print specified char iff bit is one 70 %<bitnum>`c print specified char iff bit is zero 71 %<bitnum>?ab print a if bit is one else print b
|
/external/llvm/include/llvm/ADT/ |
PackedVector.h | 22 template <typename T, unsigned BitNum, typename BitVectorTy, bool isSigned> 27 template <typename T, unsigned BitNum, typename BitVectorTy> 28 class PackedVectorBase<T, BitNum, BitVectorTy, false> { 32 for (unsigned i = 0; i != BitNum; ++i) 33 val = T(val | ((Bits[(Idx << (BitNum-1)) + i] ? 1UL : 0UL) << i)); 38 assert((val >> BitNum) == 0 && "value is too big"); 39 for (unsigned i = 0; i != BitNum; ++i) 40 Bits[(Idx << (BitNum-1)) + i] = val & (T(1) << i); 44 template <typename T, unsigned BitNum, typename BitVectorTy> 45 class PackedVectorBase<T, BitNum, BitVectorTy, true> [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/ |
t_bitst.c | 71 if(ASN1_BIT_STRING_get_bit(bs, bnam->bitnum)) { 84 int bitnum; local 85 bitnum = ASN1_BIT_STRING_num_asc(name, tbl); 86 if(bitnum < 0) return 0; 88 if(!ASN1_BIT_STRING_set_bit(bs, bitnum, value)) 99 !strcmp(bnam->lname, name) ) return bnam->bitnum;
|
asn1_gen.c | 835 long bitnum; local 839 bitnum = strtoul(elem, &eptr, 10); 842 if (bitnum < 0) 847 if (!ASN1_BIT_STRING_set_bit(bitstr, bitnum, 1))
|
/external/openssl/crypto/asn1/ |
t_bitst.c | 71 if(ASN1_BIT_STRING_get_bit(bs, bnam->bitnum)) { 84 int bitnum; local 85 bitnum = ASN1_BIT_STRING_num_asc(name, tbl); 86 if(bitnum < 0) return 0; 88 if(!ASN1_BIT_STRING_set_bit(bs, bitnum, value)) 99 !strcmp(bnam->lname, name) ) return bnam->bitnum;
|
asn1_gen.c | 835 long bitnum; local 839 bitnum = strtoul(elem, &eptr, 10); 842 if (bitnum < 0) 847 if (!ASN1_BIT_STRING_set_bit(bitstr, bitnum, 1))
|
/external/qemu/block/ |
cow.c | 96 static inline int cow_set_bit(BlockDriverState *bs, int64_t bitnum) 98 uint64_t offset = sizeof(struct cow_header_v2) + bitnum / 8; 107 bitmap |= (1 << (bitnum % 8)); 116 static inline int is_bit_set(BlockDriverState *bs, int64_t bitnum) 118 uint64_t offset = sizeof(struct cow_header_v2) + bitnum / 8; 127 return !!(bitmap & (1 << (bitnum % 8)));
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
bitmap.h | 566 BITNUM to the bit number. ITER is a bitmap iterator. BITNUM 570 #define EXECUTE_IF_SET_IN_BITMAP(BITMAP, MIN, BITNUM, ITER) \ 571 for (bmp_iter_set_init (&(ITER), (BITMAP), (MIN), &(BITNUM)); \ 572 bmp_iter_set (&(ITER), &(BITNUM)); \ 573 bmp_iter_next (&(ITER), &(BITNUM))) 576 and setting BITNUM to the bit number. ITER is a bitmap iterator. 577 BITNUM should be treated as a read-only variable as it contains 580 #define EXECUTE_IF_AND_IN_BITMAP(BITMAP1, BITMAP2, MIN, BITNUM, ITER) \ 582 &(BITNUM)); \ [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
bitmap.h | 566 BITNUM to the bit number. ITER is a bitmap iterator. BITNUM 570 #define EXECUTE_IF_SET_IN_BITMAP(BITMAP, MIN, BITNUM, ITER) \ 571 for (bmp_iter_set_init (&(ITER), (BITMAP), (MIN), &(BITNUM)); \ 572 bmp_iter_set (&(ITER), &(BITNUM)); \ 573 bmp_iter_next (&(ITER), &(BITNUM))) 576 and setting BITNUM to the bit number. ITER is a bitmap iterator. 577 BITNUM should be treated as a read-only variable as it contains 580 #define EXECUTE_IF_AND_IN_BITMAP(BITMAP1, BITMAP2, MIN, BITNUM, ITER) \ 582 &(BITNUM)); \ [all...] |
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
bitmap.h | 566 BITNUM to the bit number. ITER is a bitmap iterator. BITNUM 570 #define EXECUTE_IF_SET_IN_BITMAP(BITMAP, MIN, BITNUM, ITER) \ 571 for (bmp_iter_set_init (&(ITER), (BITMAP), (MIN), &(BITNUM)); \ 572 bmp_iter_set (&(ITER), &(BITNUM)); \ 573 bmp_iter_next (&(ITER), &(BITNUM))) 576 and setting BITNUM to the bit number. ITER is a bitmap iterator. 577 BITNUM should be treated as a read-only variable as it contains 580 #define EXECUTE_IF_AND_IN_BITMAP(BITMAP1, BITMAP2, MIN, BITNUM, ITER) \ 582 &(BITNUM)); \ [all...] |
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
bitmap.h | 566 BITNUM to the bit number. ITER is a bitmap iterator. BITNUM 570 #define EXECUTE_IF_SET_IN_BITMAP(BITMAP, MIN, BITNUM, ITER) \ 571 for (bmp_iter_set_init (&(ITER), (BITMAP), (MIN), &(BITNUM)); \ 572 bmp_iter_set (&(ITER), &(BITNUM)); \ 573 bmp_iter_next (&(ITER), &(BITNUM))) 576 and setting BITNUM to the bit number. ITER is a bitmap iterator. 577 BITNUM should be treated as a read-only variable as it contains 580 #define EXECUTE_IF_AND_IN_BITMAP(BITMAP1, BITMAP2, MIN, BITNUM, ITER) \ 582 &(BITNUM)); \ [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/x509v3/ |
v3_bitst.c | 99 if(ASN1_BIT_STRING_get_bit(bits, bnam->bitnum)) 121 if(!ASN1_BIT_STRING_set_bit(bs, bnam->bitnum, 1)) {
|
v3_enum.c | 94 if(strval == enam->bitnum) return BUF_strdup(enam->lname);
|
v3_crld.c | 231 pbn->bitnum, 1)) 254 if (ASN1_BIT_STRING_get_bit(rflags, pbn->bitnum))
|
/external/openssl/crypto/x509v3/ |
v3_bitst.c | 99 if(ASN1_BIT_STRING_get_bit(bits, bnam->bitnum)) 121 if(!ASN1_BIT_STRING_set_bit(bs, bnam->bitnum, 1)) {
|
v3_enum.c | 94 if(strval == enam->bitnum) return BUF_strdup(enam->lname);
|
v3_crld.c | 231 pbn->bitnum, 1)) 254 if (ASN1_BIT_STRING_get_bit(rflags, pbn->bitnum))
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
itspoof.cpp | 301 for (int bitNum=28; bitNum>=0; bitNum-=4) { 302 if (bitNum <= 12) { 305 int hexDigit = (c>>bitNum) & 0x0f;
|
/external/pixman/test/ |
affine-test.c | 161 int bitnum = prng_rand_n (32); local 162 transform.matrix[i][j] ^= 1 << bitnum;
|
/dalvik/vm/analysis/ |
RegisterMap.cpp | [all...] |
/external/icu4c/test/intltest/ |
itspoof.cpp | 353 for (int bitNum=28; bitNum>=0; bitNum-=4) { 354 if (bitNum <= 12) { 357 int hexDigit = (c>>bitNum) & 0x0f;
|
/external/antlr/antlr-3.4/runtime/C/src/ |
antlr3collections.c | [all...] |
/external/antlr/antlr-3.4/runtime/C/include/ |
antlr3collections.h | 351 ANTLR3_UINT32 bitNum; /**< This is the left/right bit index for traversal along the nodes */ 354 struct ANTLR3_INT_TRIE_NODE_struct * leftN; /**< Pointer to the left node from here when sKey & bitNum = 0 */ 355 struct ANTLR3_INT_TRIE_NODE_struct * rightN; /**< Pointer to the right node from here when sKey & bitNum, = 1 */
|