HomeSort by: relevance | last modified time | path
    Searched refs:nBlob (Results 1 - 3 of 3) sorted by relevancy

  /src/external/public-domain/sqlite/dist/tea/generic/
tclsqlite3.c 338 sqlite3_int64 nBlob; /* Total size of the blob */
341 nBlob = sqlite3_blob_bytes(p->pBlob);
342 if( (p->iSeek+nRead)>nBlob ){
343 nRead = nBlob-p->iSeek;
370 sqlite3_int64 nBlob; /* Total size of the blob */
373 nBlob = sqlite3_blob_bytes(p->pBlob);
374 if( (p->iSeek+nWrite)>nBlob ){
  /src/external/public-domain/sqlite/dist/
sqlite3.c     [all...]
shell.c 1848 ** Do a quick sanity check to see aBlob[0..nBlob-1] is valid JSONB
1853 static int qrfJsonbQuickCheck(unsigned char *aBlob, int nBlob){
1859 if( nBlob==0 ) return 0;
1861 if( x<=11 ) return nBlob==(1+x);
1863 if( nBlob<1+n ) return 0;
1866 return sz+n+1==(sqlite3_uint64)nBlob;
2009 int nBlob = sqlite3_column_bytes(p->pStmt,iCol);
2017 sqlite3_str_appendchar(pOut, nBlob, ' ');
2018 sqlite3_str_appendchar(pOut, nBlob, ' ');
2024 for(i=0, j=iStart; i<nBlob; i++, j+=2)
    [all...]

Completed in 214 milliseconds