Searched defs:bit_index (Results 1 - 12 of 12) sorted by relevance
/external/tinyalsa/ |
H A D | tinypcminfo.c | 92 /* Returns a human readable name for the format associated with bit_index, 93 * NULL if bit_index is not known. 95 inline const char *pcm_get_format_name(unsigned bit_index) argument 97 return bit_index < ARRAY_SIZE(format_lookup) ? format_lookup[bit_index] : NULL;
|
/external/lldb/examples/summaries/cocoa/ |
H A D | CFBitVector.py | 20 def bit_index(abs_pos): function 97 bit = get_bit(cur_byte_val,bit_index(i))
|
/external/lldb/source/DataFormatters/ |
H A D | LibCxx.cpp | 58 size_t bit_index = (idx & 7); // efficient idx % 8 for bit index local 69 switch (bit_index)
|
H A D | LibStdcpp.cpp | 57 size_t bit_index = (idx & 7); // efficient idx % 8 for bit index local 68 switch (bit_index)
|
/external/v8/src/ |
H A D | safepoint-table.cc | 34 int bit_index = reg_index & (kBitsPerByte - 1); local 35 return (bits_[byte_index] & (1 << bit_index)) != 0; 184 int bit_index = index & (kBitsPerByte - 1); local 185 bits[byte_index] |= (1 << bit_index); 193 int bit_index = index & (kBitsPerByte - 1); local 194 bits[byte_index] |= (1U << bit_index);
|
H A D | frames.cc | 670 int bit_index = index & (kBitsPerByte - 1); local 671 if ((safepoint_bits[byte_index] & (1U << bit_index)) != 0) {
|
/external/protobuf/src/google/protobuf/compiler/javanano/ |
H A D | javanano_helpers.cc | 514 string GetBitFieldNameForBit(int bit_index) { argument 515 return GetBitFieldName(bit_index / 32); 518 string GenerateGetBit(int bit_index) { argument 519 string var_name = GetBitFieldNameForBit(bit_index); 520 int bit_in_var_index = bit_index % 32; 527 string GenerateSetBit(int bit_index) { argument 528 string var_name = GetBitFieldNameForBit(bit_index); 529 int bit_in_var_index = bit_index % 32; 536 string GenerateClearBit(int bit_index) { argument 537 string var_name = GetBitFieldNameForBit(bit_index); 545 GenerateDifferentBit(int bit_index) argument [all...] |
/external/srtp/crypto/math/ |
H A D | datatypes.c | 328 const int bit_index = index & 31; local 337 if (bit_index == 0) { 349 b = x->v32[from] << bit_index; 351 b |= x->v32[from-1] >> (32-bit_index); 367 const int bit_index = index & 31; local 374 if (bit_index == 0) { 379 x->v32[i] = (x->v32[i+base_index] >> bit_index) ^ 380 (x->v32[i+base_index+1] << (32 - bit_index)); 381 x->v32[4 - base_index-1] = x->v32[4-1] >> bit_index; 395 bitvector_get_bit(const bitvector_t *v, int bit_index) argument 401 bitvector_set_bit(bitvector_t *v, int bit_index) argument 407 bitvector_clear_bit(bitvector_t *v, int bit_index) argument 484 const int bit_index = index & 31; local [all...] |
H A D | math.c | 653 const int bit_index = index & 31; local 662 if (bit_index == 0) { 674 b = x->v32[from] << bit_index; 676 b |= x->v32[from-1] >> (32-bit_index); 692 const int bit_index = index & 31; local 699 if (bit_index == 0) { 704 x->v32[i] = (x->v32[i+base_index] << bit_index) ^ 705 (x->v32[i+base_index+1] >> (32 - bit_index)); 706 x->v32[4 - base_index-1] = x->v32[4-1] << bit_index;
|
/external/v8/src/ia32/ |
H A D | macro-assembler-ia32.cc | 1898 int bit_index) { 1899 bit_index += kSmiTagSize + kSmiShiftSize; 1901 int byte_index = bit_index / kBitsPerByte; 1902 int byte_bit_index = bit_index & (kBitsPerByte - 1); 1896 BooleanBitTest(Register object, int field_offset, int bit_index) argument
|
/external/v8/src/x87/ |
H A D | macro-assembler-x87.cc | 1861 int bit_index) { 1862 bit_index += kSmiTagSize + kSmiShiftSize; 1864 int byte_index = bit_index / kBitsPerByte; 1865 int byte_bit_index = bit_index & (kBitsPerByte - 1); 1859 BooleanBitTest(Register object, int field_offset, int bit_index) argument
|
/external/libpng/contrib/libtests/ |
H A D | pngvalid.c | 428 png_uint_32 bit_index, result; local 432 bit_index = x; 437 bit_index *= 3; 440 bit_index += x; /* Alpha channel */ 444 bit_index += sample_index * bit_depth; 448 row += bit_index >> 3; 458 bit_index &= 7; 459 return (result >> (8-bit_index-bit_depth)) & ((1U<<bit_depth)-1);
|
Completed in 2187 milliseconds