Lines Matching refs:nInput

179273   int nInput = p->pSrc->a[0].pSTab->nCol;   /* Number of cols returned by sub */  local
179350 pParse->nMem += nInput;
179380 for(iInput=0; iInput<nInput; iInput++){
179383 sqlite3VdbeAddOp3(v, OP_MakeRecord, regNew, nInput, regRecord);
200699 const char *zInput, int nInput, /* Input string */ argument
200733 pTokenizer, pParse->iLangid, zInput, nInput, &pCursor);
200758 pToken->isPrefix = (iEnd<nInput && zInput[iEnd]=='*');
200838 int nInput = n; local
200845 while( nInput>0 && fts3isspace(*zInput) ){
200846 nInput--;
200849 if( nInput==0 ){
200861 if( nInput>=pKey->n && 0==memcmp(zInput, pKey->z, pKey->n) ){
200905 for(ii=1; ii<nInput && zInput[ii]!='"'; ii++);
200907 if( ii==nInput ){
200922 rc = fts3ExprParse(pParse, zInput+1, nInput-1, ppExpr, &nConsumed);
200949 if( nInput>nStr && zInput[nStr]==':'
202150 int nInput; /* size of the input */ member
202193 const char *zInput, int nInput, /* String to be tokenized */ argument
202205 c->nInput = 0;
202206 }else if( nInput<0 ){
202207 c->nInput = (int)strlen(zInput);
202209 c->nInput = nInput;
202707 while( c->iOffset<c->nInput ){
202711 while( c->iOffset<c->nInput && isDelim(z[c->iOffset]) ){
202717 while( c->iOffset<c->nInput && !isDelim(z[c->iOffset]) ){
203039 int nInput; local
203059 nInput = sqlite3_value_bytes(argv[argc-1]);
203084 if( sqlite3Fts3OpenTokenizer(pTokenizer, 0, zInput, nInput, &pCsr) ){
208884 int nInput, /* Second varint to store in hint */ argument
208890 pHint->n += sqlite3Fts3PutVarint(&pHint->a[pHint->n], (i64)nInput);
211718 int nInput; /* Size of aInput[] in bytes */ member
211899 int nInput, /* Size of string aInput in bytes */ argument
211912 pCsr->nInput = 0;
211914 }else if( nInput<0 ){
211915 pCsr->nInput = (int)strlen(aInput);
211917 pCsr->nInput = nInput;
211955 const unsigned char *zTerm = &pCsr->aInput[pCsr->nInput];
224790 int nInput; /* Size of utf-16 input string in bytes */ local
224807 nOut = nInput = sqlite3_value_bytes16(apArg[0]);
224823 nOut = 2*u_strToUpper(zOutput,nOut/2,zInput,nInput/2,zLocale,&status);
224825 nOut = 2*u_strToLower(zOutput,nOut/2,zInput,nInput/2,zLocale,&status);
225114 int nInput, /* Length of zInput in bytes */ argument
225131 nInput = 0;
225133 }else if( nInput<0 ){
225134 nInput = strlen(zInput);
225136 nChar = nInput+1;
225150 U8_NEXT(zInput, iInput, nInput, c);
225161 if( iInput<nInput ){
225162 U8_NEXT(zInput, iInput, nInput, c);
254856 int nInput; /* Number of input segments */ local
254873 nInput = pLvl->nMerge;
254903 nInput = pLvl->nSeg;
254914 for(fts5MultiIterNew(p, pStruct, flags, 0, 0, 0, iLvl, nInput, &pIter);
254970 for(i=0; i<nInput; i++){
254977 if( pLvl->nSeg!=nInput ){
254978 int nMove = (pLvl->nSeg - nInput) * sizeof(Fts5StructureSegment);
254979 memmove(pLvl->aSeg, &pLvl->aSeg[nInput], nMove);
254981 pStruct->nSegment -= nInput;
254982 pLvl->nSeg -= nInput;
254991 pLvl->nMerge = nInput;