Searched defs:nbits (Results 1 - 3 of 3) sorted by relevance

/ast/src/cmd/codexlib/lzd/
H A Dlzd.c49 unsigned int nbits; member in struct:State_s
84 while (state->nbits > state->bitcount)
90 state->bitbuf >>= state->nbits;
91 state->bitcount -= state->nbits;
108 state->bitmask = (1 << (state->nbits = 9)) - 1;
118 if (++state->free_code >= state->max_code && state->nbits < MAXBITS)
120 state->nbits++;
/ast/src/cmd/paxlib/calib/
H A Dcalib.c231 * return next nbits nibble from the input line
239 _cagetbits(Ar_t* ar, int nbits) argument
252 else if (ar->left < nbits)
257 return cagetbits(ar, nbits);
/ast/src/lib/libvcodex/
H A Dvcodex.h142 ssize_t nbits; /* # of bits cached in "bits" */ member in struct:_vcio_s
376 ** For convenience, the Vcio_t structure itself provides two fields (bits,nbits)

Completed in 32 milliseconds