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.c11275 ** x = putVarint32( A, B );
11279 #define putVarint32(A,B) (u8)(((u32)(B)<(u32)0x80) ? (*(A) = (unsigned char)(B)),1 : sqlite3PutVarint32((A), (B))) macro
20866 ** the common case of small integers. A MACRO version, putVarint32,
20872 #ifndef putVarint32
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c11852 ** x = putVarint32( A, B );
11856 #define putVarint32(A,B) (u8)(((u32)(B)<(u32)0x80) ? (*(A) = (unsigned char)(B)),1 : sqlite3PutVarint32((A), (B))) macro
21682 ** the common case of small integers. A MACRO version, putVarint32,
21688 #ifndef putVarint32
[all...]
/external/sqlite/dist/
H A Dsqlite3.c11852 ** x = putVarint32( A, B );
11856 #define putVarint32(A,B) (u8)(((u32)(B)<(u32)0x80) ? (*(A) = (unsigned char)(B)),1 : sqlite3PutVarint32((A), (B))) macro
21682 ** the common case of small integers. A MACRO version, putVarint32,
21688 #ifndef putVarint32
[all...]

Completed in 752 milliseconds