Lines Matching refs:intKey

8072   i64 intKey,
47617 u8 intKey; /* True if intkey flag is set */
48837 /* If this is an intKey table, then the above call to BtreeKeySize()
48839 ** all that is required. Otherwise, if pCur is not open on an intKey
48843 if( 0==pCur->apPage[0]->intKey ){
48856 assert( !pCur->apPage[0]->intKey || !pCur->pKey );
49170 if( pPage->intKey ){
49251 if( pPage->intKey ){
49310 assert( (info.nData+(pPage->intKey?0:info.nKey))==info.nPayload );
49617 pPage->intKey = 1;
49622 pPage->intKey = 0;
52114 nKey = (pPage->intKey ? 0 : (int)pCur->info.nKey);
52314 if( pPage->intKey ){
52394 if( pNewPage->nCell<1 || pNewPage->intKey!=pCur->apPage[i]->intKey ){
52504 assert( pCur->apPage[0]->intKey==1 || pCur->apPage[0]->intKey==0 );
52505 if( (pCur->pKeyInfo==0)!=pCur->apPage[0]->intKey ){
52518 assert( pRoot->isInit && (pCur->pKeyInfo==0)==pRoot->intKey );
52653 ** specified by pIdxKey or intKey. Return a success code.
52655 ** For INTKEY tables, the intKey parameter is used. pIdxKey
52656 ** must be NULL. For index tables, pIdxKey is used and intKey
52670 ** is smaller than intKey/pIdxKey or if the table is empty
52674 ** exactly matches intKey/pIdxKey.
52677 ** is larger than intKey/pIdxKey.
52683 i64 intKey, /* The table key */
52697 && pCur->apPage[0]->intKey
52699 if( pCur->info.nKey==intKey ){
52703 if( pCur->atLast && pCur->info.nKey<intKey ){
52721 assert( pCur->apPage[0]->intKey || pIdxKey );
52735 assert( pPage->intKey==(pIdxKey==0) );
52749 if( pPage->intKey ){
52756 if( nCellKey==intKey ){
52758 }else if( nCellKey<intKey ){
52761 assert( nCellKey>intKey );
52811 if( pPage->intKey && !pPage->leaf ){
52925 if( pPage->intKey ){
52991 if( pPage->intKey && !pPage->leaf ){
53552 if( pPage->intKey ){
54998 assert( pPage->intKey || nKey>=0 );
54999 assert( pPage->leaf || !pPage->intKey );
55380 assert( pPage->intKey );
55650 if( pPage->leaf || !pPage->intKey ){
55934 if( !pPage->intKey ) sz += (int)info.nKey;
55935 /* For intKey pages, check that the keys are in order.
55988 /* For intKey leaf pages, check that the min/max keys are in order
55991 if( pPage->leaf && pPage->intKey ){
56380 ** (e) the cursor points at a valid row of an intKey table.
56388 assert( pCsr->apPage[pCsr->iPage]->intKey );