Searched refs:nIdx (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/sqlite3/ |
H A D | sqlite3.c | 127918 int nIdx; /* Number of indices */ 128020 for(nIdx=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, nIdx++){ 128175 aToOpen = sqlite3DbMallocRawNN(db, nIdx+2); 128180 memset(aToOpen, 1, nIdx+1); 128181 aToOpen[nIdx+1] = 0; 134150 int nIdx; 134151 nIdx = sqlite3OpenTableAndIndices(pParse, pTab, OP_OpenWrite, 0, -1, 0, 134153 aRegIdx = sqlite3DbMallocRawNN(db, sizeof(int)*(nIdx+2)); 134157 for(i=0, pIdx=pTab->pIndex; i<nIdx; pIdx=pIdx->pNext, i++){ 134634 int nIdx; /* Size of the array */ [all …]
|
H A D | shell.c | 13143 int nIdx = 0; in idxFindIndexes() local 13144 while( zIdx[nIdx]!='\0' && (zIdx[nIdx]!=' ' || zIdx[nIdx+1]!='(') ){ in idxFindIndexes() 13145 nIdx++; in idxFindIndexes() 13147 zSql = idxHashSearch(&p->hIdx, zIdx, nIdx); in idxFindIndexes()
|