| 469 | |
| 470 | |
| 471 | void Unpack::CopyString15(uint Distance,uint Length) |
| 472 | { |
| 473 | DestUnpSize-=Length; |
| 474 | while (Length--) |
| 475 | { |
| 476 | Window[UnpPtr]=Window[(UnpPtr-Distance) & MaxWinMask]; |
| 477 | UnpPtr=(UnpPtr+1) & MaxWinMask; |
| 478 | } |
| 479 | } |
| 480 | |
| 481 | |
| 482 | uint Unpack::DecodeNum(uint Num,uint StartPos,uint *DecTab,uint *PosTab) |
nothing calls this directly
no outgoing calls
no test coverage detected