| /sqlite-3.40.0/ext/misc/ |
| H A D | scrub.c | 380 u32 iChild; in scrubBackupBtree() local 437 iChild = scrubBackupInt32(&a[pc]); in scrubBackupBtree() 439 scrubBackupBtree(p, iChild, iDepth+1); in scrubBackupBtree() 461 iChild = scrubBackupInt32(&a[pc+nLocal]); in scrubBackupBtree() 462 scrubBackupOverflow(p, iChild, (u32)(P-nLocal)); in scrubBackupBtree() 467 iChild = scrubBackupInt32(&aTop[8]); in scrubBackupBtree() 468 scrubBackupBtree(p, iChild, iDepth+1); in scrubBackupBtree()
|
| /sqlite-3.40.0/tool/ |
| H A D | offsets.c | 228 int iChild; in ofstWalkInteriorPage() local 233 iChild = ofst4byte(p, ofst); in ofstWalkInteriorPage() 234 ofstWalkPage(p, iChild); in ofstWalkInteriorPage()
|
| /sqlite-3.40.0/ext/rtree/ |
| H A D | rtreedoc3.test | 104 iChild 1 \ 141 set rowid_name "iChild" 151 lappend kv iChild [lindex $cell 0] 173 set child_node [rnode_cells [rt_node_get $P(iChild)]]
|
| H A D | rtree.c | 3104 i64 iChild = nodeGetRowid(pRtree, pRoot, 0); in rtreeDeleteRowid() local 3105 rc = nodeAcquire(pRtree, iChild, pRoot, &pChild); /* tag-20210916a */ in rtreeDeleteRowid()
|
| /sqlite-3.40.0/ext/fts3/tool/ |
| H A D | fts3view.c | 551 sqlite3_int64 iChild = 0; in decodeSegment() local 565 i += getVarint(aData+i, &iChild); in decodeSegment() 566 printf("left-child: %lld\n", iChild); in decodeSegment() 587 printf("term: %-25s child %lld\n", zTerm, ++iChild); in decodeSegment()
|
| /sqlite-3.40.0/ext/fts3/ |
| H A D | fts3_write.c | 3737 sqlite3_int64 iChild; /* Pointer to child node */ member 3782 if( p->iChild && bFirst==0 ) p->iChild++; in nodeReaderNext() 3800 if( p->iChild==0 ){ in nodeReaderNext() 4364 pNode->iBlock = reader.iChild; in fts3IncrmergeLoad() 4590 if( iChild ){ in fts3StartNode() 4591 assert( pNode->nAlloc>=1+sqlite3Fts3VarintLen(iChild) ); in fts3StartNode() 4592 pNode->n = 1 + sqlite3Fts3PutVarint(&pNode->a[1], iChild); in fts3StartNode() 4636 fts3StartNode(pNew, (int)aNode[0], reader.iChild); in fts3TruncateNode() 4637 *piBlock = reader.iChild; in fts3TruncateNode() 4646 fts3StartNode(pNew, (int)aNode[0], reader.iChild); in fts3TruncateNode() [all …]
|
| H A D | fts3.c | 1901 u64 iChild; /* Block id of child node to descend to */ in fts3ScanInteriorNode() local 1917 zCsr += sqlite3Fts3GetVarintU(zCsr, &iChild); in fts3ScanInteriorNode() 1918 zCsr += sqlite3Fts3GetVarintU(zCsr, &iChild); in fts3ScanInteriorNode() 1971 *piFirst = (i64)iChild; in fts3ScanInteriorNode() 1976 *piLast = (i64)iChild; in fts3ScanInteriorNode() 1980 iChild++; in fts3ScanInteriorNode() 1983 if( piFirst ) *piFirst = (i64)iChild; in fts3ScanInteriorNode() 1984 if( piLast ) *piLast = (i64)iChild; in fts3ScanInteriorNode()
|
| /sqlite-3.40.0/ext/fts5/ |
| H A D | fts5_expr.c | 1271 int iChild; in fts5ExprNodeTest_AND() local 1280 for(iChild=0; iChild<pAnd->nChild; iChild++){ in fts5ExprNodeTest_AND() 1281 Fts5ExprNode *pChild = pAnd->apChild[iChild]; in fts5ExprNodeTest_AND()
|
| /sqlite-3.40.0/ext/recover/ |
| H A D | sqlite3recover.c | 1952 i64 iChild = sqlite3_column_int(pLaf->pAllAndParent, 1); in recoverLostAndFound2Step() local 1953 if( recoverBitmapQuery(pLaf->pUsed, iChild)==0 ){ in recoverLostAndFound2Step() 1954 sqlite3_bind_int64(pLaf->pMapInsert, 1, iChild); in recoverLostAndFound2Step() 1960 sqlite3_bind_int64(pLaf->pMaxField, 1, iChild); in recoverLostAndFound2Step()
|
| /sqlite-3.40.0/src/ |
| H A D | whereexpr.c | 471 static void markTermAsChild(WhereClause *pWC, int iChild, int iParent){ in markTermAsChild() argument 472 pWC->a[iChild].iParent = iParent; in markTermAsChild() 473 pWC->a[iChild].truthProb = pWC->a[iParent].truthProb; in markTermAsChild()
|
| H A D | fkey.c | 415 int iChild = sqlite3TableColumnToStorage(pFKey->pFrom,aiCol[i]) in fkLookupParent() local 426 sqlite3VdbeAddOp3(v, OP_Ne, iChild, iJump, iParent); VdbeCoverage(v); in fkLookupParent()
|
| H A D | btree.c | 5279 static void assertParentIndex(MemPage *pParent, int iIdx, Pgno iChild){ in assertParentIndex() argument 5284 assert( get4byte(&pParent->aData[pParent->hdrOffset+8])==iChild ); in assertParentIndex() 5286 assert( get4byte(findCell(pParent, iIdx))==iChild ); in assertParentIndex() 7075 if( iChild ){ in insertCell() 7076 put4byte(pCell, iChild); in insertCell() 7110 if( iChild ){ in insertCell() 7117 put4byte(&data[idx], iChild); in insertCell() 10227 Pgno iChild, /* Child page number */ in checkPtrmap() argument 10235 rc = ptrmapGet(pCheck->pBt, iChild, &ePtrmapType, &iPtrmapParent); in checkPtrmap() 10238 checkAppendMsg(pCheck, "Failed to read ptrmap key=%d", iChild); in checkPtrmap() [all …]
|
| /sqlite-3.40.0/test/ |
| H A D | corrupt2.test | 419 binary scan $zChild I iChild 420 seek $fd [expr 1024*($iChild-1)+3]
|