Searched defs:next_in (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dzlib.h107 Bytef *next_in; /* next input byte */ member in struct:z_stream_s
108 uInt avail_in; /* number of bytes available at next_in */
153 The application must update next_in and avail_in when avail_in has
276 - Compress more input starting at next_in and update next_in and avail_in
278 enough room in the output buffer), next_in and avail_in are updated and
345 if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible
370 next_in, avail_in, zalloc, zfree and opaque must be initialized before by
371 the caller. If next_in is not Z_NULL and avail_in is large enough (the exact
382 the zlib header if present: this will be done by inflate(). (So next_in an
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dsuperword.hpp81 DepEdge(DepMem* pred, DepMem* succ, DepEdge* next_in, DepEdge* next_out) : argument
82 _pred(pred), _succ(succ), _next_in(next_in), _next_out(next_out) {}
84 DepEdge* next_in() { return _next_in; } function in class:DepEdge

Completed in 45 milliseconds