HomeSort by: relevance | last modified time | path
    Searched defs:cache_pos (Results 1 - 1 of 1) sorted by relevancy

  /src/usr.sbin/bta2dpd/bta2dpd/
sbc_encode.c 381 static int cache_pos = 0; local
385 while (cache_pos < numbits) {
390 cache_pos += 8;
394 if (cache_pos >= 8) {
395 cache_pos -= 8;
396 tmp_cache = cache >> cache_pos;
400 if (cache_pos) {
405 cache_pos = 0;
407 cache_pos -= numbits;
408 tmp_cache = cache & __BITS((uintmax_t)(numbits + cache_pos),
411 tmp_cache >>= cache_pos; local
421 static int cache_pos = 0; local
454 static int cache_pos = 0; local
    [all...]

Completed in 38 milliseconds