OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:bit_index
(Results
1 - 5
of
5
) sorted by null
/external/v8/src/
safepoint-table.cc
56
int
bit_index
= reg_index & (kBitsPerByte - 1);
local
57
return (bits_[byte_index] & (1 <<
bit_index
)) != 0;
203
int
bit_index
= index & (kBitsPerByte - 1);
local
204
bits[byte_index] |= (1 <<
bit_index
);
212
int
bit_index
= index & (kBitsPerByte - 1);
local
213
bits[byte_index] |= (1U <<
bit_index
);
frames.cc
622
int
bit_index
= index & (kBitsPerByte - 1);
local
623
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/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 127 milliseconds