Home
last modified time | relevance | path

Searched refs:aIdx (Results 1 – 3 of 3) sorted by relevance

/freebsd-12-stable/contrib/sqlite3/
Dsqlite3.c133128 IndexListTerm *aIdx; /* Array of IndexListTerms */
133145 *pIx = pIter->u.ax.aIdx[0].ix;
133146 return pIter->u.ax.aIdx[0].p;
133161 *pIx = pIter->u.ax.aIdx[i].ix;
133162 return pIter->u.ax.aIdx[i].p;
133502 sIdxIter.u.ax.aIdx = 0; /* Silence harmless compiler warning */
133531 sIdxIter.u.ax.aIdx = sqlite3DbMallocZero(db, nByte);
133532 if( sIdxIter.u.ax.aIdx==0 ) return; /* OOM */
133533 bUsed = (u8*)&sIdxIter.u.ax.aIdx[nIdx];
133534 pUpsert->pToFree = sIdxIter.u.ax.aIdx;
[all …]
Dshell.c5344 int aIdx[3]; /* Constraints on start, stop, and step */ in seriesBestIndex() local
5352 aIdx[0] = aIdx[1] = aIdx[2] = -1; in seriesBestIndex()
5367 aIdx[iCol] = i; in seriesBestIndex()
5371 if( (j = aIdx[i])>=0 ){ in seriesBestIndex()
/freebsd-12-stable/crypto/heimdal/lib/sqlite/
Dsqlite3.c128893 int *aIdx,
128904 int *aLeft = aIdx;
128905 int *aRight = &aIdx[nLeft];
128915 aIdx[iLeft+iRight] = aRight[iRight];
128918 aIdx[iLeft+iRight] = aLeft[iLeft];
128924 aIdx[iLeft+iRight] = aLeft[iLeft];
128927 aIdx[iLeft+iRight] = aRight[iRight];
128938 float left = aDistance[aIdx[jj-1]];
128939 float right = aDistance[aIdx[jj]];
128960 int *aIdx,
[all …]