Home | History | Annotate | Download | only in libxml2

Lines Matching defs:in

53     uint64_t pos;               /* current position in uncompressed data */
56 unsigned char *in; /* input buffer */
73 lzma_stream strm; /* stream structure in-place (not a pointer) */
79 z_stream zstrm; /* stream structure in-place (not a pointer) */
263 if (xz_load(state, state->in, state->size, &tmp) == -1) {
268 strm->next_in = state->in;
292 return strm->avail_in >= 6 && memcmp(state->in, "\3757zXZ", 6) == 0;
310 if (lzma_properties_decode(&filter, NULL, state->in, 5) != LZMA_OK)
341 uncompressed_size |= (uint64_t) (state->in[5 + i]) << (i * 8);
362 in *ret. Otherwise -1 is returned and *ret is not modified. */
393 state->in = xmlMalloc(state->want);
395 if (state->in == NULL || state->out == NULL) {
398 if (state->in != NULL)
399 xmlFree(state->in);
411 xmlFree(state->in);
426 xmlFree(state->in);
436 /* get some data in the input buffer */
659 /* skip over whatever is in output buffer */
699 /* since an int is returned, make sure len fits in one, otherwise return
700 * with an error (this avoids the flaw in the interface) */
703 "requested length does not fit in int");
740 /* the copy above assures that we will leave with space in the
767 /* return number of bytes read into user buffer (will fit in int) */
791 xmlFree(state->in);