/third_party/zlib/contrib/puff/ |
H A D | puff.c | 648 * lengths (ndist), then they are treated as one long list of nlen + ndist 667 int nlen, ndist, ncode; /* number of lengths in descriptor */ in dynamic() local 685 ndist = bits(s, 5) + 1; in dynamic() 687 if (nlen > MAXLCODES || ndist > MAXDCODES) in dynamic() 703 while (index < nlen + ndist) { in dynamic() 724 if (index + symbol > nlen + ndist) in dynamic() 741 err = construct(&distcode, lengths + nlen, ndist); in dynamic() 742 if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) in dynamic()
|
/third_party/node/deps/v8/third_party/zlib/ |
H A D | infback.c | 363 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,
|
H A D | inflate.h | 117 unsigned ndist; /* number of distance code lengths */ member
|
H A D | inflate.c | 926 state->ndist = BITS(5) + 1; 931 if (state->nlen > 286 || state->ndist > 30) { 962 while (state->have < state->nlen + state->ndist) { 999 if (state->have + copy > state->nlen + state->ndist) { 1034 ret = inflate_table(DISTS, state->lens + state->nlen, state->ndist,
|
/third_party/node/deps/zlib/ |
H A D | infback.c | 350 state->ndist = BITS(5) + 1; in inflateBack() 355 if (state->nlen > 286 || state->ndist > 30) { in inflateBack() 386 while (state->have < state->nlen + state->ndist) { in inflateBack() 423 if (state->have + copy > state->nlen + state->ndist) { in inflateBack() 458 ret = inflate_table(DISTS, state->lens + state->nlen, state->ndist, in inflateBack()
|
H A D | inflate.h | 117 unsigned ndist; /* number of distance code lengths */ member
|
H A D | inflate.c | 903 state->ndist = BITS(5) + 1; in inflate() 908 if (state->nlen > 286 || state->ndist > 30) { in inflate() 941 while (state->have < state->nlen + state->ndist) { in inflate() 978 if (state->have + copy > state->nlen + state->ndist) { in inflate() 1013 ret = inflate_table(DISTS, state->lens + state->nlen, state->ndist, in inflate()
|
/third_party/libwebsockets/win32port/zlib/ |
H A D | infback.c | 354 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) {
463 ret = inflate_table(DISTS, state->lens + state->nlen, state->ndist,
|
H A D | inflate.h | 113 unsigned ndist; /* number of distance code lengths */
member
|
H A D | inflate.c | 885 state->ndist = BITS(5) + 1;
890 if (state->nlen > 286 || state->ndist > 30) {
921 while (state->have < state->nlen + state->ndist) {
959 if (state->have + copy > state->nlen + state->ndist) {
994 ret = inflate_table(DISTS, state->lens + state->nlen, state->ndist,
|
/third_party/skia/third_party/externals/zlib/ |
H A D | infback.c | 363 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,
|
H A D | inflate.h | 116 unsigned ndist; /* number of distance code lengths */ member
|
H A D | inflate.c | 926 state->ndist = BITS(5) + 1; 931 if (state->nlen > 286 || state->ndist > 30) { 962 while (state->have < state->nlen + state->ndist) { 999 if (state->have + copy > state->nlen + state->ndist) { 1034 ret = inflate_table(DISTS, state->lens + state->nlen, state->ndist,
|
/third_party/zlib/ |
H A D | infback.c | 350 state->ndist = BITS(5) + 1; in inflateBack() 355 if (state->nlen > 286 || state->ndist > 30) { in inflateBack() 386 while (state->have < state->nlen + state->ndist) { in inflateBack() 423 if (state->have + copy > state->nlen + state->ndist) { in inflateBack() 458 ret = inflate_table(DISTS, state->lens + state->nlen, state->ndist, in inflateBack()
|
H A D | inflate.h | 117 unsigned ndist; /* number of distance code lengths */ member
|
H A D | inflate.c | 974 state->ndist = BITS(5) + 1; in inflate() 979 if (state->nlen > 286 || state->ndist > 30) { in inflate() 1012 while (state->have < state->nlen + state->ndist) { in inflate() 1049 if (state->have + copy > state->nlen + state->ndist) { in inflate() 1087 ret = inflate_table(DISTS, state->lens + state->nlen, state->ndist, in inflate()
|
/third_party/zlib/contrib/infback9/ |
H A D | infback9.c | 340 state->ndist = BITS(5) + 1; in inflateBack9() 374 while (state->have < state->nlen + state->ndist) { in inflateBack9() 412 if (state->have + copy > state->nlen + state->ndist) { in inflateBack9() 448 state->ndist, &(state->next), &(distbits), in inflateBack9()
|
H A D | inflate9.h | 41 unsigned ndist; /* number of distance code lengths */ member
|
/third_party/node/deps/v8/third_party/zlib/contrib/optimizations/ |
H A D | inflate.c | 937 state->ndist = BITS(5) + 1; 942 if (state->nlen > 286 || state->ndist > 30) { 973 while (state->have < state->nlen + state->ndist) { 1010 if (state->have + copy > state->nlen + state->ndist) { 1045 ret = inflate_table(DISTS, state->lens + state->nlen, state->ndist,
|
/third_party/node/deps/zlib/contrib/optimizations/ |
H A D | inflate.c | 914 state->ndist = BITS(5) + 1; in inflate() 919 if (state->nlen > 286 || state->ndist > 30) { in inflate() 952 while (state->have < state->nlen + state->ndist) { in inflate() 989 if (state->have + copy > state->nlen + state->ndist) { in inflate() 1024 ret = inflate_table(DISTS, state->lens + state->nlen, state->ndist, in inflate()
|
/third_party/skia/third_party/externals/zlib/contrib/optimizations/ |
H A D | inflate.c | 937 state->ndist = BITS(5) + 1; 942 if (state->nlen > 286 || state->ndist > 30) { 973 while (state->have < state->nlen + state->ndist) { 1010 if (state->have + copy > state->nlen + state->ndist) { 1045 ret = inflate_table(DISTS, state->lens + state->nlen, state->ndist,
|