Home
last modified time | relevance | path

Searched refs:complen (Results 1 – 8 of 8) sorted by relevance

/external/rust/crates/libz-sys/src/zlib-ng/arch/s390/
Ddfltcc_deflate.h41 #define DEFLATE_BOUND_ADJUST_COMPLEN(strm, complen, source_len) \ argument
44 (complen) = (3 + 5 + 5 + 4 + 19 * 3 + (286 + 30) * 7 + \
/external/rust/crates/libz-sys/src/zlib-ng/
Ddeflate.c88 # define DEFLATE_BOUND_ADJUST_COMPLEN(strm, complen, sourceLen) do {} while (0) argument
674 unsigned long complen, wraplen; in PREFIX() local
677 complen = sourceLen + ((sourceLen + 7) >> 3) + ((sourceLen + 63) >> 6) + 5; in PREFIX()
678 DEFLATE_BOUND_ADJUST_COMPLEN(strm, complen, sourceLen); /* hook for IBM Z DFLTCC */ in PREFIX()
682 return complen + 6; in PREFIX()
725 return complen + wraplen; in PREFIX()
/external/libwebsockets/win32port/zlib/
Ddeflate.c503 uLong complen, wraplen; local
507 complen = sourceLen +
512 return complen + 6;
548 return complen + wraplen;
/external/python/cpython2/Modules/zlib/
Ddeflate.c657 uLong complen, wraplen; local
660 complen = sourceLen +
665 return complen + 6;
704 return complen + wraplen;
/external/zlib/
Ddeflate.c703 uLong complen, wraplen; local
706 complen = sourceLen +
711 return complen + 6;
750 return complen + wraplen;
/external/rust/crates/libz-sys/src/zlib/
Ddeflate.c657 uLong complen, wraplen; local
660 complen = sourceLen +
665 return complen + 6;
704 return complen + wraplen;
/external/scapy/scapy/layers/tls/
Dhandshake.py243 lambda pkt: pkt.complen),
250 (pkt.complen or 0) -
/external/scapy/test/
Dtls.uts809 assert(ch.complen == 1)