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

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dbtree.c271 #define OVERFLOW_SIZE (SQLITE_USABLE_SIZE-sizeof(Pgno)) macro
286 char aPayload[OVERFLOW_SIZE];
298 Pgno aFree[(OVERFLOW_SIZE-sizeof(int))/sizeof(Pgno)];
708 assert( sizeof(FreelistInfo)==OVERFLOW_SIZE );
1216 if( offset<OVERFLOW_SIZE ){
1218 if( a + offset > OVERFLOW_SIZE ){
1219 a = OVERFLOW_SIZE - offset;
1226 offset -= OVERFLOW_SIZE;
1374 if( n>OVERFLOW_SIZE ){
1375 n = OVERFLOW_SIZE;
[all...]

Completed in 66 milliseconds