Searched defs:apIdx (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dupdate.c47 Index **apIdx = 0; /* An array of indices that need updating too */ local
159 /* Allocate memory for the array apIdx[] and fill it with pointers to every
175 apIdx = sqliteMalloc( sizeof(Index*) * nIdx + nIdxTotal );
176 if( apIdx==0 ) goto update_cleanup;
177 aIdxUsed = (char*)&apIdx[nIdx];
188 apIdx[nIdx++] = pIdx;
456 sqliteFree(apIdx);

Completed in 57 milliseconds