OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:highest_bit
(Results
1 - 3
of
3
) sorted by null
/art/runtime/base/
bit_vector.cc
163
int
highest_bit
= src->GetHighestBitSet();
local
167
if (
highest_bit
== -1) {
172
uint32_t src_size = BitsToWords(
highest_bit
+ 1);
179
SetBit(
highest_bit
);
182
DCHECK_LT(static_cast<uint32_t> (
highest_bit
), storage_size_ * kWordBits);
198
int
highest_bit
= union_with->GetHighestBitSet();
local
202
if (
highest_bit
== -1) {
207
uint32_t union_with_size = BitsToWords(
highest_bit
+ 1);
214
SetBit(
highest_bit
);
217
DCHECK_LT(static_cast<uint32_t> (
highest_bit
), storage_size_ * kWordBits)
355
int
highest_bit
= src->GetHighestBitSet();
local
[
all
...]
/external/chromium_org/third_party/libwebp/dsp/
lossless.h
186
const int
highest_bit
= BitsLog2Floor(--distance);
local
187
const int second_highest_bit = (distance >> (
highest_bit
- 1)) & 1;
188
*extra_bits =
highest_bit
- 1;
189
*code = 2 *
highest_bit
+ second_highest_bit;
195
const int
highest_bit
= BitsLog2Floor(--distance);
local
196
const int second_highest_bit = (distance >> (
highest_bit
- 1)) & 1;
197
*extra_bits =
highest_bit
- 1;
199
*code = 2 *
highest_bit
+ second_highest_bit;
/external/webp/src/dsp/
lossless.h
186
const int
highest_bit
= BitsLog2Floor(--distance);
local
187
const int second_highest_bit = (distance >> (
highest_bit
- 1)) & 1;
188
*extra_bits =
highest_bit
- 1;
189
*code = 2 *
highest_bit
+ second_highest_bit;
195
const int
highest_bit
= BitsLog2Floor(--distance);
local
196
const int second_highest_bit = (distance >> (
highest_bit
- 1)) & 1;
197
*extra_bits =
highest_bit
- 1;
199
*code = 2 *
highest_bit
+ second_highest_bit;
Completed in 173 milliseconds