Home
last modified time | relevance | path

Searched refs:iOverflow (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
DbtreeInt.h455 u16 iOverflow; /* Offset to overflow page number. Zero if no overflow */ member
Dbtree.c923 pInfo->iOverflow = 0; in btreeParseCellPtr()
948 pInfo->iOverflow = (u16)(pInfo->nLocal + n); in btreeParseCellPtr()
949 pInfo->nSize = pInfo->iOverflow + 4; in btreeParseCellPtr()
1041 if( info.iOverflow ){ in ptrmapPutOvflPtr()
1042 Pgno ovfl = get4byte(&pCell[info.iOverflow]); in ptrmapPutOvflPtr()
2738 if( info.iOverflow ){ in modifyPagePointer()
2739 if( iFrom==get4byte(&pCell[info.iOverflow]) ){ in modifyPagePointer()
2740 put4byte(&pCell[info.iOverflow], iTo); in modifyPagePointer()
5167 if( info.iOverflow==0 ){ in clearCell()
5170 ovflPgno = get4byte(&pCell[info.iOverflow]); in clearCell()
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c48900 u16 iOverflow; /* Offset to overflow page number. Zero if no overflow */
50294 pInfo->iOverflow = 0;
50319 pInfo->iOverflow = (u16)(pInfo->nLocal + n);
50320 pInfo->nSize = pInfo->iOverflow + 4;
50412 if( info.iOverflow ){
50413 Pgno ovfl = get4byte(&pCell[info.iOverflow]);
52125 if( info.iOverflow
52126 && pCell+info.iOverflow+3<=pPage->aData+pPage->maskPage
52127 && iFrom==get4byte(&pCell[info.iOverflow])
52129 put4byte(&pCell[info.iOverflow], iTo);
[all …]
/external/sqlite/dist/
Dsqlite3.c48928 u16 iOverflow; /* Offset to overflow page number. Zero if no overflow */
50322 pInfo->iOverflow = 0;
50347 pInfo->iOverflow = (u16)(pInfo->nLocal + n);
50348 pInfo->nSize = pInfo->iOverflow + 4;
50440 if( info.iOverflow ){
50441 Pgno ovfl = get4byte(&pCell[info.iOverflow]);
52153 if( info.iOverflow
52154 && pCell+info.iOverflow+3<=pPage->aData+pPage->maskPage
52155 && iFrom==get4byte(&pCell[info.iOverflow])
52157 put4byte(&pCell[info.iOverflow], iTo);
[all …]
/external/chromium_org/third_party/sqlite/amalgamation/
Dsqlite3.c46836 u16 iOverflow; /* Offset to overflow page number. Zero if no overflow */
48221 pInfo->iOverflow = 0;
48246 pInfo->iOverflow = (u16)(pInfo->nLocal + n);
48247 pInfo->nSize = pInfo->iOverflow + 4;
48339 if( info.iOverflow ){
48340 Pgno ovfl = get4byte(&pCell[info.iOverflow]);
50036 if( info.iOverflow ){
50037 if( iFrom==get4byte(&pCell[info.iOverflow]) ){
50038 put4byte(&pCell[info.iOverflow], iTo);
52465 if( info.iOverflow==0 ){
[all …]