OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:total_histograms
(Results
1 - 1
of
1
) sorted by null
/external/chromium_org/third_party/brotli/src/brotli/enc/
block_splitter.cc
91
int
total_histograms
= length / literals_per_histogram + 1;
local
92
if (
total_histograms
> max_histograms) {
93
total_histograms
= max_histograms;
96
int block_length = length /
total_histograms
;
97
for (int i = 0; i <
total_histograms
; ++i) {
98
int pos = length * i /
total_histograms
;
Completed in 151 milliseconds