Lines Matching refs:u32
94 u32 iChildPg; /* Child node (or 0 if this is a leaf) */
96 u32 *aOvfl; /* Array of overflow page numbers */
103 u32 iPgno; /* Page number */
113 u32 iRightChildPg; /* Right-child page number (or 0) */
129 u32 iPageno; /* Value of 'pageno' column */
455 u32 nPayload; /* Bytes of payload total (local+overflow) */ in statDecodePage()
462 if( nPayload>(u32)p->nMxPayload ) p->nMxPayload = nPayload; in statDecodePage()
466 assert( nPayload>=(u32)nLocal ); in statDecodePage()
468 if( nPayload>(u32)nLocal ){ in statDecodePage()
476 pCell->aOvfl = sqlite3_malloc64(sizeof(u32)*nOvfl); in statDecodePage()
481 u32 iPrev = pCell->aOvfl[j-1]; in statDecodePage()
537 u32 iPg, /* Page number to load */ in statGetPage()
586 u32 iRoot = (u32)sqlite3_column_int64(pCsr->pStmt, 1); in statNext()