Home
last modified time | relevance | path

Searched refs:pBefore (Results 1 – 3 of 3) sorted by relevance

/sqlite-3.40.0/ext/misc/
H A Dclosure.c183 short int hBefore = p->pBefore ? p->pBefore->height : 0; in closureAvlRecomputeHeight()
198 closure_avl *pB = pP->pBefore; in closureAvlRotateBefore()
203 pP->pBefore = pY; in closureAvlRotateBefore()
220 closure_avl *pY = pA->pBefore; in closureAvlRotateAfter()
222 pA->pBefore = pP; in closureAvlRotateAfter()
239 return &pUp->pBefore; in closureAvlFromPtr()
281 if( p ) while( p->pBefore ) p = p->pBefore; in closureAvlFirst()
314 if( p->pBefore ){ in closureAvlInsert()
315 p = p->pBefore; in closureAvlInsert()
317 p->pBefore = pNew; in closureAvlInsert()
[all …]
H A Damatch.c200 short int hBefore = p->pBefore ? p->pBefore->height : 0; in amatchAvlRecomputeHeight()
220 pP->pBefore = pY; in amatchAvlRotateBefore()
239 pA->pBefore = pP; in amatchAvlRotateAfter()
256 return &pUp->pBefore; in amatchAvlFromPtr()
299 if( p ) while( p->pBefore ) p = p->pBefore; in amatchAvlFirst()
366 if( p->pBefore ){ in amatchAvlInsert()
367 p = p->pBefore; in amatchAvlInsert()
369 p->pBefore = pNew; in amatchAvlInsert()
386 pNew->pBefore = 0; in amatchAvlInsert()
420 pX->pBefore = pY = pOld->pBefore; in amatchAvlRemove()
[all …]
H A Dzipfile.c1201 ZipfileEntry *pBefore, in zipfileAddEntry() argument
1206 if( pBefore==0 ){ in zipfileAddEntry()
1216 for(pp=&pTab->pFirstEntry; *pp!=pBefore; pp=&((*pp)->pNext)); in zipfileAddEntry()
1217 pNew->pNext = pBefore; in zipfileAddEntry()