Searched refs:ndist (Results 1 - 25 of 33) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/zlib-1.2.8/contrib/infback9/
H A Dinflate9.h41 unsigned ndist; /* number of distance code lengths */ member in struct:inflate_state
H A Dinfback9.c349 state->ndist = BITS(5) + 1;
383 while (state->have < state->nlen + state->ndist) {
421 if (state->have + copy > state->nlen + state->ndist) {
457 state->ndist, &(state->next), &(distbits),
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/zlib-1.2.3/contrib/infback9/
H A Dinflate9.h41 unsigned ndist; /* number of distance code lengths */ member in struct:inflate_state
H A Dinfback9.c351 state->ndist = BITS(5) + 1;
385 while (state->have < state->nlen + state->ndist) {
423 if (state->have + copy > state->nlen + state->ndist) {
450 state->ndist, &(state->next), &(distbits),
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/zlib-1.2.3/contrib/infback9/
H A Dinflate9.h41 unsigned ndist; /* number of distance code lengths */ member in struct:inflate_state
H A Dinfback9.c351 state->ndist = BITS(5) + 1;
385 while (state->have < state->nlen + state->ndist) {
423 if (state->have + copy > state->nlen + state->ndist) {
450 state->ndist, &(state->next), &(distbits),
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/zlib-1.2.7/contrib/infback9/
H A Dinflate9.h41 unsigned ndist; /* number of distance code lengths */ member in struct:inflate_state
H A Dinfback9.c351 state->ndist = BITS(5) + 1;
385 while (state->have < state->nlen + state->ndist) {
423 if (state->have + copy > state->nlen + state->ndist) {
459 state->ndist, &(state->next), &(distbits),
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/zlib-1.2.8/
H A Dinflate.h113 unsigned ndist; /* number of distance code lengths */ member in struct:inflate_state
H A Dinfback.c363 state->ndist = BITS(5) + 1;
368 if (state->nlen > 286 || state->ndist > 30) {
399 while (state->have < state->nlen + state->ndist) {
436 if (state->have + copy > state->nlen + state->ndist) {
471 ret = inflate_table(DISTS, state->lens + state->nlen, state->ndist,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/zlib/
H A Dinflate.h109 unsigned ndist; /* number of distance code lengths */ member in struct:inflate_state
H A Dinfback.c354 state->ndist = BITS(5) + 1;
359 if (state->nlen > 286 || state->ndist > 30) {
390 while (state->have < state->nlen + state->ndist) {
428 if (state->have + copy > state->nlen + state->ndist) {
454 ret = inflate_table(DISTS, state->lens + state->nlen, state->ndist,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/zlib-1.2.3/
H A Dinflate.h109 unsigned ndist; /* number of distance code lengths */ member in struct:inflate_state
H A Dinfback.c354 state->ndist = BITS(5) + 1;
359 if (state->nlen > 286 || state->ndist > 30) {
390 while (state->have < state->nlen + state->ndist) {
428 if (state->have + copy > state->nlen + state->ndist) {
454 ret = inflate_table(DISTS, state->lens + state->nlen, state->ndist,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/zlib-1.2.3/
H A Dinflate.h109 unsigned ndist; /* number of distance code lengths */ member in struct:inflate_state
H A Dinfback.c354 state->ndist = BITS(5) + 1;
359 if (state->nlen > 286 || state->ndist > 30) {
390 while (state->have < state->nlen + state->ndist) {
428 if (state->have + copy > state->nlen + state->ndist) {
454 ret = inflate_table(DISTS, state->lens + state->nlen, state->ndist,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/lib/zlib_inflate/
H A Dinflate.h104 unsigned ndist; /* number of distance code lengths */ member in struct:inflate_state
H A Dinflate.c452 state->ndist = BITS(5) + 1;
457 if (state->nlen > 286 || state->ndist > 30) {
486 while (state->have < state->nlen + state->ndist) {
524 if (state->have + copy > state->nlen + state->ndist) {
550 ret = zlib_inflate_table(DISTS, state->lens + state->nlen, state->ndist,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/zlib-1.2.7/
H A Dinflate.h113 unsigned ndist; /* number of distance code lengths */ member in struct:inflate_state
H A Dinfback.c363 state->ndist = BITS(5) + 1;
368 if (state->nlen > 286 || state->ndist > 30) {
399 while (state->have < state->nlen + state->ndist) {
436 if (state->have + copy > state->nlen + state->ndist) {
471 ret = inflate_table(DISTS, state->lens + state->nlen, state->ndist,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/zlib-1.2.8/contrib/puff/
H A Dpuff.c648 * lengths (ndist), then they are treated as one long list of nlen + ndist
667 int nlen, ndist, ncode; /* number of lengths in descriptor */ local
685 ndist = bits(s, 5) + 1;
687 if (nlen > MAXLCODES || ndist > MAXDCODES)
703 while (index < nlen + ndist) {
724 if (index + symbol > nlen + ndist)
741 err = construct(&distcode, lengths + nlen, ndist);
742 if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1]))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/zlib-1.2.7/contrib/puff/
H A Dpuff.c647 * lengths (ndist), then they are treated as one long list of nlen + ndist
666 int nlen, ndist, ncode; /* number of lengths in descriptor */ local
684 ndist = bits(s, 5) + 1;
686 if (nlen > MAXLCODES || ndist > MAXDCODES)
702 while (index < nlen + ndist) {
721 if (index + symbol > nlen + ndist)
738 err = construct(&distcode, lengths + nlen, ndist);
739 if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1]))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/zlib-1.2.3/contrib/puff/
H A Dpuff.c609 * lengths (ndist), then they are treated as one long list of nlen + ndist
628 int nlen, ndist, ncode; /* number of lengths in descriptor */ local
641 ndist = bits(s, 5) + 1;
643 if (nlen > MAXLCODES || ndist > MAXDCODES)
658 while (index < nlen + ndist) {
676 if (index + symbol > nlen + ndist)
689 err = construct(&distcode, lengths + nlen, ndist);
690 if (err < 0 || (err > 0 && ndist - distcode.count[0] != 1))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/zlib-1.2.3/contrib/puff/
H A Dpuff.c609 * lengths (ndist), then they are treated as one long list of nlen + ndist
628 int nlen, ndist, ncode; /* number of lengths in descriptor */ local
641 ndist = bits(s, 5) + 1;
643 if (nlen > MAXLCODES || ndist > MAXDCODES)
658 while (index < nlen + ndist) {
676 if (index + symbol > nlen + ndist)
689 err = construct(&distcode, lengths + nlen, ndist);
690 if (err < 0 || (err > 0 && ndist - distcode.count[0] != 1))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ceph/
H A Dinode.c136 frag->ndist = 0;
219 * fragment in tree ONLY if ndist > 0. Otherwise, only
229 int ndist = le32_to_cpu(dirinfo->ndist); local
234 if (ndist == 0) {
250 frag->ndist = 0;
268 frag->ndist = min_t(u32, ndist, CEPH_MAX_DIRFRAG_REP);
269 for (i = 0; i < frag->ndist; i++)
271 dout("fill_dirfrag %llx.%llx frag %x ndist
[all...]

Completed in 273 milliseconds

12