Home | History | Annotate | Download | only in dist

Lines Matching defs:nInput

142627 ** Buffer zInput, length nInput, contains the contents of a quoted string
142640 const char *zInput, int nInput, /* Input string */
142674 pTokenizer, pParse->iLangid, zInput, nInput, &pCursor);
142698 pToken->isPrefix = (iEnd<nInput && zInput[iEnd]=='*');
142780 int nInput = n;
142787 while( nInput>0 && fts3isspace(*zInput) ){
142788 nInput--;
142791 if( nInput==0 ){
142803 if( nInput>=pKey->n && 0==memcmp(zInput, pKey->z, pKey->n) ){
142850 for(ii=1; ii<nInput && zInput[ii]!='"'; ii++);
142852 if( ii==nInput ){
142862 rc = fts3ExprParse(pParse, zInput+1, nInput-1, ppExpr, &nConsumed);
142890 if( nInput>nStr && zInput[nStr]==':'
144109 int nInput; /* size of the input */
144146 ** string to be tokenized is zInput[0..nInput-1]. A cursor
144152 const char *zInput, int nInput, /* String to be tokenized */
144164 c->nInput = 0;
144165 }else if( nInput<0 ){
144166 c->nInput = (int)strlen(zInput);
144168 c->nInput = nInput;
144666 while( c->iOffset<c->nInput ){
144670 while( c->iOffset<c->nInput && isDelim(z[c->iOffset]) ){
144676 while( c->iOffset<c->nInput && !isDelim(z[c->iOffset]) ){
144981 int nInput;
145001 nInput = sqlite3_value_bytes(argv[argc-1]);
145026 if( sqlite3Fts3OpenTokenizer(pTokenizer, 0, zInput, nInput, &pCsr) ){
150680 int nInput, /* Second varint to store in hint */
150686 pHint->n += sqlite3Fts3PutVarint(&pHint->a[pHint->n], (i64)nInput);
153398 int nInput; /* Size of aInput[] in bytes */
153576 int nInput, /* Size of string aInput in bytes */
153589 pCsr->nInput = 0;
153590 }else if( nInput<0 ){
153591 pCsr->nInput = (int)strlen(aInput);
153593 pCsr->nInput = nInput;
153631 const unsigned char *zTerm = &pCsr->aInput[pCsr->nInput];
157913 int nInput;
157928 nInput = sqlite3_value_bytes16(apArg[0]);
157930 nOutput = nInput * 2 + 2;
157937 u_strToUpper(zOutput, nOutput/2, zInput, nInput/2, zLocale, &status);
157939 u_strToLower(zOutput, nOutput/2, zInput, nInput/2, zLocale, &status);
158188 int nInput, /* Length of zInput in bytes */
158205 nInput = 0;
158207 }else if( nInput<0 ){
158208 nInput = strlen(zInput);
158210 nChar = nInput+1;
158224 U8_NEXT(zInput, iInput, nInput, c);
158235 if( iInput<nInput ){
158236 U8_NEXT(zInput, iInput, nInput, c);
175959 int nInput; /* Number of input segments */
175973 nInput = pLvl->nMerge;
176003 nInput = pLvl->nSeg;
176008 for(fts5MultiIterNew(p, pStruct, 0, 0, 0, 0, iLvl, nInput, &pIter);
176048 for(i=0; i<nInput; i++){
176053 if( pLvl->nSeg!=nInput ){
176054 int nMove = (pLvl->nSeg - nInput) * sizeof(Fts5StructureSegment);
176055 memmove(pLvl->aSeg, &pLvl->aSeg[nInput], nMove);
176057 pStruct->nSegment -= nInput;
176058 pLvl->nSeg -= nInput;
176067 pLvl->nMerge = nInput;