Lines Matching refs:u16
285 u16 maxLocal; /* Copy of BtShared.maxLocal or BtShared.maxLeaf */
286 u16 minLocal; /* Copy of BtShared.minLocal or BtShared.minLeaf */
287 u16 cellOffset; /* Index in aData of first cell pointer */
289 u16 nCell; /* Number of cells on this page, local and ovfl */
290 u16 maskPage; /* Mask for page offset */
291 u16 aiOvfl[4]; /* Insert the i-th overflow cell before the aiOvfl-th
302 u16 (*xCellSize)(MemPage*,u8*); /* cellSizePtr method */
439 u16 btsFlags; /* Boolean parameters. See BTS_* macros below */
440 u16 maxLocal; /* Maximum local payload in non-LEAFDATA tables */
441 u16 minLocal; /* Minimum local payload in non-LEAFDATA tables */
442 u16 maxLeaf; /* Maximum local payload in a LEAFDATA table */
443 u16 minLeaf; /* Minimum local payload in a LEAFDATA table */
484 u16 nLocal; /* Amount of payload held locally, not on overflow */
485 u16 nSize; /* Size of the cell content on the main b-tree page */
546 u16 ix; /* Current index for apPage[iPage] */
547 u16 aiIdx[BTCURSOR_MAX_DEPTH-1]; /* Current index in apPage[i] */
724 # define get2byteAligned(x) (*(u16*)(x))
726 # define get2byteAligned(x) __builtin_bswap16(*(u16*)(x))
728 # define get2byteAligned(x) _byteswap_ushort(*(u16*)(x))