Home | History | Annotate | Download | only in orig

Lines Matching refs:sqlite3GetVarint32

11835 SQLITE_PRIVATE u8 sqlite3GetVarint32(const unsigned char *, u32 *);
11848 ** x = sqlite3GetVarint32( A, &B );
11855 #define getVarint32(A,B) (u8)((*(A)<(u8)0x80) ? ((B) = (u32)*(A)),1 : sqlite3GetVarint32((A), (u32 *)&(B)))
21889 SQLITE_PRIVATE u8 sqlite3GetVarint32(const unsigned char *p, u32 *v){
62651 ** that btreeParseCellPtr() and sqlite3GetVarint32() are implemented */
67208 u.an.zIdx += sqlite3GetVarint32(u.an.zIdx, &u.an.t);