Home
last modified time | relevance | path

Searched refs:pInput (Results 1 – 12 of 12) sorted by relevance

/sqlite-3.40.0/ext/fts1/
H A Dsimple_tokenizer.c38 const char *pInput; /* input we are tokenizing */ member
92 const char *pInput, int nBytes, in simpleOpen() argument
98 c->pInput = pInput; in simpleOpen()
99 c->nBytes = nBytes<0 ? (int) strlen(pInput) : nBytes; in simpleOpen()
100 c->pCurrent = c->pInput; /* start tokenizing at the beginning */ in simpleOpen()
130 while( c->pCurrent-c->pInput<c->nBytes ){ in simpleNext()
146 *piStartOffset = (int) (c->pCurrent-c->pInput); in simpleNext()
H A Dfts1_tokenizer1.c35 const char *pInput; /* input we are tokenizing */ member
107 const char *pInput, int nBytes, /* String to be tokenized */ in simpleOpen() argument
115 c->pInput = pInput; in simpleOpen()
116 if( pInput==0 ){ in simpleOpen()
119 c->nBytes = (int)strlen(pInput); in simpleOpen()
157 unsigned char *p = (unsigned char *)c->pInput; in simpleNext()
H A Dtokenizer.h60 const char *pInput, int nBytes,
H A Dfts1_tokenizer.h60 const char *pInput, int nBytes,
/sqlite-3.40.0/ext/fts2/
H A Dfts2_tokenizer1.c45 const char *pInput; /* input we are tokenizing */ member
119 const char *pInput, int nBytes, /* String to be tokenized */ in simpleOpen() argument
127 c->pInput = pInput; in simpleOpen()
128 if( pInput==0 ){ in simpleOpen()
131 c->nBytes = (int)strlen(pInput); in simpleOpen()
169 unsigned char *p = (unsigned char *)c->pInput; in simpleNext()
H A Dfts2_tokenizer.h95 const char *pInput, int nBytes, /* Input buffer */
/sqlite-3.40.0/ext/fts3/
H A Dfts3_tokenizer1.c42 const char *pInput; /* input we are tokenizing */ member
115 const char *pInput, int nBytes, /* String to be tokenized */ in simpleOpen() argument
125 c->pInput = pInput; in simpleOpen()
126 if( pInput==0 ){ in simpleOpen()
129 c->nBytes = (int)strlen(pInput); in simpleOpen()
167 unsigned char *p = (unsigned char *)c->pInput; in simpleNext()
H A Dfts3_test.c385 const char *pInput, int nBytes, /* String to be tokenized */ in testTokenizerOpen() argument
398 pCsr->aInput = pInput; in testTokenizerOpen()
400 pCsr->nInput = (int)strlen(pInput); in testTokenizerOpen()
H A Dfts3_tokenizer.h95 const char *pInput, int nBytes, /* Input buffer */
/sqlite-3.40.0/ext/session/
H A Dsqlite3session.c3572 if( pInput->iNext>=pInput->nData ) break; in sessionChangesetInvert()
3573 eType = pInput->aData[pInput->iNext]; in sessionChangesetInvert()
3586 pInput->iNext++; in sessionChangesetInvert()
3590 nVar = sessionVarintGet(&pInput->aData[pInput->iNext], &nCol); in sessionChangesetInvert()
3592 sessionAppendBlob(&sPK, &pInput->aData[pInput->iNext+nVar], nCol, &rc); in sessionChangesetInvert()
3594 sessionAppendBlob(&sOut, &pInput->aData[pInput->iNext], nByte, &rc); in sessionChangesetInvert()
3607 int bIndirect = pInput->aData[pInput->iNext+1]; in sessionChangesetInvert()
3609 pInput->iNext += 2; in sessionChangesetInvert()
3614 sessionAppendBlob(&sOut, &pInput->aData[pInput->iNext], nByte, &rc); in sessionChangesetInvert()
3634 sessionAppendByte(&sOut, pInput->aData[pInput->iNext+1], &rc); in sessionChangesetInvert()
[all …]
/sqlite-3.40.0/ext/lsm1/lsm-test/
H A Dlsmtest_main.c1347 FILE *pInput; in do_replay() local
1361 pInput = stdin; in do_replay()
1363 pClose = pInput = fopen(azArg[0], "r"); in do_replay()
1370 while( feof(pInput)==0 ){ in do_replay()
1372 fgets(zLine, sizeof(zLine)-1, pInput); in do_replay()
/sqlite-3.40.0/ext/lsm1/
H A Dlsm_sorted.c4602 MergeInput *pInput = &pMerge->aInput[i]; in mergeWorkerInit() local
4603 if( pInput->iPg ){ in mergeWorkerInit()
4607 rc = segmentPtrLoadPage(pDb->pFS, pPtr, (int)pInput->iPg); in mergeWorkerInit()
4609 rc = segmentPtrLoadCell(pPtr, pInput->iCell); in mergeWorkerInit()