Lines Matching refs:nInput
170645 int nInput = p->pSrc->a[0].pTab->nCol; /* Number of cols returned by sub */
170722 pParse->nMem += nInput;
170752 for(iInput=0; iInput<nInput; iInput++){
170755 sqlite3VdbeAddOp3(v, OP_MakeRecord, regNew, nInput, regRecord);
191561 const char *zInput, int nInput, /* Input string */
191595 pTokenizer, pParse->iLangid, zInput, nInput, &pCursor);
191619 pToken->isPrefix = (iEnd<nInput && zInput[iEnd]=='*');
191701 int nInput = n;
191708 while( nInput>0 && fts3isspace(*zInput) ){
191709 nInput--;
191712 if( nInput==0 ){
191724 if( nInput>=pKey->n && 0==memcmp(zInput, pKey->z, pKey->n) ){
191768 for(ii=1; ii<nInput && zInput[ii]!='"'; ii++);
191770 if( ii==nInput ){
191785 rc = fts3ExprParse(pParse, zInput+1, nInput-1, ppExpr, &nConsumed);
191812 if( nInput>nStr && zInput[nStr]==':'
193014 int nInput; /* size of the input */
193057 const char *zInput, int nInput, /* String to be tokenized */
193069 c->nInput = 0;
193070 }else if( nInput<0 ){
193071 c->nInput = (int)strlen(zInput);
193073 c->nInput = nInput;
193571 while( c->iOffset<c->nInput ){
193575 while( c->iOffset<c->nInput && isDelim(z[c->iOffset]) ){
193581 while( c->iOffset<c->nInput && !isDelim(z[c->iOffset]) ){
193907 int nInput;
193927 nInput = sqlite3_value_bytes(argv[argc-1]);
193952 if( sqlite3Fts3OpenTokenizer(pTokenizer, 0, zInput, nInput, &pCsr) ){
199730 int nInput, /* Second varint to store in hint */
199736 pHint->n += sqlite3Fts3PutVarint(&pHint->a[pHint->n], (i64)nInput);
202536 int nInput; /* Size of aInput[] in bytes */
202717 int nInput, /* Size of string aInput in bytes */
202730 pCsr->nInput = 0;
202732 }else if( nInput<0 ){
202733 pCsr->nInput = (int)strlen(aInput);
202735 pCsr->nInput = nInput;
202773 const unsigned char *zTerm = &pCsr->aInput[pCsr->nInput];
215181 int nInput; /* Size of utf-16 input string in bytes */
215198 nOut = nInput = sqlite3_value_bytes16(apArg[0]);
215214 nOut = 2*u_strToUpper(zOutput,nOut/2,zInput,nInput/2,zLocale,&status);
215216 nOut = 2*u_strToLower(zOutput,nOut/2,zInput,nInput/2,zLocale,&status);
215472 int nInput, /* Length of zInput in bytes */
215489 nInput = 0;
215491 }else if( nInput<0 ){
215492 nInput = strlen(zInput);
215494 nChar = nInput+1;
215508 U8_NEXT(zInput, iInput, nInput, c);
215519 if( iInput<nInput ){
215520 U8_NEXT(zInput, iInput, nInput, c);
243306 int nInput; /* Number of input segments */
243323 nInput = pLvl->nMerge;
243353 nInput = pLvl->nSeg;
243364 for(fts5MultiIterNew(p, pStruct, flags, 0, 0, 0, iLvl, nInput, &pIter);
243420 for(i=0; i<nInput; i++){
243427 if( pLvl->nSeg!=nInput ){
243428 int nMove = (pLvl->nSeg - nInput) * sizeof(Fts5StructureSegment);
243429 memmove(pLvl->aSeg, &pLvl->aSeg[nInput], nMove);
243431 pStruct->nSegment -= nInput;
243432 pLvl->nSeg -= nInput;
243441 pLvl->nMerge = nInput;