Lines Matching defs:in

5 you may not use this file except in compliance with the License.
10 Unless required by applicable law or agreed to in writing, software
32 bp = bitpointer, always in range [0, 7].
59 uses both orders in one standard.
81 References to this bug can be found in the changelog of
124 /* The order in which code length code lengths are encoded as per deflate. */
244 /* Note: in case of "size_only" these are null pointers so no effect. */
275 Gives the exact size of the tree, in bits, as it will be encoded in DEFLATE.
346 Calculates size of the part after the header and tree of an LZ77 block, in bits.
377 Change the population counts in a way that the consequent Hufmann tree
387 rules of the format by adding more data in the distance codes. */
516 litlens: literal/length array of the LZ77 data, in the same format as in
518 dists: distance array of the LZ77 data, in the same format as in
520 lstart: where to start in the LZ77 data
521 lend: where to end in the LZ77 data (not inclusive)
587 const unsigned char* in,
606 ZopfliLZ77Optimal(&s, in, instart, inend, &store);
614 ZopfliLZ77OptimalFixed(&s, in, instart, inend, &fixedstore);
640 const unsigned char* in,
658 ZopfliLZ77OptimalFixed(&s, in, instart, inend, &store);
671 const unsigned char* in, size_t instart,
696 ZOPFLI_APPEND_DATA(in[i], out, outsize);
702 const unsigned char* in, size_t instart, size_t inend,
707 options, final, in, instart, inend, bp, out, outsize);
709 DeflateFixedBlock(options, final, in, instart, inend, bp, out, outsize);
712 DeflateDynamicBlock(options, final, in, instart, inend, bp, out, outsize);
723 const unsigned char* in,
731 ZopfliBlockSplitSimple(in, instart, inend, 65535, &splitpoints, &npoints);
736 ZopfliBlockSplit(options, in, instart, inend,
743 DeflateBlock(options, btype, i == npoints && final, in, start, end,
757 const unsigned char* in,
771 in, instart, inend,
787 ZopfliLZ77Optimal(&s, in, instart, inend, &store);
790 ZopfliLZ77OptimalFixed(&s, in, instart, inend, &store);
821 It is possible to call this function multiple times in a row, shifting
828 const unsigned char* in, size_t instart, size_t inend,
833 DeflateSplittingLast(options, btype, final, in, instart, inend,
836 DeflateSplittingFirst(options, btype, final, in, instart, inend,
840 DeflateBlock(options, btype, final, in, instart, inend, bp, out, outsize);
845 const unsigned char* in, size_t insize,
848 ZopfliDeflatePart(options, btype, final, in, 0, insize, bp, out, outsize);
856 in, i, i + size, bp, out, outsize);