Home | History | Annotate | Download | only in test

Lines Matching refs:Z_NULL

50                             strm members to Z_NULL to use the default memory
231 strm->opaque = Z_NULL;
232 strm->zalloc = Z_NULL;
233 strm->zfree = Z_NULL;
295 strm.next_in = Z_NULL;
357 strm.next_in = Z_NULL;
362 ret = inflateSetDictionary(&strm, Z_NULL, 0);
375 strm.next_in = Z_NULL;
381 strm.next_in = Z_NULL;
394 ret = inflate(Z_NULL, 0); assert(ret == Z_STREAM_ERROR);
395 ret = inflateEnd(Z_NULL); assert(ret == Z_STREAM_ERROR);
396 ret = inflateCopy(Z_NULL, Z_NULL); assert(ret == Z_STREAM_ERROR);
415 strm.next_in = Z_NULL;
453 if (desc == Z_NULL) {
458 if (state != Z_NULL)
466 return desc != Z_NULL; /* force error if desc not null */
476 ret = inflateBackInit_(Z_NULL, 0, win, 0, 0);
478 ret = inflateBackInit(Z_NULL, 0, win); assert(ret == Z_STREAM_ERROR);
479 ret = inflateBack(Z_NULL, Z_NULL, Z_NULL, Z_NULL, Z_NULL);
481 ret = inflateBackEnd(Z_NULL); assert(ret == Z_STREAM_ERROR);
488 ret = inflateBack(&strm, pull, Z_NULL, push, Z_NULL);
493 ret = inflateBack(&strm, pull, Z_NULL, push, &strm);
496 ret = inflateBack(&strm, pull, &strm, push, Z_NULL);
533 strm.next_in = Z_NULL;
562 ret = inflateBack(&strm, pull, Z_NULL, push, Z_NULL);