Searched defs:pRes (Results 1 – 4 of 4) sorted by relevance
/titanic_50/usr/src/lib/libsqlite/src/ |
H A D | btree.h | 124 #define sqliteBtreeMoveto(pCur, pKey, nKey, pRes)\ argument 129 #define sqliteBtreeFirst(pCur, pRes) (btCOps(pCur)->First(pCur, pRes)) argument 130 #define sqliteBtreeLast(pCur, pRes) (btCOps(pCur)->Last(pCur, pRes)) argument 131 #define sqliteBtreeNext(pCur, pRes) (btCOps(pCur)->Next(pCur, pRes)) argument 132 #define sqliteBtreePrevious(pCur, pRes) (btCOps(pCur)->Previous(pCur, pRes)) argument 136 #define sqliteBtreeKeyCompare(pCur, pKey, nKey, nIgnore, pRes)\ argument
|
H A D | btree_rb.c | 694 int nIgnore, int *pRes) in memRbtreeKeyCompare() 878 int *pRes in memRbtreeMoveto() 1074 static int memRbtreeFirst(RbtCursor* pCur, int *pRes) in memRbtreeFirst() 1091 static int memRbtreeLast(RbtCursor* pCur, int *pRes) in memRbtreeLast() 1114 static int memRbtreeNext(RbtCursor* pCur, int *pRes) in memRbtreeNext() 1141 static int memRbtreePrevious(RbtCursor* pCur, int *pRes) in memRbtreePrevious()
|
H A D | btree.c | 1533 static int fileBtreeFirst(BtCursor *pCur, int *pRes){ in fileBtreeFirst() 1552 static int fileBtreeLast(BtCursor *pCur, int *pRes){ in fileBtreeLast() 1592 int fileBtreeMoveto(BtCursor *pCur, const void *pKey, int nKey, int *pRes){ in fileBtreeMoveto() 1645 static int fileBtreeNext(BtCursor *pCur, int *pRes){ in fileBtreeNext() 1700 static int fileBtreePrevious(BtCursor *pCur, int *pRes){ in fileBtreePrevious()
|
H A D | pager.c | 322 static int read32bits(int format, OsFile *fd, u32 *pRes){ in read32bits()
|