Searched refs:nInput (Results 1 – 2 of 2) sorted by relevance
| /netbsd/src/usr.sbin/makemandb/ |
| D | custom_apropos_tokenizer.c | 50 size_t nInput; /* size of the input */ member 91 const char *zInput, int nInput, /* String to be tokenized */ in aproposPorterOpen() argument 103 if (nInput < 0) in aproposPorterOpen() 104 c->nInput = strlen(zInput); in aproposPorterOpen() 106 c->nInput = nInput; in aproposPorterOpen() 695 while (c->iOffset < c->nInput) { in aproposPorterNext() 699 while (c->iOffset < c->nInput && isDelim(z[c->iOffset])) { in aproposPorterNext() 705 while (c->iOffset < c->nInput && !isDelim(z[c->iOffset])) { in aproposPorterNext()
|
| /netbsd/src/external/public-domain/sqlite/dist/ |
| D | sqlite3.c | 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--; [all …]
|