Home
last modified time | relevance | path

Searched refs:sqlite3GetVarint32 (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/crypto/heimdal/lib/sqlite/
H A Dsqlite3.c11551 SQLITE_PRIVATE u8 sqlite3GetVarint32(const unsigned char *, u32 *);
11571 #define getVarint32(A,B) (u8)((*(A)<(u8)0x80) ? ((B) = (u32)*(A)),1 : sqlite3GetVarint32((A), (u32…
21453 SQLITE_PRIVATE u8 sqlite3GetVarint32(const unsigned char *p, u32 *v){ in sqlite3GetVarint32() function
65860 u.am.zIdx += sqlite3GetVarint32(u.am.zIdx, &u.am.t);
/freebsd-12.1/contrib/sqlite3/
H A Dsqlite3.c19814 SQLITE_PRIVATE u8 sqlite3GetVarint32(const unsigned char *, u32 *);
19823 (u8)((*(A)<(u8)0x80)?((B)=(u32)*(A)),1:sqlite3GetVarint32((A),(u32 *)&(B)))
19825 B=(u32)*(A);if(B>=0x80)sqlite3GetVarint32((A),(u32*)&(B))
32216 SQLITE_PRIVATE u8 sqlite3GetVarint32(const unsigned char *p, u32 *v){
82326 sqlite3GetVarint32(&aKey1[1], (u32*)&serial_type);
87854 zHdr += sqlite3GetVarint32(zHdr, &t);