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

  /external/chromium_org/v8/src/
safepoint-table.cc 56 int bit_index = reg_index & (kBitsPerByte - 1); local
57 return (bits_[byte_index] & (1 << bit_index)) != 0;
205 int bit_index = index & (kBitsPerByte - 1); local
206 bits[byte_index] |= (1 << bit_index);
214 int bit_index = index & (kBitsPerByte - 1); local
215 bits[byte_index] |= (1U << bit_index);
frames.cc 684 int bit_index = index & (kBitsPerByte - 1); local
685 if ((safepoint_bits[byte_index] & (1U << bit_index)) != 0) {
    [all...]
  /external/v8/src/
safepoint-table.cc 56 int bit_index = reg_index & (kBitsPerByte - 1); local
57 return (bits_[byte_index] & (1 << bit_index)) != 0;
212 int bit_index = index & (kBitsPerByte - 1); local
213 bits[byte_index] |= (1 << bit_index);
221 int bit_index = index & (kBitsPerByte - 1); local
222 bits[byte_index] |= (1U << bit_index);
frames.cc 664 int bit_index = index & (kBitsPerByte - 1); local
665 if ((safepoint_bits[byte_index] & (1U << bit_index)) != 0) {
    [all...]
  /external/chromium/net/disk_cache/
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/net/disk_cache/
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/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;

Completed in 422 milliseconds