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

/external/python/cpython2/Modules/zlib/
H A Ddeflate.c731 s->gzindex = 0;
769 while (s->gzindex < (s->gzhead->extra_len & 0xffff)) {
779 put_byte(s, s->gzhead->extra[s->gzindex]);
780 s->gzindex++;
785 if (s->gzindex == s->gzhead->extra_len) {
786 s->gzindex = 0;
810 val = s->gzhead->name[s->gzindex++];
817 s->gzindex = 0;
841 val = s->gzhead->comment[s->gzindex++];
H A Ddeflate.h106 uInt gzindex; /* where in extra, name, or comment */ member in struct:internal_state
/external/syslinux/com32/lib/zlib/
H A Ddeflate.c648 s->gzindex = 0;
686 while (s->gzindex < (s->gzhead->extra_len & 0xffff)) {
696 put_byte(s, s->gzhead->extra[s->gzindex]);
697 s->gzindex++;
702 if (s->gzindex == s->gzhead->extra_len) {
703 s->gzindex = 0;
727 val = s->gzhead->name[s->gzindex++];
734 s->gzindex = 0;
758 val = s->gzhead->comment[s->gzindex++];
H A Ddeflate.h103 uInt gzindex; /* where in extra, name, or comment */ member in struct:internal_state
/external/python/cpython3/Modules/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++];
/external/zlib/src/
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 379 milliseconds