Lines Matching refs:source
53 * source file infback.c to provide a call-back interface to inflate for
1323 int ZEXPORT inflateCopy(dest, source)
1325 z_streamp source;
1333 if (dest == Z_NULL || source == Z_NULL || source->state == Z_NULL ||
1334 source->zalloc == (alloc_func)0 || source->zfree == (free_func)0)
1336 state = (struct inflate_state FAR *)source->state;
1340 ZALLOC(source, 1, sizeof(struct inflate_state));
1345 ZALLOC(source, 1U << state->wbits, sizeof(unsigned char));
1347 ZFREE(source, copy);
1353 zmemcpy(dest, source, sizeof(z_stream));