HomeSort by relevance Sort by last modified time
    Searched defs:excess (Results 1 - 10 of 10) sorted by null

  /external/bluetooth/bluedroid/embdrv/sbc/decoder/srce/
bitalloc-sbc.c 53 OI_UINT excess; local
66 /* We want the compiler to put excess into a register */
67 excess = ex;
72 excess = allocAdjustedBits(&common->bits.uint8[sbL], bitneeds.uint8[sbL] + bitadjust, excess);
74 excess = allocAdjustedBits(&common->bits.uint8[sbR], bitneeds.uint8[sbR] + bitadjust, excess);
79 while (excess) {
80 excess = allocExcessBits(&common->bits.uint8[sbL], excess);
    [all...]
bitalloc.c 230 * adjustment and excess bits.
242 * @param excess Returns the excess bits after the adjustment
250 OI_UINT *excess)
294 *excess = bitpool - bitcount;
306 OI_INT excess)
310 if (excess) {
312 --excess;
314 } else if ((bits == 1) && (excess > 1)) {
316 excess -= 2
348 OI_UINT excess; local
    [all...]
  /external/iproute2/tc/
q_atm.c 44 fprintf(stderr, " [ hdr HEX... ] [ excess ( CLASSID | clp ) ] "
56 __u32 excess = 0; local
133 else if (!strcmp(*argv,"excess")) {
135 if (!strcmp(*argv,"clp")) excess = 0;
136 else if (get_tc_classid(&excess,*argv)) {
183 if (excess) addattr_l(n,1024,TCA_ATM_EXCESS,&excess,sizeof(excess));
222 __u32 excess; local
224 if (RTA_PAYLOAD(tb[TCA_ATM_EXCESS]) < sizeof(excess))
    [all...]
  /external/chromium_org/third_party/opus/src/celt/
rate.c 435 opus_int32 excess, bit; local
444 excess = MAX32(bit-cap[j],0);
445 bits[j] = bit-excess;
486 excess = MAX32(0,bit-(C<<BITRES));
487 bits[j] = bit-excess;
495 if(excess > 0)
499 extra_fine = IMIN(excess>>(stereo+BITRES),MAX_FINE_BITS-ebits[j]);
502 fine_priority[j] = extra_bits >= excess-balance;
503 excess -= extra_bits;
505 balance = excess;
    [all...]
  /external/libopus/celt/
rate.c 435 opus_int32 excess, bit; local
444 excess = MAX32(bit-cap[j],0);
445 bits[j] = bit-excess;
486 excess = MAX32(0,bit-(C<<BITRES));
487 bits[j] = bit-excess;
495 if(excess > 0)
499 extra_fine = IMIN(excess>>(stereo+BITRES),MAX_FINE_BITS-ebits[j]);
502 fine_priority[j] = extra_bits >= excess-balance;
503 excess -= extra_bits;
505 balance = excess;
    [all...]
  /external/chromium_org/media/blink/
buffered_resource_loader.cc 462 // Consume excess bytes from our in-memory buffer if necessary.
464 int excess = buffer_.forward_bytes() - buffer_.forward_capacity(); local
465 bool success = buffer_.Seek(excess);
467 offset_ += first_offset_ + excess;
601 // existing excess buffered data is consumed.
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
AutoTableLayout.cpp 563 int excess = tableLogicalWidth * (totalPercent - 100) / 100; local
568 int reduction = std::min(cellLogicalWidth, excess);
570 excess -= reduction;
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
malloc.c 131 sqlite3_int64 excess; local
144 excess = sqlite3_memory_used() - n;
145 if( excess>0 ) sqlite3_release_memory((int)(excess & 0x7fffffff));
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp 1805 unsigned excess = 4 * (ARM::R4 - reg); local
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c 17836 sqlite3_int64 excess; local
    [all...]

Completed in 953 milliseconds