Home
last modified time | relevance | path

Searched refs:_workbuflen (Results 1 – 3 of 3) sorted by last modified time

/dports/games/uqm/uqm-0.8.0/src/libs/decomp/
H A Dlzdecode.c38 BYTE _workbuflen; variable
46 while (_workbuflen <= 8) in GetBit()
50 _workbuf |= i << (8 - _workbuflen); in GetBit()
51 _workbuflen += 8; in GetBit()
55 _workbuflen--; in GetBit()
65 while (_workbuflen <= 8) in GetBits()
70 _workbuflen += 8; in GetBits()
74 _workbuflen -= num_bits; in GetBits()
261 while (_workbuflen <= 8) \
265 _workbuflen += 8; \
[all …]
H A Dlzencode.c184 _workbuf |= c >> _workbuflen; in Putcode()
185 if ((_workbuflen += l) >= 8) in Putcode()
189 if ((_workbuflen -= 8) >= 8) in Putcode()
193 _workbuflen -= 8; in Putcode()
194 _workbuf = c << (l - _workbuflen); in Putcode()
276 if (_workbuflen) in UninitTree()
297 _workbuflen = _lpCurCodeDesc->workbuflen; in _encode_cleanup()
382 _workbuflen = lpCodeDesc->workbuflen; in cwrite()
464 lpCodeDesc->workbuflen = _workbuflen; in cwrite()
H A Dlzh.h88 extern BYTE _workbuflen;