Lines Matching defs:out
59 unsigned char *out; /* output buffer (double-sized when reading) */
103 /* for an out of memory error, save as static string */
113 state->msg = (char *) "out of memory";
396 state->out = xmlMalloc(state->want << 1);
397 if (state->in == NULL || state->out == NULL) {
398 if (state->out != NULL)
399 xmlFree(state->out);
402 xz_error(state, LZMA_MEM_ERROR, "out of memory");
412 xmlFree(state->out);
415 xz_error(state, LZMA_MEM_ERROR, "out of memory");
427 xmlFree(state->out);
430 xz_error(state, LZMA_MEM_ERROR, "out of memory");
508 state->out[0] = 31;
518 state->next = state->out;
579 xz_error(state, LZMA_MEM_ERROR, "out of memory");
645 if (xz_load(state, state->out, state->size << 1, &(state->have)) ==
648 state->next = state->out;
651 strm->next_out = state->out;
796 xmlFree(state->out);