Lines Matching refs:u8

274   u8 isInit;           /* True if previously initialized. MUST BE FIRST! */
275 u8 intKey; /* True if table b-trees. False for index b-trees */
276 u8 intKeyLeaf; /* True if the leaf of an intKey table */
280 u8 leaf; /* True if a leaf page */
281 u8 hdrOffset; /* 100 for page 1. 0 otherwise */
282 u8 childPtrSize; /* 0 if leaf==1. 4 if leaf==0 */
283 u8 max1bytePayload; /* min(maxLocal,127) */
284 u8 nOverflow; /* Number of overflow cell bodies in aCell[] */
293 u8 *apOvfl[4]; /* Pointers to the body of overflow cells */
295 u8 *aData; /* Pointer to disk image of the page data */
296 u8 *aDataEnd; /* One byte past the end of the entire page - not just
299 u8 *aCellIdx; /* The cell index area */
300 u8 *aDataOfst; /* Same as aData for leaves. aData+4 for interior */
302 u16 (*xCellSize)(MemPage*,u8*); /* cellSizePtr method */
303 void (*xParseCell)(MemPage*,u8*,CellInfo*); /* btreeParseCell method */
316 u8 eLock; /* READ_LOCK or WRITE_LOCK */
348 u8 inTrans; /* TRANS_NONE, TRANS_READ or TRANS_WRITE */
349 u8 sharable; /* True if we can share pBt with another db */
350 u8 locked; /* True if db currently has pBt locked */
351 u8 hasIncrblobCur; /* True if there are one or more Incrblob cursors */
430 u8 openFlags; /* Flags to sqlite3BtreeOpen() */
432 u8 autoVacuum; /* True if auto-vacuum is enabled */
433 u8 incrVacuum; /* True if incr-vacuum is enabled */
434 u8 bDoTruncate; /* True to truncate db on commit */
436 u8 inTransaction; /* Transaction state */
437 u8 max1bytePayload; /* Maximum first byte of cell for a 1-byte payload */
438 u8 nReserveWanted; /* Desired number of extra bytes per page */
458 u8 *pTmpSpace; /* Temp space sufficient to hold a single cell */
482 u8 *pPayload; /* Pointer to the start of payload */
526 u8 eState; /* One of the CURSOR_XXX constants (see below) */
527 u8 curFlags; /* zero or more BTCF_* flags defined below */
528 u8 curPagerFlags; /* Flags to send to sqlite3PagerGet() */
529 u8 hints; /* As configured by CursorSetHints() */
545 u8 curIntKey; /* Value of apPage[0]->intKey */
697 u8 *aPgRef; /* 1 bit per page in the db (see above) */
714 #define put2byte(p,v) ((p)[0] = (u8)((v)>>8), (p)[1] = (u8)(v))