Lines Matching defs:sqlite3GetVarint
11834 SQLITE_PRIVATE u8 sqlite3GetVarint(const unsigned char *, u64 *);
11857 #define getVarint sqlite3GetVarint
21703 ** Bitmasks used by sqlite3GetVarint(). These precomputed constants
21719 SQLITE_PRIVATE u8 sqlite3GetVarint(const unsigned char *p, u64 *v){
21948 n = sqlite3GetVarint(p, &v64);
21993 ** slow) general-purpose sqlite3GetVarint() routine to extract the
22000 n = sqlite3GetVarint(p, &v64);