OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:lsbits
(Results
1 - 6
of
6
) sorted by null
/external/flac/libFLAC/
bitwriter.c
512
const unsigned
lsbits
= 1 + parameter;
local
529
if(bw->bits && bw->bits + msbits +
lsbits
< FLAC__BITS_PER_WORD) { /* i.e. if the whole thing fits in the current uint32_t */
531
bw->bits = bw->bits + msbits +
lsbits
;
534
bw->accum <<= msbits +
lsbits
;
538
/* slightly pessimistic size check but faster than "<= bw->words + (bw->bits+msbits+
lsbits
+FLAC__BITS_PER_WORD-1)/FLAC__BITS_PER_WORD" */
540
if(bw->capacity <= bw->words + bw->bits + msbits + 1/*
lsbits
always fit in 1 uint32_t*/ && !bitwriter_grow_(bw, msbits+
lsbits
))
575
if(
lsbits
< left) {
576
bw->accum <<=
lsbits
;
578
bw->bits +=
lsbits
;
[
all
...]
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
g_pitch.cpp
268
// clear 2
LSBits
459
/* clear 2
LSBits
*/
q_gain_p.cpp
258
/* clear 2
LSBits
*/
/external/libhevc/decoder/
ihevcd_structs.h
1029
* 2
LSBits
give coding_tree_depth for 0th 8x8 and 2 MSBits give coding_tree_depth for 15th 8x8 and so on
1038
* 2
LSBits
give coding_tree_depth for 0th 8x8 and 2 MSBits give coding_tree_depth for 15th 8x8 and so on
[
all
...]
/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d_gain_p.cpp
187
/* clear 2
LSBits
*/
/external/llvm/docs/
ProgrammersManual.rst
[
all
...]
Completed in 752 milliseconds