Home
last modified time | relevance | path

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

/netbsd-src/usr.sbin/bta2dpd/bta2dpd/
H A Dsbc_encode.c381 uint64_t tmp_cache; in get_bits() local
395 tmp_cache = cache >> cache_pos; in get_bits()
396 *sample = (uint32_t)tmp_cache; in get_bits()
407 tmp_cache = cache & __BITS((uintmax_t)(numbits + cache_pos), in get_bits()
409 cache &= ~tmp_cache; in get_bits()
410 tmp_cache >>= cache_pos; in get_bits()
411 *sample = (uint32_t)tmp_cache; in get_bits()
421 uint8_t tmp_cache; in move_bits() local
427 tmp_cache = (uint8_t)(cache >> cache_pos); in move_bits()
428 *data++ = tmp_cache; in move_bits()
[all …]