HomeSort by relevance Sort by last modified time
    Searched refs:bitbuf (Results 1 - 4 of 4) sorted by null

  /external/zlib/src/contrib/blast/
blast.c 43 int bitbuf; /* bit buffer */ member in struct:state
73 val = s->bitbuf;
85 s->bitbuf = val >> need;
132 int bitbuf; /* bits from stream */ local
136 bitbuf = s->bitbuf;
143 code |= (bitbuf & 1) ^ 1; /* invert code */
144 bitbuf >>= 1;
147 s->bitbuf = bitbuf;
    [all...]
  /external/zlib/src/contrib/puff/
puff.c 108 int bitbuf; /* bit buffer */ member in struct:state
131 val = s->bitbuf;
140 s->bitbuf = (int)(val >> need);
169 s->bitbuf = 0;
270 int bitbuf; /* bits from stream */ local
274 bitbuf = s->bitbuf;
281 code |= bitbuf & 1;
282 bitbuf >>= 1;
285 s->bitbuf = bitbuf
    [all...]
  /external/toybox/toys/pending/
compress.c 140 struct bitbuf { struct
145 // malloc a struct bitbuf
146 struct bitbuf *bitbuf_init(int fd, int size)
148 struct bitbuf *bb = xzalloc(sizeof(struct bitbuf)+size);
157 void bitbuf_skip(struct bitbuf *bb, int bits)
170 static inline int bitbuf_bit(struct bitbuf *bb)
182 // Fetch the next X bits from the bitbuf, little endian
183 unsigned bitbuf_get(struct bitbuf *bb, int bits)
206 void bitbuf_flush(struct bitbuf *bb
    [all...]
  /external/wpa_supplicant_8/src/tls/
libtommath.c 1887 int err, bitbuf, bitcpy, bitcnt, mode, digidx, x, y, winsize; local
2963 int err, bitbuf, bitcpy, bitcnt, mode, digidx, x, y, winsize; local
    [all...]

Completed in 1020 milliseconds