OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:histo_bits
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/libwebp/enc/
histogram.c
335
static void HistogramBuildImage(int xsize, int
histo_bits
,
340
const int histo_xsize = VP8LSubSampleSize(xsize,
histo_bits
);
342
assert(
histo_bits
> 0);
345
const int ix = (y >>
histo_bits
) * histo_xsize + (x >>
histo_bits
);
483
int quality, int
histo_bits
, int cache_bits,
487
const int histo_xsize =
histo_bits
? VP8LSubSampleSize(xsize,
histo_bits
) : 1;
488
const int histo_ysize =
histo_bits
? VP8LSubSampleSize(ysize,
histo_bits
) : 1
[
all
...]
vp8l.c
424
VP8LBitWriter* const bw, int width, int
histo_bits
,
431
const int histo_xsize =
histo_bits
? VP8LSubSampleSize(width,
histo_bits
) : 1;
435
const int histogram_ix = histogram_symbols[
histo_bits
?
436
(y >>
histo_bits
) * histo_xsize +
437
(x >>
histo_bits
) : 0];
471
// Special case of EncodeImageInternal() for cache-bits=0,
histo_bits
=31
927
int
histo_bits
= (use_palette ? 9 : 7) - method;
local
929
const uint64_t huff_image_size = VP8LSubSampleSize(width,
histo_bits
) *
930
VP8LSubSampleSize(height,
histo_bits
) *
[
all
...]
/external/webp/src/enc/
histogram.c
335
static void HistogramBuildImage(int xsize, int
histo_bits
,
340
const int histo_xsize = VP8LSubSampleSize(xsize,
histo_bits
);
342
assert(
histo_bits
> 0);
345
const int ix = (y >>
histo_bits
) * histo_xsize + (x >>
histo_bits
);
483
int quality, int
histo_bits
, int cache_bits,
487
const int histo_xsize =
histo_bits
? VP8LSubSampleSize(xsize,
histo_bits
) : 1;
488
const int histo_ysize =
histo_bits
? VP8LSubSampleSize(ysize,
histo_bits
) : 1
[
all
...]
vp8l.c
424
VP8LBitWriter* const bw, int width, int
histo_bits
,
431
const int histo_xsize =
histo_bits
? VP8LSubSampleSize(width,
histo_bits
) : 1;
435
const int histogram_ix = histogram_symbols[
histo_bits
?
436
(y >>
histo_bits
) * histo_xsize +
437
(x >>
histo_bits
) : 0];
471
// Special case of EncodeImageInternal() for cache-bits=0,
histo_bits
=31
927
int
histo_bits
= (use_palette ? 9 : 7) - method;
local
929
const uint64_t huff_image_size = VP8LSubSampleSize(width,
histo_bits
) *
930
VP8LSubSampleSize(height,
histo_bits
) *
[
all
...]
Completed in 117 milliseconds