Home
last modified time | relevance | path

Searched refs:inBuf (Results 1 – 1 of 1) sorted by relevance

/CafeSDK-2.12.13-1/system/src/lib/szfile/
D7zDec.c141 Byte *inBuf = NULL; in SzDecodeLzma() local
145 res = inStream->Look((void *)inStream, (const void **)&inBuf, &lookahead); in SzDecodeLzma()
152 res = LzmaDec_DecodeToDic(&state, outSize, inBuf, &inProcessed, LZMA_FINISH_END, &status); in SzDecodeLzma()
191 Byte *inBuf = NULL; in SzDecodeLzma2() local
195 res = inStream->Look((void *)inStream, (const void **)&inBuf, &lookahead); in SzDecodeLzma2()
202 res = Lzma2Dec_DecodeToDic(&state, outSize, inBuf, &inProcessed, LZMA_FINISH_END, &status); in SzDecodeLzma2()
228 void *inBuf; in SzDecodeCopy() local
232 RINOK(inStream->Look((void *)inStream, (const void **)&inBuf, &curSize)); in SzDecodeCopy()
235 memcpy(outBuffer, inBuf, curSize); in SzDecodeCopy()