Searched defs:bit_index (Results 1 - 6 of 6) sorted by relevance

/external/chromium/net/disk_cache/
H A Dbitmap.cc219 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/v8/src/
H A Dsafepoint-table.cc56 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);
H A Dframes.cc664 int bit_index = index & (kBitsPerByte - 1); local
665 if ((safepoint_bits[byte_index] & (1U << bit_index)) != 0) {
/external/srtp/crypto/math/
H A Ddatatypes.c328 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 Dmath.c653 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 Dmacro-assembler-ia32.cc1555 int bit_index) {
1556 bit_index += kSmiTagSize + kSmiShiftSize;
1558 int byte_index = bit_index / kBitsPerByte;
1559 int byte_bit_index = bit_index & (kBitsPerByte - 1);
1553 BooleanBitTest(Register object, int field_offset, int bit_index) argument

Completed in 100 milliseconds