Searched defs:next_out (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dgzio.c139 s->stream.next_out = s->outbuf = Z_NULL;
183 s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
270 s->stream.next_out = s->outbuf;
425 Byte *next_out; /* == stream.next_out but not forced far (for MSDOS) */ local
432 next_out = (Byte*)buf;
433 s->stream.next_out = (Bytef*)buf;
437 *next_out++ = s->back;
438 s->stream.next_out++;
456 zmemcpy(s->stream.next_out,
[all...]
H A Dzlib.h111 Bytef *next_out; /* next output byte should be put there */ member in struct:z_stream_s
112 uInt avail_out; /* remaining free space at next_out */
154 dropped to zero. It must update next_out and avail_out when avail_out
281 - Provide more output starting at next_out and update next_out and avail_out
345 if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible
383 avail_in may be modified, but next_out and avail_out are unchanged.)
402 - Provide more output starting at next_out and update next_out and avail_out
432 uncompressed data from that block has been written to strm->next_out
[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) {}
85 DepEdge* next_out() { return _next_out; } function in class:DepEdge

Completed in 34 milliseconds