Searched defs:heap_len (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/zmod/
H A Ddeflate.h204 int heap_len; /* number of elements in the heap */ member in struct:internal_state
/illumos-gate/usr/src/boot/lib/libz/
H A Ddeflate.h207 int heap_len; /* number of elements in the heap */ member in struct:internal_state
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.c325 int heap_len; /* number of elements in the heap */ member in struct:deflate_state
1790 * one less element. Updates heap and heap_len.
1795 s->heap[SMALLEST] = s->heap[s->heap_len--]; \
1820 while (j <= s->heap_len) {
1822 if (j < s->heap_len &&
1992 s->heap_len = 0, s->heap_max = HEAP_SIZE;
1996 s->heap[++(s->heap_len)] = max_code = n;
2008 while (s->heap_len < 2) {
2009 node = s->heap[++(s->heap_len)] = (max_code < 2 ? ++max_code : 0);
2017 /* The elements heap[heap_len/
[all...]
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.c487 int heap_len; /* number of elements in the heap */ member in struct:deflate_state
2594 * one less element. Updates heap and heap_len.
2599 s->heap[SMALLEST] = s->heap[s->heap_len--]; \
2626 while (j <= s->heap_len) {
2628 if (j < s->heap_len &&
2819 s->heap_len = 0, s->heap_max = HEAP_SIZE;
2823 s->heap[++(s->heap_len)] = max_code = n;
2836 while (s->heap_len < 2) {
2837 node = s->heap[++(s->heap_len)] = (max_code < 2 ?
2847 * The elements heap[heap_len/
[all...]

Completed in 61 milliseconds