Home | History | Annotate | Download | only in dist

Lines Matching refs:nInput

179269   int nInput = p->pSrc->a[0].pSTab->nCol;   /* Number of cols returned by sub */
179346 pParse->nMem += nInput;
179376 for(iInput=0; iInput<nInput; iInput++){
179379 sqlite3VdbeAddOp3(v, OP_MakeRecord, regNew, nInput, regRecord);
200681 ** Buffer zInput, length nInput, contains the contents of a quoted string
200694 const char *zInput, int nInput, /* Input string */
200728 pTokenizer, pParse->iLangid, zInput, nInput, &pCursor);
200753 pToken->isPrefix = (iEnd<nInput && zInput[iEnd]=='*');
200833 int nInput = n;
200840 while( nInput>0 && fts3isspace(*zInput) ){
200841 nInput--;
200844 if( nInput==0 ){
200856 if( nInput>=pKey->n && 0==memcmp(zInput, pKey->z, pKey->n) ){
200900 for(ii=1; ii<nInput && zInput[ii]!='"'; ii++);
200902 if( ii==nInput ){
200917 rc = fts3ExprParse(pParse, zInput+1, nInput-1, ppExpr, &nConsumed);
200944 if( nInput>nStr && zInput[nStr]==':'
202145 int nInput; /* size of the input */
202182 ** string to be tokenized is zInput[0..nInput-1]. A cursor
202188 const char *zInput, int nInput, /* String to be tokenized */
202200 c->nInput = 0;
202201 }else if( nInput<0 ){
202202 c->nInput = (int)strlen(zInput);
202204 c->nInput = nInput;
202702 while( c->iOffset<c->nInput ){
202706 while( c->iOffset<c->nInput && isDelim(z[c->iOffset]) ){
202712 while( c->iOffset<c->nInput && !isDelim(z[c->iOffset]) ){
203034 int nInput;
203054 nInput = sqlite3_value_bytes(argv[argc-1]);
203079 if( sqlite3Fts3OpenTokenizer(pTokenizer, 0, zInput, nInput, &pCsr) ){
208879 int nInput, /* Second varint to store in hint */
208885 pHint->n += sqlite3Fts3PutVarint(&pHint->a[pHint->n], (i64)nInput);
211713 int nInput; /* Size of aInput[] in bytes */
211894 int nInput, /* Size of string aInput in bytes */
211907 pCsr->nInput = 0;
211909 }else if( nInput<0 ){
211910 pCsr->nInput = (int)strlen(aInput);
211912 pCsr->nInput = nInput;
211950 const unsigned char *zTerm = &pCsr->aInput[pCsr->nInput];
224785 int nInput; /* Size of utf-16 input string in bytes */
224802 nOut = nInput = sqlite3_value_bytes16(apArg[0]);
224818 nOut = 2*u_strToUpper(zOutput,nOut/2,zInput,nInput/2,zLocale,&status);
224820 nOut = 2*u_strToLower(zOutput,nOut/2,zInput,nInput/2,zLocale,&status);
225109 int nInput, /* Length of zInput in bytes */
225126 nInput = 0;
225128 }else if( nInput<0 ){
225129 nInput = strlen(zInput);
225131 nChar = nInput+1;
225145 U8_NEXT(zInput, iInput, nInput, c);
225156 if( iInput<nInput ){
225157 U8_NEXT(zInput, iInput, nInput, c);
254848 int nInput; /* Number of input segments */
254865 nInput = pLvl->nMerge;
254895 nInput = pLvl->nSeg;
254906 for(fts5MultiIterNew(p, pStruct, flags, 0, 0, 0, iLvl, nInput, &pIter);
254962 for(i=0; i<nInput; i++){
254969 if( pLvl->nSeg!=nInput ){
254970 int nMove = (pLvl->nSeg - nInput) * sizeof(Fts5StructureSegment);
254971 memmove(pLvl->aSeg, &pLvl->aSeg[nInput], nMove);
254973 pStruct->nSegment -= nInput;
254974 pLvl->nSeg -= nInput;
254983 pLvl->nMerge = nInput;