Searched defs:putVarint32 (Results 1 - 1 of 1) sorted by relevance

/external/sqlite/dist/
H A Dsqlite3.c10348 ** x = putVarint32( A, B );
10352 #define putVarint32(A,B) (u8)(((u32)(B)<(u32)0x80) ? (*(A) = (unsigned char)(B)),1 : sqlite3PutVarint32((A), (B))) macro
19077 ** the common case of small integers. A MACRO version, putVarint32,
19083 #ifndef putVarint32
[all...]

Completed in 229 milliseconds