Symbol: Freq
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
1775
for (n = 0; n < L_CODES; n++) s->dyn_ltree[n].Freq = 0;
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
1776
for (n = 0; n < D_CODES; n++) s->dyn_dtree[n].Freq = 0;
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
1777
for (n = 0; n < BL_CODES; n++) s->bl_tree[n].Freq = 0;
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
1779
s->dyn_ltree[END_BLOCK].Freq = 1;
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
1804
(tree[n].Freq < tree[m].Freq || \
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
1805
(tree[n].Freq == tree[m].Freq && depth[n] <= depth[m]))
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
1884
f = tree[n].Freq;
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
1919
*(long)tree[m].Freq;
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
1995
if (tree[n].Freq != 0) {
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
2010
tree[node].Freq = 1;
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
2034
tree[node].Freq = tree[n].Freq + tree[m].Freq;
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
2040
node, tree[node].Freq, n, tree[n].Freq, m, tree[m].Freq);
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
2085
s->bl_tree[curlen].Freq += count;
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
2087
if (curlen != prevlen) s->bl_tree[curlen].Freq++;
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
2088
s->bl_tree[REP_3_6].Freq++;
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
2090
s->bl_tree[REPZ_3_10].Freq++;
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
2092
s->bl_tree[REPZ_11_138].Freq++;
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
2412
s->dyn_ltree[lc].Freq++;
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
2421
s->dyn_ltree[length_code[lc]+LITERALS+1].Freq++;
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
2422
s->dyn_dtree[d_code(dist)].Freq++;
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
2432
out_length += (ulg)s->dyn_dtree[dcode].Freq *
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
2510
while (n < 7) bin_freq += s->dyn_ltree[n++].Freq;
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
2511
while (n < 128) ascii_freq += s->dyn_ltree[n++].Freq;
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
2512
while (n < LITERALS) bin_freq += s->dyn_ltree[n++].Freq;
usr/src/uts/common/io/ppp/spppcomp/zlib.c
2576
for (n = 0; n < L_CODES; n++) s->dyn_ltree[n].Freq = 0;
usr/src/uts/common/io/ppp/spppcomp/zlib.c
2577
for (n = 0; n < D_CODES; n++) s->dyn_dtree[n].Freq = 0;
usr/src/uts/common/io/ppp/spppcomp/zlib.c
2578
for (n = 0; n < BL_CODES; n++) s->bl_tree[n].Freq = 0;
usr/src/uts/common/io/ppp/spppcomp/zlib.c
2580
s->dyn_ltree[END_BLOCK].Freq = 1;
usr/src/uts/common/io/ppp/spppcomp/zlib.c
2607
(tree[n].Freq < tree[m].Freq || \
usr/src/uts/common/io/ppp/spppcomp/zlib.c
2608
(tree[n].Freq == tree[m].Freq && depth[n] <= depth[m]))
usr/src/uts/common/io/ppp/spppcomp/zlib.c
2692
f = tree[n].Freq;
usr/src/uts/common/io/ppp/spppcomp/zlib.c
2734
*(long)tree[m].Freq;
usr/src/uts/common/io/ppp/spppcomp/zlib.c
2820
if (tree[n].Freq != 0) {
usr/src/uts/common/io/ppp/spppcomp/zlib.c
2837
tree[node].Freq = 1;
usr/src/uts/common/io/ppp/spppcomp/zlib.c
2864
tree[node].Freq = tree[n].Freq + tree[m].Freq;
usr/src/uts/common/io/ppp/spppcomp/zlib.c
2870
node, tree[node].Freq, n, tree[n].Freq, m,
usr/src/uts/common/io/ppp/spppcomp/zlib.c
2871
tree[m].Freq);
usr/src/uts/common/io/ppp/spppcomp/zlib.c
2919
s->bl_tree[curlen].Freq += count;
usr/src/uts/common/io/ppp/spppcomp/zlib.c
2921
if (curlen != prevlen) s->bl_tree[curlen].Freq++;
usr/src/uts/common/io/ppp/spppcomp/zlib.c
2922
s->bl_tree[REP_3_6].Freq++;
usr/src/uts/common/io/ppp/spppcomp/zlib.c
2924
s->bl_tree[REPZ_3_10].Freq++;
usr/src/uts/common/io/ppp/spppcomp/zlib.c
2926
s->bl_tree[REPZ_11_138].Freq++;
usr/src/uts/common/io/ppp/spppcomp/zlib.c
3312
s->dyn_ltree[lc].Freq++;
usr/src/uts/common/io/ppp/spppcomp/zlib.c
3321
s->dyn_ltree[_length_code[lc]+LITERALS+1].Freq++;
usr/src/uts/common/io/ppp/spppcomp/zlib.c
3322
s->dyn_dtree[d_code(dist)].Freq++;
usr/src/uts/common/io/ppp/spppcomp/zlib.c
3333
out_length += (ulg)s->dyn_dtree[dcode].Freq *
usr/src/uts/common/io/ppp/spppcomp/zlib.c
3428
while (n < 7) bin_freq += s->dyn_ltree[n++].Freq;
usr/src/uts/common/io/ppp/spppcomp/zlib.c
3429
while (n < 128) ascii_freq += s->dyn_ltree[n++].Freq;
usr/src/uts/common/io/ppp/spppcomp/zlib.c
3430
while (n < LITERALS) bin_freq += s->dyn_ltree[n++].Freq;
usr/src/uts/common/io/ppp/spppcomp/zlib.c
609
s->dyn_ltree[cc].Freq++; \
usr/src/uts/common/io/ppp/spppcomp/zlib.c
618
s->dyn_ltree[_length_code[len]+LITERALS+1].Freq++; \
usr/src/uts/common/io/ppp/spppcomp/zlib.c
619
s->dyn_dtree[d_code(dist)].Freq++; \