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

  /external/chromium_org/components/rappor/
bloom_filter.cc 34 uint32_t bit_index = index % 8; local
35 bytes_[byte_index] |= 1 << bit_index;
  /external/lldb/examples/summaries/cocoa/
CFBitVector.py 20 def bit_index(abs_pos): function
97 bit = get_bit(cur_byte_val,bit_index(i))
  /external/chromium_org/v8/src/
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);
frames.cc 670 int bit_index = index & (kBitsPerByte - 1); local
671 if ((safepoint_bits[byte_index] & (1U << bit_index)) != 0) {
    [all...]
  /external/lldb/source/DataFormatters/
LibCxx.cpp 58 size_t bit_index = (idx & 7); // efficient idx % 8 for bit index local
69 switch (bit_index)
LibStdcpp.cpp 57 size_t bit_index = (idx & 7); // efficient idx % 8 for bit index local
68 switch (bit_index)
  /external/chromium_org/net/disk_cache/blockfile/
bitmap.cc 219 const int bit_index = *index; local
220 if (bit_index >= limit || limit <= 0)
224 int word_index = bit_index >> kLogIntBits;
230 if (Get(bit_index) == value)
233 const int first_bit_offset = bit_index & (kIntBits - 1);
  /external/chromium_org/third_party/libsrtp/srtp/crypto/math/
datatypes.c 328 const int bit_index = shift & 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 = shift & 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 = shift & 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;
  /external/libpng/contrib/libtests/
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);
    [all...]

Completed in 319 milliseconds