Searched refs:nBase (Results 1 – 8 of 8) sorted by relevance
| /sqlite-3.40.0/ext/misc/ |
| H A D | amatch.c | 1032 int nBase, nTail; in amatchAddWord() local 1038 nBase = (int)strlen(zWordBase); in amatchAddWord() 1040 if( nBase+nTail+3>pCur->nBuf ){ in amatchAddWord() 1041 pCur->nBuf = nBase+nTail+100; in amatchAddWord() 1050 memcpy(pCur->zBuf+2, zWordBase, nBase); in amatchAddWord() 1051 memcpy(pCur->zBuf+2+nBase, zWordTail, nTail+1); in amatchAddWord() 1073 pWord = sqlite3_malloc64( sizeof(*pWord) + nBase + nTail - 1 ); in amatchAddWord()
|
| H A D | fileio.c | 579 int nBase; member 656 pCur->nBase = 0; in fsdirResetCursor() 760 sqlite3_result_text(ctx, &pCur->zPath[pCur->nBase], -1, SQLITE_TRANSIENT); in fsdirColumn() 863 pCur->nBase = (int)strlen(pCur->zBase)+1; in fsdirFilter()
|
| /sqlite-3.40.0/src/ |
| H A D | whereexpr.c | 79 if( (wtFlags & TERM_VIRTUAL)==0 ) pWC->nBase = pWC->nTerm; in whereClauseInsert() 1658 pWC->nBase = 0; in sqlite3WhereClauseInit() 1670 assert( pWC->nTerm>=pWC->nBase ); in sqlite3WhereClauseClear() 1677 for(i=pWC->nBase; i<pWC->nTerm; i++){ in sqlite3WhereClauseClear()
|
| H A D | whereInt.h | 350 int nBase; /* Number of terms through the last non-Virtual */ member
|
| H A D | test_multiplex.c | 221 int nBase, /* Size of zBase in bytes (without \0) */ in multiplexFilename() argument 226 int n = nBase; in multiplexFilename()
|
| H A D | wherecode.c | 1046 for(i=0; i<pWC->nBase; i++){ in codeCursorHint() 2541 for(pTerm=pWC->a, j=pWC->nBase; j>0; j--, pTerm++){ in sqlite3WhereCodeOneLoopStart() 2651 for(pTerm=pWC->a, j=0; j<pWC->nBase; j++, pTerm++){ in sqlite3WhereCodeOneLoopStart()
|
| H A D | select.c | 671 int nBase in makeSorterRecord() argument 679 sqlite3VdbeAddOp3(v, OP_MakeRecord, regBase+nOBSat, nBase-nOBSat, regOut); in makeSorterRecord() 699 int nBase = nExpr + bSeq + nData; /* Fields in sorter record */ in pushOntoSorter() local 729 pParse->nMem += nBase; in pushOntoSorter() 750 regRecord = makeSorterRecord(pParse, pSort, pSelect, regBase, nBase); in pushOntoSorter() 811 regRecord = makeSorterRecord(pParse, pSort, pSelect, regBase, nBase); in pushOntoSorter() 819 regBase+nOBSat, nBase-nOBSat); in pushOntoSorter()
|
| H A D | where.c | 2632 for(i=pWC->nBase, pTerm=pWC->a; i>0; i--, pTerm++){ in whereLoopOutputAdjust() 4174 tempWC.nBase = 1; in whereLoopAddOr() 5791 for(ii=0; ii<sWLB.pWC->nBase; ii++){ in sqlite3WhereBegin()
|