Lines Matching defs:in
55 uint64_t pos; /* current position in uncompressed data */
58 unsigned char *in; /* input buffer */
75 lzma_stream strm; /* stream structure in-place (not a pointer) */
81 z_stream zstrm; /* stream structure in-place (not a pointer) */
265 if (xz_load(state, state->in, state->size, &tmp) == -1) {
270 strm->next_in = state->in;
294 return strm->avail_in >= 6 && memcmp(state->in, "\3757zXZ", 6) == 0;
312 if (lzma_properties_decode(&filter, NULL, state->in, 5) != LZMA_OK)
343 uncompressed_size |= (uint64_t) (state->in[5 + i]) << (i * 8);
364 in *ret. Otherwise -1 is returned and *ret is not modified. */
395 state->in = xmlMalloc(state->want);
397 if (state->in == NULL || state->out == NULL) {
400 if (state->in != NULL)
401 xmlFree(state->in);
413 xmlFree(state->in);
428 xmlFree(state->in);
438 /* get some data in the input buffer */
665 /* skip over whatever is in output buffer */
705 /* since an int is returned, make sure len fits in one, otherwise return
706 * with an error (this avoids the flaw in the interface) */
709 "requested length does not fit in int");
746 /* the copy above assures that we will leave with space in the
773 /* return number of bytes read into user buffer (will fit in int) */
797 xmlFree(state->in);