Home | History | Annotate | Download | only in puff

Lines Matching defs:val

128     long val;           /* bit accumulator (can use up to 20 bits) */
130 /* load at least need bits into val */
131 val = s->bitbuf;
135 val |= (long)(s->in[s->incnt++]) << s->bitcnt; /* load eight bits */
140 s->bitbuf = (int)(val >> need);
144 return (int)(val & ((1L << need) - 1));