Home
last modified time | relevance | path

Searched refs:LC3_ACCU_BITS (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Bluetooth/system/embdrv/lc3/src/
Dbits.c67 (bits->mode == LC3_BITS_MODE_READ ? LC3_ACCU_BITS/8 : 0); in get_bits_left()
86 .n = mode == LC3_BITS_MODE_READ ? LC3_ACCU_BITS : 0, in lc3_setup_bits()
271 int n1 = LC3_MIN(LC3_ACCU_BITS - accu->n, n); in lc3_put_bits_generic()
274 accu->n = LC3_ACCU_BITS; in lc3_put_bits_generic()
325 accu->v |= *(--buffer->p_bw) << (LC3_ACCU_BITS - 8); in accu_load()
329 accu->nover = LC3_MIN(accu->nover + accu->n, LC3_ACCU_BITS); in accu_load()
348 int n1 = LC3_MIN(LC3_ACCU_BITS - accu->n, n); in lc3_get_bits_generic()
Dbits.h98 #define LC3_ACCU_BITS (int)(8 * sizeof(unsigned)) macro
229 if (accu->n + n <= LC3_ACCU_BITS) { in lc3_put_bits()
252 if (accu->n + n <= LC3_ACCU_BITS) { in lc3_get_bits()