Lines Matching refs:out
98 state->out = (unsigned char *)malloc(state->want << 1);
99 if (state->in == NULL || state->out == NULL) {
100 if (state->out != NULL)
101 free(state->out);
104 gz_error(state, Z_MEM_ERROR, "out of memory");
116 free(state->out);
119 gz_error(state, Z_MEM_ERROR, "out of memory");
159 state->x.next = state->out;
201 gz_error(state, Z_MEM_ERROR, "out of memory");
243 if (gz_load(state, state->out, state->size << 1, &(state->x.have))
246 state->x.next = state->out;
250 strm->next_out = state->out;
456 state->x.next = state->out + (state->size << 1) - 1;
465 gz_error(state, Z_DATA_ERROR, "out of room to push characters");
470 if (state->x.next == state->out) {
471 unsigned char *src = state->out + state->x.have;
472 unsigned char *dest = state->out + (state->size << 1);
473 while (src > state->out)
560 /* if the state is not known, but we can find out, then do so (this is
588 free(state->out);