HomeSort by relevance Sort by last modified time
    Searched refs:EXCESS (Results 1 - 2 of 2) sorted by null

  /system/media/audio_utils/
minifloat.c 22 #define EXCESS ((1 << EXPONENT_BITS) - 2)
45 if ((exp += EXCESS) > EXPONENT_MAX) {
61 exponent - EXCESS);
  /external/zlib/src/examples/
fitblk.c 20 output size plus a specfied excess amount (see the EXCESS define
23 the compressed data that fit in the requested plus excess sized
42 EXCESS is chosen to be just greater than the shortfall seen in a
45 header on the second pass. EXCESS is set to be large enough so
123 #define EXCESS 256 /* empirically determined stream overage */
147 blk = malloc(size + EXCESS);
156 def.avail_out = size + EXCESS;
163 if (ret == Z_STREAM_END && def.avail_out >= EXCESS) {
165 have = size + EXCESS - def.avail_out
    [all...]

Completed in 512 milliseconds