HomeSort by: relevance | last modified time | path
    Searched defs:thiscode (Results 1 - 1 of 1) sorted by relevancy

  /src/usr.bin/gzip/
unpack.c 255 int thislevel, thiscode, thisbyte, inlevelindex; local in function:unpack_decode
262 * into 'thiscode' bit-by-bit, then output the symbol we got
269 thiscode = thisbyte = 0;
278 * feed the bit into thiscode, until we got a symbol from
282 thiscode = (thiscode << 1) | ((thisbyte >> i) & 1);
285 if (thiscode >= unpackd->inodesin[thislevel]) {
287 thiscode - unpackd->inodesin[thislevel];
301 thislevel = 0; thiscode = 0;

Completed in 11 milliseconds