Home | History | Annotate | Download | only in orig

Lines Matching defs:nInput

142597 ** Buffer zInput, length nInput, contains the contents of a quoted string
142610 const char *zInput, int nInput, /* Input string */
142644 pTokenizer, pParse->iLangid, zInput, nInput, &pCursor);
142668 pToken->isPrefix = (iEnd<nInput && zInput[iEnd]=='*');
142750 int nInput = n;
142757 while( nInput>0 && fts3isspace(*zInput) ){
142758 nInput--;
142761 if( nInput==0 ){
142773 if( nInput>=pKey->n && 0==memcmp(zInput, pKey->z, pKey->n) ){
142820 for(ii=1; ii<nInput && zInput[ii]!='"'; ii++);
142822 if( ii==nInput ){
142832 rc = fts3ExprParse(pParse, zInput+1, nInput-1, ppExpr, &nConsumed);
142860 if( nInput>nStr && zInput[nStr]==':'
144079 int nInput; /* size of the input */
144116 ** string to be tokenized is zInput[0..nInput-1]. A cursor
144122 const char *zInput, int nInput, /* String to be tokenized */
144134 c->nInput = 0;
144135 }else if( nInput<0 ){
144136 c->nInput = (int)strlen(zInput);
144138 c->nInput = nInput;
144636 while( c->iOffset<c->nInput ){
144640 while( c->iOffset<c->nInput && isDelim(z[c->iOffset]) ){
144646 while( c->iOffset<c->nInput && !isDelim(z[c->iOffset]) ){
144951 int nInput;
144971 nInput = sqlite3_value_bytes(argv[argc-1]);
144996 if( sqlite3Fts3OpenTokenizer(pTokenizer, 0, zInput, nInput, &pCsr) ){
150650 int nInput, /* Second varint to store in hint */
150656 pHint->n += sqlite3Fts3PutVarint(&pHint->a[pHint->n], (i64)nInput);
153368 int nInput; /* Size of aInput[] in bytes */
153546 int nInput, /* Size of string aInput in bytes */
153559 pCsr->nInput = 0;
153560 }else if( nInput<0 ){
153561 pCsr->nInput = (int)strlen(aInput);
153563 pCsr->nInput = nInput;
153601 const unsigned char *zTerm = &pCsr->aInput[pCsr->nInput];
157883 int nInput;
157898 nInput = sqlite3_value_bytes16(apArg[0]);
157900 nOutput = nInput * 2 + 2;
157907 u_strToUpper(zOutput, nOutput/2, zInput, nInput/2, zLocale, &status);
157909 u_strToLower(zOutput, nOutput/2, zInput, nInput/2, zLocale, &status);
158158 int nInput, /* Length of zInput in bytes */
158175 nInput = 0;
158177 }else if( nInput<0 ){
158178 nInput = strlen(zInput);
158180 nChar = nInput+1;
158194 U8_NEXT(zInput, iInput, nInput, c);
158205 if( iInput<nInput ){
158206 U8_NEXT(zInput, iInput, nInput, c);
175929 int nInput; /* Number of input segments */
175943 nInput = pLvl->nMerge;
175973 nInput = pLvl->nSeg;
175978 for(fts5MultiIterNew(p, pStruct, 0, 0, 0, 0, iLvl, nInput, &pIter);
176018 for(i=0; i<nInput; i++){
176023 if( pLvl->nSeg!=nInput ){
176024 int nMove = (pLvl->nSeg - nInput) * sizeof(Fts5StructureSegment);
176025 memmove(pLvl->aSeg, &pLvl->aSeg[nInput], nMove);
176027 pStruct->nSegment -= nInput;
176028 pLvl->nSeg -= nInput;
176037 pLvl->nMerge = nInput;