Searched refs:APND_MARK_PREFIX_SZ (Results 1 – 1 of 1) sorted by relevance
8762 #define APND_MARK_PREFIX_SZ 17 macro8764 #define APND_MARK_SIZE (APND_MARK_PREFIX_SZ+APND_MARK_FOS_SZ)8960 memcpy(a, APND_MARK_PREFIX, APND_MARK_PREFIX_SZ); in apndWriteMark()8962 a[APND_MARK_PREFIX_SZ+i] = (unsigned char)(iPgOne & 0xff); in apndWriteMark()9149 if( memcmp(a, APND_MARK_PREFIX, APND_MARK_PREFIX_SZ)!=0 ) return -1; in apndReadMark()9150 iMark = ((sqlite3_int64)(a[APND_MARK_PREFIX_SZ] & 0x7f)) << msbs; in apndReadMark()9153 iMark |= (sqlite3_int64)a[APND_MARK_PREFIX_SZ+i]<<msbs; in apndReadMark()