HomeSort by relevance Sort by last modified time
    Searched defs:bit_index (Results 1 - 13 of 13) sorted by null

  /system/media/alsa_utils/
alsa_format.c 93 int slot_index, bit_index, table_index; local
97 for (bit_index = 0; bit_index < bits_per_slot && table_index < table_size; bit_index++) {
alsa_logging.c 42 size_t slot_index, bit_index; local
46 for (bit_index = 0; bit_index < bits_per_slot; bit_index++) {
alsa_device_profile.c 260 int slot_index, bit_index, table_index; local
266 for (bit_index = 0;
267 bit_index < bits_per_slot && table_index < table_size;
268 bit_index++) {
  /art/runtime/gc/accounting/
bitmap.h 58 static ALWAYS_INLINE constexpr uintptr_t BitIndexToMask(uintptr_t bit_index) {
59 return static_cast<uintptr_t>(1) << (bit_index % kBitsPerBitmapWord);
62 ALWAYS_INLINE bool SetBit(size_t bit_index) {
63 return ModifyBit<true>(bit_index);
66 ALWAYS_INLINE bool ClearBit(size_t bit_index) {
67 return ModifyBit<false>(bit_index);
70 ALWAYS_INLINE bool TestBit(size_t bit_index) const;
72 // Returns true if the bit_index was previously set.
73 ALWAYS_INLINE bool AtomicTestAndSetBit(size_t bit_index);
96 ALWAYS_INLINE void CheckValidBitIndex(size_t bit_index) const
149 DCHECK_EQ(BitIndexFromAddr(addr), bit_index); local
    [all...]
  /external/v8/src/
safepoint-table.cc 32 int bit_index = reg_index & (kBitsPerByte - 1); local
33 return (bits_[byte_index] & (1 << bit_index)) != 0;
183 int bit_index = index & (kBitsPerByte - 1); local
184 bits[byte_index] |= (1 << bit_index);
192 int bit_index = index & (kBitsPerByte - 1); local
193 bits[byte_index] |= (1U << bit_index);
frames.cc 761 int bit_index = index & (kBitsPerByte - 1); local
762 if ((safepoint_bits[byte_index] & (1U << bit_index)) != 0) {
    [all...]
  /external/opencv3/modules/flann/include/opencv2/flann/
lsh_table.h 395 size_t bit_index = 1; local
405 subsignature += (feature_block & lowest_bit) ? bit_index : 0;
409 bit_index <<= 1;
  /external/srtp/crypto/math/
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)
484 const int bit_index = index & 31; local
    [all...]
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;
  /toolchain/binutils/binutils-2.25/opcodes/
cgen-opc.c 381 int bit_index;
384 bit_index = i; /* NB: not dependent on endianness; opposite of cgen_put_insn_value! */
385 this_value = bfd_get_bits (& buf[bit_index / 8], insn_chunk_bitsize, big_p);
420 int bit_index;
422 bit_index = (length - insn_chunk_bitsize - i); /* NB: not dependent on endianness! */
423 bfd_put_bits ((bfd_vma) value, & buf[bit_index / 8], insn_chunk_bitsize, big_p);
378 int bit_index; local
417 int bit_index; local
ns32k-dis.c 623 int bit_index;
628 bit_index = bit_extract (buffer, index_offset - 8, 3);
632 sprintf (off, "[r%d:%c]", bit_index, ind[addr_mode & 3]);
618 int bit_index; local
  /external/v8/src/heap/
slot-set.h 41 int bucket_index, cell_index, bit_index; local
42 SlotToIndices(slot_offset, &bucket_index, &cell_index, &bit_index);
46 bucket[bucket_index][cell_index] |= 1u << bit_index;
51 int bucket_index, cell_index, bit_index; local
52 SlotToIndices(slot_offset, &bucket_index, &cell_index, &bit_index);
56 uint32_t bit_mask = 1u << bit_index;
116 int bucket_index, cell_index, bit_index; local
117 SlotToIndices(slot_offset, &bucket_index, &cell_index, &bit_index);
120 return (cell & (1u << bit_index)) != 0;
204 int* bit_index) {
    [all...]
  /external/libpng/contrib/libtests/
pngvalid.c 525 png_uint_32 bit_index, result; local
529 bit_index = x;
534 bit_index *= 3;
537 bit_index += x; /* Alpha channel */
541 bit_index += sample_index * bit_depth;
545 row += bit_index >> 3;
563 bit_index &= 7;
566 bit_index = 8-bit_index-bit_depth;
568 return (result >> bit_index) & ((1U<<bit_depth)-1)
    [all...]

Completed in 1394 milliseconds