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

/freebsd-10-stable/crypto/heimdal/lib/sqlite/
H A Dsqlite3.c11551 SQLITE_PRIVATE u8 sqlite3GetVarint32(const unsigned char *, u32 *);
11564 ** x = sqlite3GetVarint32( A, &B );
11571 #define getVarint32(A,B) (u8)((*(A)<(u8)0x80) ? ((B) = (u32)*(A)),1 : sqlite3GetVarint32((A), (u32 *)&(B)))
21453 SQLITE_PRIVATE u8 sqlite3GetVarint32(const unsigned char *p, u32 *v){ function
[all...]
/freebsd-10-stable/contrib/sqlite3/
H A Dsqlite3.c16459 SQLITE_PRIVATE u8 sqlite3GetVarint32(const unsigned char *, u32 *);
16468 (u8)((*(A)<(u8)0x80)?((B)=(u32)*(A)),1:sqlite3GetVarint32((A),(u32 *)&(B)))
28208 SQLITE_PRIVATE u8 sqlite3GetVarint32(const unsigned char *p, u32 *v){ function
[all...]

Completed in 660 milliseconds