Home
last modified time | relevance | path

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

/external/curl/lib/
Dmk-ca-bundle.vbs414 Dim cmd, rval, tmpOut, tmpFh
416 tmpOut = objFSO.GetSpecialFolder(2).Path & "\" & objFSO.GetTempName
417 cmd = """" & myOpenSSL & """ dgst -r -sha256 -out """ & tmpOut & """ """ & filename & """"
421 objFSO.DeleteFile tmpOut, TRUE
424 Set tmpFh = objFSO.OpenTextFile(tmpOut, 1)
427 objFSO.DeleteFile tmpOut, TRUE
/external/lz4/lib/
Dlz4frame.c743 BYTE* tmpOut; member
917 dctxPtr->tmpOut = dctxPtr->tmpOutBuffer; in LZ4F_decodeHeader()
991 size_t const preserveSize = dctxPtr->tmpOut - dctxPtr->tmpOutBuffer; in LZ4F_updateDict()
1245 dctxPtr->tmpOut = dctxPtr->tmpOutBuffer + dctxPtr->dictSize; in LZ4F_decompress()
1249 dctxPtr->tmpOut = dctxPtr->tmpOutBuffer + reservedDictSpace; in LZ4F_decompress()
1254 …decodedSize = decoder((const char*)selectedIn, (char*)dctxPtr->tmpOut, (int)dctxPtr->tmpInTarget, … in LZ4F_decompress()
1256 …ctxPtr->frameInfo.contentChecksumFlag) XXH32_update(&(dctxPtr->xxh), dctxPtr->tmpOut, decodedSize); in LZ4F_decompress()
1267 memcpy(dstPtr, dctxPtr->tmpOut + dctxPtr->tmpOutStart, sizeToCopy); in LZ4F_decompress()
1387 size_t preserveSize = dctxPtr->tmpOut - dctxPtr->tmpOutBuffer; in LZ4F_decompress()
1406 dctxPtr->tmpOut = dctxPtr->tmpOutBuffer + newDictSize; in LZ4F_decompress()