Searched refs:NLEN (Results 1 – 3 of 3) sorted by relevance
539 unsigned long LEN = in[p] + 256 * in[p + 1], NLEN = in[p + 2] + 256 * in[p + 3]; p += 4; in inflateNoCompression() local540 if(LEN + NLEN != 65535) { error = 21; return; } //error: NLEN is not one's complement of LEN in inflateNoCompression()
1190 unsigned LEN, NLEN, n, error = 0; in inflateNoCompression() local1197 NLEN = in[p] + 256 * in[p + 1]; p += 2; in inflateNoCompression()1200 if(LEN + NLEN != 65535) return 21; /*error: NLEN is not one's complement of LEN*/ in inflateNoCompression()1609 unsigned BFINAL, BTYPE, LEN, NLEN; in deflateNoCompression() local1620 NLEN = 65535 - LEN; in deflateNoCompression()1624 ucvector_push_back(out, (unsigned char)(NLEN % 256)); in deflateNoCompression()1625 ucvector_push_back(out, (unsigned char)(NLEN / 256)); in deflateNoCompression()
533 read LEN and NLEN (see next section)583 | LEN | NLEN |... LEN bytes of literal data...|586 LEN is the number of data bytes in the block. NLEN is the