Searched defs:getbits (Results 1 - 2 of 2) sorted by relevance
| /ast/src/cmd/pack/ |
| H A D | huffdecode.c | 40 #define getbits(b,left,n) (((b)>>(left-=(n)))&((1L<<(n))-1)) macro 106 i = getbits(buffer,left,CHUNK); 121 i += getbits(buffer,left,1);
|
| /ast/src/cmd/codexlib/lzh/ |
| H A D | lzh.c | 126 #define GETBITS(p,n) ((n)<=(p)->bitcount ? ((((p)->bitbuf)>>((p)->bitcount-=(n)))&((1L<<(n))-1)) : getbits(p,n,0)) 127 #define PEEKBITS(p,n) ((n)<=(p)->bitcount ? ((((p)->bitbuf)>>((p)->bitcount-(n)))&((1L<<(n))-1)) : getbits(p,n,1)) 131 getbits(register State_t* state, int n, int peek) function
|
Completed in 38 milliseconds