| sbc_encode.c | 381 	uint64_t tmp_cache;  local in function:get_bits 395 			tmp_cache = cache >> cache_pos;
 396 			*sample = (uint32_t)tmp_cache;
 407 		tmp_cache = cache & __BITS((uintmax_t)(numbits + cache_pos),
 409 		cache &= ~tmp_cache;
 410 		tmp_cache >>= cache_pos;
 411 		*sample = (uint32_t)tmp_cache;
 421 	uint8_t tmp_cache;  local in function:move_bits
 427 			tmp_cache = (uint8_t)(cache >> cache_pos);
 428 			*data++ = tmp_cache;
 454  uint8_t tmp_cache;  local in function:move_bits_crc
 [all...]
 |