Home
last modified time | relevance | path

Searched refs:next_in (Results 1 – 14 of 14) sorted by relevance

/xnu-8020.101.4/osfmk/kdp/output_stages/
H A Dout_zlib.c111 if (strm->next_in != (Bytef *) strm) { in zlib_zinput()
112 memcpy(buf, strm->next_in, len); in zlib_zinput()
119 strm->next_in += len; in zlib_zinput()
146 zs->next_in = data ? data : (Bytef *) zs /* zero marker */; in zlib_stream_output_chunk()
181 data->zs.next_in = NULL; in zlib_stage_reset()
/xnu-8020.101.4/libkern/zlib/
H A Dinfback.c150 next = strm->next_in; \
161 strm->next_in = next; \
297 next = strm->next_in; in inflateBack()
634 strm->next_in = next; in inflateBack()
H A Duncompr.c63 stream.next_in = (Bytef*)source; in uncompress()
H A Dinffast.c109 in = strm->next_in; in inflate_fast()
304 strm->next_in = in; in inflate_fast()
H A Dcompress.c60 stream.next_in = (Bytef*)source; in compress2()
H A Dinflate.c431 next = strm->next_in; \
442 strm->next_in = next; \
601 (strm->next_in == Z_NULL && strm->avail_in != 0)) in inflate()
1331 len = syncsearch(&(state->have), strm->next_in, strm->avail_in); in inflateSync()
1333 strm->next_in += len; in inflateSync()
H A Ddeflate.c594 (strm->next_in == Z_NULL && strm->avail_in != 0) || in deflate()
994 strm->adler = adler32(strm->adler, strm->next_in, len); in read_buf()
998 strm->adler = z_crc32(strm->adler, strm->next_in, len); in read_buf()
1001 zmemcpy(buf, strm->next_in, len); in read_buf()
1002 strm->next_in += len; in read_buf()
/xnu-8020.101.4/libkdd/
H A Dkdd_main.m69 stream.next_in = (void*) data.bytes;
/xnu-8020.101.4/libkern/libkern/
H A Dzlib.h110 Bytef *next_in;/* next input byte */ member
/xnu-8020.101.4/osfmk/kern/
H A Dkern_cdata.c298 cd->kcd_cd_zs.next_in = NULL; in kcdata_init_compress_state()
414 zs->next_in = inbuffer; in kcdata_do_compress_zlib()
/xnu-8020.101.4/libkdd/tests/
H A DTests.swift61 …var stream = z_stream(next_in: nil, avail_in: 0, total_in: 0, next_out: nil, avail_out: 0, total_o… in decompress()
69 stream.next_in = UnsafeMutablePointer(mutating:data.bytes.assumingMemoryBound(to:Bytef.self)) in decompress()
/xnu-8020.101.4/iokit/Kernel/
H A DIOPMrootDomain.cpp12024 if (strm->next_in != (Bytef *) strm) { in swd_zinput()
12025 memcpy(buf, strm->next_in, len); in swd_zinput()
12033 strm->next_in += len; in swd_zinput()
12097 swd_zs.next_in = NULL; in swd_compress()
12109 zs->next_in = (unsigned char *)inPtr ? (Bytef *)inPtr : (Bytef *)zs; /* zero marker? */ in swd_compress()
/xnu-8020.101.4/tests/
H A Dstackshot_tests.m2306 zs.next_in = (unsigned char *)bufferBase;
/xnu-8020.101.4/libkern/c++/
H A DOSKext.cpp3472 zstream.next_in = (UInt8 *)data; in extractMkext2FileData()