OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:next_in
(Results
1 - 25
of
48
) sorted by relevancy
1
2
/src/sys/arch/hpc/stand/hpcboot/
file_manager.cpp
76
_stream->
next_in
= _inbuf;
118
memcpy(_stream->next_out, _stream->
next_in
, n);
120
_stream->
next_in
+= n;
141
_stream->
next_in
= _inbuf;
250
_stream->
next_in
= _inbuf;
286
_stream->
next_in
= _inbuf;
289
return *(_stream->
next_in
)++;
334
_stream->
next_in
--;
/src/common/dist/zlib/examples/
fitblk.c
83
def->
next_in
= raw;
114
def->
next_in
= raw;
184
inf.
next_in
= Z_NULL;
194
inf.
next_in
= blk;
209
inf.
next_in
= tmp;
gznorm.c
93
strm.
next_in
= Z_NULL;
132
strm.
next_in
= put = dat;
170
// just consumed. It is therefore assured that put < strm.
next_in
.
183
put = strm.
next_in
;
194
// put..strm.
next_in
-1 is the compressed data that has been
198
// available, i.e., put < strm.
next_in
. If prev is -1, then
252
if (put == strm.
next_in
)
286
if (put == strm.
next_in
)
309
unsigned char *end = strm.
next_in
- mix;
411
} while (put < strm.
next_in
);
[
all
...]
gzjoin.c
261
strm->
next_in
= in->next;
304
strm.
next_in
= Z_NULL;
320
fwrite(start, 1, strm.
next_in
- start, out);
353
last = strm.
next_in
[-1] & pos;
355
in->buf[strm.
next_in
- in->buf - 1] &= ~pos;
361
fwrite(start, 1, strm.
next_in
- start, out);
366
last = strm.
next_in
[0] & 1;
368
in->buf[strm.
next_in
- in->buf] &= ~1;
375
in->next = in->buf + (strm.
next_in
- in->buf);
zpipe.c
60
strm.
next_in
= in;
105
strm.
next_in
= Z_NULL;
119
strm.
next_in
= in;
gun.c
197
file, read error, or write error (a write error indicated by strm->
next_in
282
strm->
next_in
= outbuf; /* signal write error */
354
strm->
next_in
= outbuf; /* signal write error */
399
strm->
next_in
= Z_NULL; /* so Z_BUF_ERROR means EOF */
473
strm->
next_in
= next;
477
next = strm->
next_in
;
479
strm->
next_in
= Z_NULL; /* so Z_BUF_ERROR means EOF */
608
if (strm->
next_in
!= Z_NULL) {
zran.c
150
strm.
next_in
= buf;
163
(strm.
next_in
[0] & 0xf) == 8 ? ZLIB :
164
strm.
next_in
[0] == 0x1f ? GZIP :
319
strm->
next_in
= in;
392
strm.
next_in
= input;
411
strm.
next_in
+= drop;
435
strm.
next_in
= input;
/src/sys/arch/atari/stand/tostools/libtos/
cread.c
135
s->stream.
next_in
= s->inbuf;
138
return *(s->stream.
next_in
)++;
182
s->stream.
next_in
--;
243
s->stream.
next_in
= s->inbuf = (unsigned char*)malloc(Z_BUFSIZE);
300
s->stream.
next_in
, n);
302
s->stream.
next_in
+= n;
329
s->stream.
next_in
= s->inbuf;
399
s->stream.
next_in
= s->inbuf = sav_inbuf;
/src/usr.bin/gzip/
unbzip2.c
60
bzs.
next_in
= pre;
76
bzs.
next_in
= inbuf;
gzip.c
664
z.
next_in
= (unsigned char *)inbufp;
778
#define ADVANCE() { z.
next_in
++; z.avail_in--; }
791
z.
next_in
= (unsigned char *)pre;
807
memmove(inbufp, z.
next_in
, z.avail_in);
809
z.
next_in
= (unsigned char *)inbufp;
810
in_size = read(in, z.
next_in
+ z.avail_in,
836
if (*z.
next_in
!= GZIP_MAGIC0) {
853
if (*z.
next_in
!= GZIP_MAGIC1 &&
854
*z.
next_in
!= GZIP_OMAGIC1) {
863
if (*z.
next_in
!= Z_DEFLATED)
[
all
...]
unxz.c
54
strm.
next_in
= ibuf;
78
strm.
next_in
= ibuf;
371
strm.
next_in
= buf.u8;
/src/common/dist/zlib/
gzwrite.c
44
strm->
next_in
= NULL;
59
/* Compress whatever is at avail_in and
next_in
and write to the output file.
80
writ = write(state->fd, strm->
next_in
, put);
86
strm->
next_in
+= writ;
164
strm->
next_in
= state->in;
200
state->strm.
next_in
= state->in;
201
have = (unsigned)((state->strm.
next_in
+ state->strm.avail_in) -
221
state->strm.
next_in
= __UNCONST(buf);
316
strm->
next_in
= state->in;
317
have = (unsigned)((strm->
next_in
+ strm->avail_in) - state->in)
[
all
...]
compress.c
43
stream.
next_in
= __UNCONST(source);
uncompr.c
47
stream.
next_in
= __UNCONST(source);
gzread.c
52
unsigned const char *q = strm->
next_in
;
62
strm->
next_in
= state->in;
97
state->strm.
next_in
= Z_NULL;
123
strm->
next_in
[0] == 31 && strm->
next_in
[1] == 139) {
143
memcpy(state->x.next, strm->
next_in
, strm->avail_in);
/src/common/dist/zlib/test/
example.c
178
c_stream.
next_in
= (z_const unsigned char *)hello;
212
d_stream.
next_in
= compr;
258
c_stream.
next_in
= uncompr;
269
c_stream.
next_in
= compr;
276
c_stream.
next_in
= uncompr;
304
d_stream.
next_in
= compr;
344
c_stream.
next_in
= (z_const unsigned char *)hello;
378
d_stream.
next_in
= compr;
427
c_stream.
next_in
= (z_const unsigned char *)hello;
453
d_stream.
next_in
= compr
[
all
...]
infcover.c
295
strm.
next_in
= Z_NULL;
316
strm.
next_in
= in;
357
strm.
next_in
= Z_NULL;
375
strm.
next_in
= Z_NULL;
381
strm.
next_in
= Z_NULL;
415
strm.
next_in
= Z_NULL;
418
strm.
next_in
= (void *)"\x63";
431
strm.
next_in
= (void *)"\x80";
435
strm.
next_in
= (void *)"\0\0\xff\xff";
455
return 0; /* no input (already provided at
next_in
) */
[
all
...]
/src/sys/lib/libsa/
cread.c
166
s->stream.
next_in
= s->inbuf;
169
return *(s->stream.
next_in
)++;
214
s->stream.
next_in
--;
278
s->stream.
next_in
= s->inbuf = (unsigned char *)alloc(Z_BUFSIZE);
347
s->stream.
next_in
, n);
349
s->stream.
next_in
+= n;
376
s->stream.
next_in
= s->inbuf;
475
s->stream.
next_in
= s->inbuf = sav_inbuf;
/src/sys/arch/evbarm/stand/gzboot/
gzboot.c
211
s->stream.
next_in
= s->inbuf;
274
s->stream.
next_in
= s->inbuf;
277
return (*(s->stream.
next_in
)++);
376
state.stream.
next_in
= state.inbuf = alloc(Z_BUFSIZE);
/src/sys/net/
ppp-deflate.c
171
state->strm.
next_in
= NULL;
286
state->strm.
next_in
= rptr;
301
state->strm.
next_in
= mtod(mp, u_char *);
524
state->strm.
next_in
= rptr;
551
state->strm.
next_in
= mtod(mi, u_char *);
631
state->strm.
next_in
= rptr + 3;
634
--state->strm.
next_in
;
651
state->strm.
next_in
= mtod(mi, u_char *);
/src/tests/crypto/opencrypto/
h_comp_zlib.c
72
z.
next_in
= buf1;
h_comp_zlib_rnd.c
76
z.
next_in
= buf1;
/src/common/dist/zlib/contrib/pascal/
example.pas
198
c_stream.
next_in
:= hello;
240
d_stream.
next_in
:= compr;
290
c_stream.
next_in
:= uncompr;
299
c_stream.
next_in
:= compr;
306
c_stream.
next_in
:= uncompr;
335
d_stream.
next_in
:= compr;
382
c_stream.
next_in
:= hello;
418
d_stream.
next_in
:= compr;
468
c_stream.
next_in
:= hello;
495
d_stream.
next_in
:= compr
[
all
...]
/src/common/dist/zlib/contrib/delphi/
ZLib.pas
24
next_in
: PChar; // next input byte
25
avail_in: Integer; // number of bytes available at
next_in
298
strm.
next_in
:= InBuf;
341
strm.
next_in
:= InBuf;
374
strm.
next_in
:= InBuf;
420
FZRec.
next_in
:= nil;
446
FZRec.
next_in
:= @Buffer;
486
FZRec.
next_in
:= FBuffer;
513
FZRec.
next_in
:= FBuffer;
535
FZRec.
next_in
:= FBuffer
[
all
...]
/src/sys/opencrypto/
deflate.c
94
zbuf.
next_in
= data; /* data that is going to be processed */
256
zbuf.
next_in
= data; /* data that is going to be processed */
297
zbuf.
next_in
= data + sizeof(gzip_header);
Completed in 40 milliseconds
1
2
Indexes created Wed Nov 05 01:09:58 GMT 2025