OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:window_bits_
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/brotli/src/brotli/enc/
ringbuffer.h
28
:
window_bits_
(window_bits), tail_bits_(tail_bits), pos_(0) {
30
const int buflen = (1 <<
window_bits_
) + (1 << tail_bits_);
42
const size_t masked_pos = pos_ & ((1 <<
window_bits_
) - 1);
46
if (masked_pos + n <= (1 <<
window_bits_
)) {
54
((1 <<
window_bits_
) + (1 << tail_bits_)) - masked_pos));
56
memcpy(&buffer_[0], bytes + ((1 <<
window_bits_
) - masked_pos),
57
n - ((1 <<
window_bits_
) - masked_pos));
70
const size_t masked_pos = pos_ & ((1 <<
window_bits_
) - 1);
73
const size_t p = (1 <<
window_bits_
) + masked_pos;
79
const int
window_bits_
;
member in class:RingBuffer
[
all
...]
encode.h
68
int
window_bits_
;
member in class:brotli::BrotliCompressor
Completed in 49 milliseconds