OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kIntBits
(Results
1 - 4
of
4
) sorted by null
/external/chromium/net/disk_cache/
bitmap.cc
95
const int i = index & (
kIntBits
- 1);
96
const int j = index /
kIntBits
;
106
const int i = index & (
kIntBits
-1);
107
const int j = index /
kIntBits
;
114
const int i = index & (
kIntBits
- 1);
115
const int j = index /
kIntBits
;
137
int start_offset = begin & (
kIntBits
- 1);
140
int len = std::min(end - begin,
kIntBits
- start_offset);
149
int end_offset = end & (
kIntBits
- 1);
154
memset(map_ + (begin /
kIntBits
), (value ? 0xFF : 0x00)
[
all
...]
bitmap.h
112
if (num_bits <=
kIntBits
)
115
return (num_bits +
kIntBits
- 1) >> kLogIntBits;
119
static const int
kIntBits
= sizeof(uint32) * 8;
123
// stored in the same word, and len <
kIntBits
.
/external/chromium_org/net/disk_cache/
bitmap.cc
95
const int i = index & (
kIntBits
- 1);
96
const int j = index /
kIntBits
;
106
const int i = index & (
kIntBits
-1);
107
const int j = index /
kIntBits
;
114
const int i = index & (
kIntBits
- 1);
115
const int j = index /
kIntBits
;
137
int start_offset = begin & (
kIntBits
- 1);
140
int len = std::min(end - begin,
kIntBits
- start_offset);
149
int end_offset = end & (
kIntBits
- 1);
154
memset(map_ + (begin /
kIntBits
), (value ? 0xFF : 0x00)
[
all
...]
bitmap.h
112
if (num_bits <=
kIntBits
)
115
return (num_bits +
kIntBits
- 1) >> kLogIntBits;
119
static const int
kIntBits
= sizeof(uint32) * 8;
123
// stored in the same word, and len <
kIntBits
.
Completed in 518 milliseconds