Searched defs:excess (Results 1 - 2 of 2) sorted by relevance

/system/bt/embdrv/sbc/decoder/srce/
H A Dbitalloc-sbc.c52 OI_UINT excess; local
67 /* We want the compiler to put excess into a register */
68 excess = ex;
73 excess = allocAdjustedBits(&common->bits.uint8[sbL],
74 bitneeds.uint8[sbL] + bitadjust, excess);
76 excess = allocAdjustedBits(&common->bits.uint8[sbR],
77 bitneeds.uint8[sbR] + bitadjust, excess);
82 while (excess) {
83 excess = allocExcessBits(&common->bits.uint8[sbL], excess);
[all...]
H A Dbitalloc.c227 * adjustment and excess bits.
241 * @param excess Returns the excess bits after the adjustment
247 OI_UINT* excess) {
290 *excess = bitpool - bitcount;
300 INLINE OI_INT allocAdjustedBits(uint8_t* dest, OI_INT bits, OI_INT excess) { argument
303 if (excess) {
305 --excess;
307 } else if ((bits == 1) && (excess > 1)) {
309 excess
245 adjustToFitBitpool(const OI_UINT bitpool, uint32_t* bitneeds, const OI_UINT subbands, OI_UINT bitcount, OI_UINT* excess) argument
323 allocExcessBits(uint8_t* dest, OI_INT excess) argument
336 OI_UINT excess; local
[all...]

Completed in 49 milliseconds