Lines Matching refs:nBlob

125801       int nBlob = sqlite3_value_bytes(pValue);
125803 sqlite3StrAccumEnlarge(pStr, nBlob*2 + 4);
125807 for(i=0; i<nBlob; i++){
125811 zText[(nBlob*2)+2] = '\'';
125812 zText[(nBlob*2)+3] = '\0';
125815 pStr->nChar = nBlob*2 + 3;
181674 int nBlob = 0; /* Size of zBlob in bytes */
181677 rc = sqlite3Fts3ReadBlock(p, *piLeaf, &zBlob, &nBlob, 0);
181679 rc = fts3SelectLeaf(p, zTerm, nTerm, zBlob, nBlob, piLeaf, 0);
181687 rc = sqlite3Fts3ReadBlock(p, piLeaf?*piLeaf:*piLeaf2, &zBlob, &nBlob, 0);
181695 rc = fts3SelectLeaf(p, zTerm, nTerm, zBlob, nBlob, piLeaf, piLeaf2);
191470 int nBlob;
191471 rc = sqlite3Fts3ReadBlock(p, jj, 0, &nBlob, 0);
191473 if( (nBlob+35)>pgsz ){
191474 nOvfl += (nBlob + 34)/pgsz;
193286 int nBlob; /* Number of bytes in the BLOB */
193296 fts3EncodeIntArray(p->nColumn, aSz, pBlob, &nBlob);
193304 sqlite3_bind_blob(pStmt, 2, pBlob, nBlob, sqlite3_free);
193332 int nBlob; /* Size of BLOB written into %_stat */
193381 fts3EncodeIntArray(nStat, a, pBlob, &nBlob);
193389 sqlite3_bind_blob(pStmt, 2, pBlob, nBlob, SQLITE_STATIC);
207249 sqlite3_int64 nBlob;
207252 nBlob = sizeof(RtreeMatchArg) + (nArg-1)*sizeof(RtreeDValue)
207254 pBlob = (RtreeMatchArg *)sqlite3_malloc64(nBlob);
207259 pBlob->iSize = nBlob;
217606 int nBlob,
217609 if( nBlob>0 && 0==sessionBufferGrow(p, nBlob, pRc) ){
217610 memcpy(&p->aBuf[p->nBuf], aBlob, nBlob);
217611 p->nBuf += nBlob;
219857 int nBlob = pIter->in.iNext - pIter->in.iCurrent;
219858 sessionAppendBlob(&p->constraints, aBlob, nBlob, &rc);
231162 #define fts5BufferSafeAppendBlob(pBuf, pBlob, nBlob) { \
231163 assert( (pBuf)->nSpace>=((pBuf)->n+nBlob) ); \
231164 memcpy(&(pBuf)->p[(pBuf)->n], pBlob, nBlob); \
231165 (pBuf)->n += nBlob; \
236395 ** Arguments pBlob/nBlob contain a serialized Fts5Structure object. This
236402 const u8 *pBlob, int nBlob
236407 rc = fts5StructureDecode(pBlob, nBlob, 0, &p);
236422 ** Arguments pBlob/nBlob contain an "averages" record. This function
236429 const u8 *pBlob, int nBlob
236434 while( i<nBlob ){
237639 int nBlob;
237645 nBlob = sqlite3_column_bytes(pSorter->pStmt, 1);
237648 /* nBlob==0 in detail=none mode. */
237649 if( nBlob>0 ){
237656 pSorter->aIdx[i] = &aBlob[nBlob] - a;
240794 const u8 *aBlob, int nBlob /* Record to read varints from */
240799 if( iOff>=nBlob ) return 1;
240802 return (iOff!=nBlob);
240826 int nBlob = sqlite3_column_bytes(pLookup, 0);
240827 if( 0==fts5StorageDecodeSizeArray(aCol, nCol, aBlob, nBlob) ){