Lines Matching defs:intKey
15674 i64 intKey,
67841 u8 intKey; /* True if table b-trees. False for index b-trees */
67842 u8 intKeyLeaf; /* True if the leaf of an intKey table */
68111 u8 curIntKey; /* Value of apPage[0]->intKey */
70542 pPage->intKey = 1;
70561 pPage->intKey = 0;
70570 pPage->intKey = 0;
70576 "database corruption at page[%u], flagByte[%x], isInit[%u], intKey[%u], intKeyLeaf[%u], leaf[%u], "
70581 pPage->intKey,
70931 if( pCur && ((*ppPage)->nCell<1 || (*ppPage)->intKey!=pCur->curIntKey) ){
73824 ** the key if index btrees (pPage->intKey==0) and is the data for
73825 ** table btrees (pPage->intKey==1). The number of bytes of available
74021 pCur->curIntKey = pCur->pPage->intKey;
74036 assert( pRoot->intKey==1 || pRoot->intKey==0 );
74037 if( pRoot->isInit==0 || (pCur->pKeyInfo==0)!=pRoot->intKey ){
74181 ** table near the key intKey. Return a success code.
74194 ** is smaller than intKey or if the table is empty
74198 ** exactly matches intKey.
74201 ** is larger than intKey.
74205 i64 intKey, /* The table key */
74220 if( pCur->info.nKey==intKey ){
74224 if( pCur->info.nKey<intKey ){
74233 if( pCur->info.nKey+1==intKey ){
74238 if( pCur->info.nKey==intKey ){
74265 assert( pCur->iPage==0 || pCur->apPage[0]->intKey==pCur->curIntKey );
74281 assert( pPage->intKey );
74297 if( nCellKey<intKey ){
74300 }else if( nCellKey>intKey ){
74304 assert( nCellKey==intKey );
74525 assert( pPage->intKey==0 );
74614 assert( lwr==upr+1 || (pPage->intKey && !pPage->leaf) );
74740 if( pPage->intKey ){
74833 if( pPage->intKey && !pPage->leaf ){
75465 if( pPage->intKey ){
75807 ** used to access information such as MemPage.intKey and MemPage.pBt->pageSize
77785 assert( pPage->intKey || pX->nKey>=0 || (flags & BTREE_PREFORMAT) );
77786 assert( pPage->leaf || !pPage->intKey );
78461 if( pPage->intKey ) pnChange = 0;
78464 testcase( !pPage->intKey );
78738 if( pPage->leaf || !pPage->intKey ){
79150 if( pPage->intKey ){
79636 ** (e) the cursor points at a valid row of an intKey table.
79645 assert( pCsr->pPage->intKey );