Lines Matching defs:intKey

7793   i64 intKey,
46656 u8 intKey; /* True if intkey flag is set */
47876 /* If this is an intKey table, then the above call to BtreeKeySize()
47878 ** all that is required. Otherwise, if pCur is not open on an intKey
47882 if( 0==pCur->apPage[0]->intKey ){
47895 assert( !pCur->apPage[0]->intKey || !pCur->pKey );
48198 if( pPage->intKey ){
48279 if( pPage->intKey ){
48338 assert( (info.nData+(pPage->intKey?0:info.nKey))==info.nPayload );
48645 pPage->intKey = 1;
48650 pPage->intKey = 0;
51140 nKey = (pPage->intKey ? 0 : (int)pCur->info.nKey);
51340 if( pPage->intKey ){
51420 if( pNewPage->nCell<1 || pNewPage->intKey!=pCur->apPage[i]->intKey ){
51527 assert( pCur->apPage[0]->intKey==1 || pCur->apPage[0]->intKey==0 );
51528 if( (pCur->pKeyInfo==0)!=pCur->apPage[0]->intKey ){
51541 assert( pRoot->isInit && (pCur->pKeyInfo==0)==pRoot->intKey );
51676 ** specified by pIdxKey or intKey. Return a success code.
51678 ** For INTKEY tables, the intKey parameter is used. pIdxKey
51679 ** must be NULL. For index tables, pIdxKey is used and intKey
51693 ** is smaller than intKey/pIdxKey or if the table is empty
51697 ** exactly matches intKey/pIdxKey.
51700 ** is larger than intKey/pIdxKey.
51706 i64 intKey, /* The table key */
51720 && pCur->apPage[0]->intKey
51722 if( pCur->info.nKey==intKey ){
51726 if( pCur->atLast && pCur->info.nKey<intKey ){
51744 assert( pCur->apPage[0]->intKey || pIdxKey );
51758 assert( pPage->intKey==(pIdxKey==0) );
51772 if( pPage->intKey ){
51779 if( nCellKey==intKey ){
51781 }else if( nCellKey<intKey ){
51784 assert( nCellKey>intKey );
51834 if( pPage->intKey && !pPage->leaf ){
51948 if( pPage->intKey ){
52014 if( pPage->intKey && !pPage->leaf ){
52572 if( pPage->intKey ){
53999 assert( pPage->intKey || nKey>=0 );
54000 assert( pPage->leaf || !pPage->intKey );
54381 assert( pPage->intKey );
54646 if( pPage->leaf || !pPage->intKey ){
54930 if( !pPage->intKey ) sz += (int)info.nKey;
54931 /* For intKey pages, check that the keys are in order.
54984 /* For intKey leaf pages, check that the min/max keys are in order
54987 if( pPage->leaf && pPage->intKey ){
55376 ** (e) the cursor points at a valid row of an intKey table.
55384 assert( pCsr->apPage[pCsr->iPage]->intKey );