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

  /xsrc/external/mit/brotli/dist/c/enc/
metablock.c 29 uint32_t npostfix, uint32_t ndirect) {
36 dist_params->num_direct_distance_codes = ndirect;
39 npostfix, ndirect, BROTLI_MAX_DISTANCE_BITS);
41 max_distance = ndirect + (1U << (BROTLI_MAX_DISTANCE_BITS + npostfix + 2)) -
46 BROTLI_MAX_ALLOWED_DISTANCE, npostfix, ndirect);
48 npostfix, ndirect, BROTLI_LARGE_MAX_DISTANCE_BITS);
155 uint32_t ndirect = ndirect_msb << npostfix; local
158 BrotliInitDistanceParams(&new_params, npostfix, ndirect);
160 ndirect == orig_params.dist.num_direct_distance_codes) {
  /xsrc/external/mit/brotli/dist/c/dec/
decode.c 1522 NDIRECT (0..120) ... are encoded in the meta-block header...
1525 Next NDIRECT distance symbols ... represent distances from 1 to NDIRECT...
1526 [For] distance symbols 16 + NDIRECT and greater ... the number of extra bits
1529 [ xcode = dcode - NDIRECT - 16 ]
1538 ... to get the actual value of the parameter NDIRECT, left-shift this
1544 alphabet_size = 16 + NDIRECT + (max_distbits << (NPOSTFIX + 1))
1550 distance = (range_start + half + extra) << NPOSTFIX + postfix + NDIRECT + 1
1556 NB: when NPOSTFIX = 0, NDIRECT is not greater than 15
1574 ndistbits = NDISTBITS(NDIRECT, NPOSTFIX)[dcode
1586 uint32_t ndirect = s->num_direct_distance_codes; local
2389 uint32_t ndirect = s->num_direct_distance_codes; local
    [all...]

Completed in 8 milliseconds