Home
last modified time | relevance | path

Searched defs:pRes (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dbtree.h121 #define sqliteBtreeMoveto(pCur, pKey, nKey, pRes)\ argument
126 #define sqliteBtreeFirst(pCur, pRes) (btCOps(pCur)->First(pCur, pRes)) argument
127 #define sqliteBtreeLast(pCur, pRes) (btCOps(pCur)->Last(pCur, pRes)) argument
128 #define sqliteBtreeNext(pCur, pRes) (btCOps(pCur)->Next(pCur, pRes)) argument
129 #define sqliteBtreePrevious(pCur, pRes) (btCOps(pCur)->Previous(pCur, pRes)) argument
133 #define sqliteBtreeKeyCompare(pCur, pKey, nKey, nIgnore, pRes)\ argument
H A Dbtree_rb.c691 int nIgnore, int *pRes) in memRbtreeKeyCompare()
875 int *pRes in memRbtreeMoveto()
1071 static int memRbtreeFirst(RbtCursor* pCur, int *pRes) in memRbtreeFirst()
1088 static int memRbtreeLast(RbtCursor* pCur, int *pRes) in memRbtreeLast()
1111 static int memRbtreeNext(RbtCursor* pCur, int *pRes) in memRbtreeNext()
1138 static int memRbtreePrevious(RbtCursor* pCur, int *pRes) in memRbtreePrevious()
H A Dbtree.c1531 static int fileBtreeFirst(BtCursor *pCur, int *pRes){ in fileBtreeFirst()
1550 static int fileBtreeLast(BtCursor *pCur, int *pRes){ in fileBtreeLast()
1590 int fileBtreeMoveto(BtCursor *pCur, const void *pKey, int nKey, int *pRes){ in fileBtreeMoveto()
1643 static int fileBtreeNext(BtCursor *pCur, int *pRes){ in fileBtreeNext()
1698 static int fileBtreePrevious(BtCursor *pCur, int *pRes){ in fileBtreePrevious()
H A Dpager.c320 static int read32bits(int format, OsFile *fd, u32 *pRes){ in read32bits()