Home
last modified time | relevance | path

Searched refs:aOffset (Results 1 – 4 of 4) sorted by relevance

/sqlite-3.40.0/ext/fts2/
H A Dfts2_icu.c43 int *aOffset; /* Offsets of each character in utf-8 input */ member
129 pCsr->aOffset = (int *)&pCsr->aChar[(nChar+3)&~3]; in icuOpen()
131 pCsr->aOffset[iOut] = iInput; in icuOpen()
141 pCsr->aOffset[iOut] = iInput; in icuOpen()
231 *piStartOffset = pCsr->aOffset[iStart]; in icuNext()
232 *piEndOffset = pCsr->aOffset[iEnd]; in icuNext()
/sqlite-3.40.0/ext/fts3/
H A Dfts3_icu.c41 int *aOffset; /* Offsets of each character in utf-8 input */ member
130 pCsr->aOffset = (int *)&pCsr->aChar[(nChar+3)&~3]; in icuOpen()
132 pCsr->aOffset[iOut] = iInput; in icuOpen()
142 pCsr->aOffset[iOut] = iInput; in icuOpen()
232 *piStartOffset = pCsr->aOffset[iStart]; in icuNext()
233 *piEndOffset = pCsr->aOffset[iEnd]; in icuNext()
/sqlite-3.40.0/src/
H A Dvdbe.c301 pCx->aOffset = &pCx->aType[nField]; in allocateCursor()
2816 aOffset = pC->aOffset; in sqlite3VdbeExec()
2817 assert( aOffset==pC->aType+pC->nField ); in sqlite3VdbeExec()
2888 if( aOffset[0] > 98307 || aOffset[0] > pC->payloadSize ){ in sqlite3VdbeExec()
2907 testcase( aOffset[0]==0 ); in sqlite3VdbeExec()
2923 if( pC->iHdrOffset<aOffset[0] ){ in sqlite3VdbeExec()
2937 offset64 = aOffset[i]; in sqlite3VdbeExec()
2939 zEndHdr = zData + aOffset[0]; in sqlite3VdbeExec()
2961 if( aOffset[0]==0 ){ in sqlite3VdbeExec()
3008 if( pC->szRow>=aOffset[p2+1] ){ in sqlite3VdbeExec()
[all …]
H A DvdbeInt.h123 u32 *aOffset; /* Pointer to aType[nField] */ member