Searched refs:gzindex (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Ddeflate.c624 s->gzindex = 0;
662 while (s->gzindex < (s->gzhead->extra_len & 0xffff)) {
672 put_byte(s, s->gzhead->extra[s->gzindex]);
673 s->gzindex++;
678 if (s->gzindex == s->gzhead->extra_len) {
679 s->gzindex = 0;
703 val = s->gzhead->name[s->gzindex++];
710 s->gzindex = 0;
734 val = s->gzhead->comment[s->gzindex++];
H A Ddeflate.h103 uInt gzindex; /* where in extra, name, or comment */ member in struct:internal_state
/freebsd-11-stable/sys/contrib/zlib/
H A Ddeflate.h109 ulg gzindex; /* where in extra, name, or comment */ member in struct:internal_state
H A Ddeflate.c896 s->gzindex = 0;
903 uInt left = (s->gzhead->extra_len & 0xffff) - s->gzindex;
907 s->gzhead->extra + s->gzindex, copy);
910 s->gzindex += copy;
920 s->gzhead->extra + s->gzindex, left);
923 s->gzindex = 0;
941 val = s->gzhead->name[s->gzindex++];
945 s->gzindex = 0;
963 val = s->gzhead->comment[s->gzindex++];

Completed in 72 milliseconds