Lines Matching defs:source
47 * 2. Altered source versions must be plainly marked as such, and must not be
49 * 3. This notice may not be removed or altered from any source distribution.
84 * Compresses the source buffer into the destination buffer. The level
86 * length of the source buffer. Upon entry, destLen is the total size of the
95 z_compress_level(void *dest, size_t *destLen, const void *source,
101 stream.next_in = (Byte *)source;
135 * Decompresses the source buffer into the destination buffer. sourceLen is
136 * the byte length of the source buffer. Upon entry, destLen is the total
150 z_uncompress(void *dest, size_t *destLen, const void *source, size_t sourceLen)
155 stream.next_in = (Byte *)source;