Lines Matching refs:nIn
3970 static int re_match(ReCompiled *pRe, const unsigned char *zIn, int nIn){
3983 in.mx = nIn>=0 ? nIn : (int)strlen((char const*)zIn);
4769 sqlite3_int64 nIn;
4780 nIn = ftell(in);
4784 if( nIn>mxBlob ){
4789 pBuf = sqlite3_malloc64( nIn ? nIn : 1 );
4795 if( nIn==(sqlite3_int64)fread(pBuf, 1, (size_t)nIn, in) ){
4796 sqlite3_result_blob64(ctx, pBuf, nIn, sqlite3_free);
7779 ** Buffer aIn (size nIn bytes) contains compressed data. Uncompressed, the
7788 int nIn, /* Size of buffer aIn[] in bytes */
7800 str.avail_in = nIn;
7822 ** Buffer aIn (size nIn bytes) contains uncompressed data. This function
7834 const u8 *aIn, int nIn, /* Input */
7845 str.avail_in = nIn;
7848 nAlloc = deflateBound(&str, nIn);
8452 int nIn = sqlite3_value_bytes(apVal[7]);
8456 sz = nIn;
8458 nData = nIn;
8465 rc = zipfileDeflate(aIn, nIn, &pFree, &nCmp, &pTab->base.zErrMsg);
8467 if( iMethod || nCmp<nIn ){
8474 iCrc32 = crc32(0, aIn, nIn);
10150 int nIn = zIn ? STRLEN(zIn) : 0;
10157 zRet = (char*)sqlite3_malloc(nIn + nAppend + 1);
10160 if( nIn ) memcpy(zRet, zIn, nIn);
10161 memcpy(&zRet[nIn], zAppend, nAppend+1);
19104 long nIn;
19109 nIn = ftell(in);
19111 pBuf = sqlite3_malloc64( nIn+1 );
19113 nRead = fread(pBuf, nIn, 1, in);
19119 pBuf[nIn] = 0;
19120 if( pnByte ) *pnByte = nIn;