Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dbtree.h131 #define sqliteBtreeKey(pCur, offset, amt, zBuf)\ macro
H A Dvdbe.c2743 sqliteBtreeKey(pCrsr, nKey - 4, 4, (char*)&v); in sqliteVdbeExec()
2854 sqliteBtreeKey(pC->pCursor, 0, sizeof(v), (void*)&v); in sqliteVdbeExec()
3094 sqliteBtreeKey(pCrsr, 0, n, pTos->z); in sqliteVdbeExec()
3186 sqliteBtreeKey(pCrsr, idxWidth*p2, idxWidth*2, (char*)aHdr); in sqliteVdbeExec()
3226 sqliteBtreeKey(pCrsr, offset, amt, pTos->z); in sqliteVdbeExec()
3259 sqliteBtreeKey(pC->pCursor, 0, sizeof(u32), (char*)&v); in sqliteVdbeExec()
3304 sqliteBtreeKey(pCrsr, 0, amt, z); in sqliteVdbeExec()
3531 sqliteBtreeKey(pCrsr, sz - sizeof(u32), sizeof(u32), (char*)&v); in sqliteVdbeExec()
H A Dtest3.c818 rc = sqliteBtreeKey(pCur, 0, n, zBuf); in btree_key()