Lines Matching defs:nOut
6758 int nOut,
6761 return ORIGVFS(pVfs)->xFullPathname(ORIGVFS(pVfs),zPath,nOut,zOut);
7780 ** size is nOut bytes. This function uncompresses the data and sets the
7789 int nOut /* Expected output size */
7791 u8 *aRes = sqlite3_malloc(nOut);
7802 str.avail_out = nOut;
7812 sqlite3_result_blob(pCtx, aRes, nOut, zipfileFree);
8870 int nOut = 0;
8871 rc = zipfileDeflate(aData, nData, &aFree, &nOut, &zErr);
8875 if( iMethod==8 || nOut<nData ){
8877 nData = nOut;
9104 uLongf nOut = compressBound(nData);
9107 pOut = (Bytef*)sqlite3_malloc(nOut);
9112 if( Z_OK!=compress(pOut, &nOut, pData, nData) ){
9114 }else if( nOut<nData ){
9115 sqlite3_result_blob(context, pOut, nOut, SQLITE_TRANSIENT);