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

/external/chromium_org/third_party/sqlite/src/src/
H A DsqliteInt.h2915 ** x = putVarint32( A, B );
2919 #define putVarint32(A,B) (u8)(((u32)(B)<(u32)0x80) ? (*(A) = (unsigned char)(B)),1 : sqlite3PutVarint32((A), (B))) macro
H A Dvdbe.c2500 i = putVarint32(zNewRecord, nHdr);
2503 i += putVarint32(&zNewRecord[i], serial_type); /* serial type */
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c11260 ** x = putVarint32( A, B );
11264 #define putVarint32(A,B) (u8)(((u32)(B)<(u32)0x80) ? (*(A) = (unsigned char)(B)),1 : sqlite3PutVarint32((A), (B))) macro
20851 ** the common case of small integers. A MACRO version, putVarint32,
20857 #ifndef putVarint32
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c12796 ** x = putVarint32( A, B );
12801 #define putVarint32(A,B) \ macro
22967 ** the common case of small integers. A MACRO version, putVarint32,
22973 #ifndef putVarint32
[all...]
/external/sqlite/dist/
H A Dsqlite3.c12796 ** x = putVarint32( A, B );
12801 #define putVarint32(A,B) \ macro
22967 ** the common case of small integers. A MACRO version, putVarint32,
22973 #ifndef putVarint32
[all...]

Completed in 2783 milliseconds