/external/chromium_org/third_party/sqlite/src/src/ |
test_stat.c | 313 StatCell *pCell = &p->aCell[i]; 317 pCell->iChildPg = sqlite3Get4byte(&aData[iOff]); 332 pCell->nLocal = nLocal; 338 pCell->nLastOvfl = (nPayload-nLocal) - (nOvfl-1) * (nUsable-4); 339 pCell->nOvfl = nOvfl; 340 pCell->aOvfl = sqlite3_malloc(sizeof(u32)*nOvfl); 341 pCell->aOvfl[0] = sqlite3Get4byte(&aData[iOff+nLocal]); 344 u32 iPrev = pCell->aOvfl[j-1]; 351 pCell->aOvfl[j] = sqlite3Get4byte(sqlite3PagerGetData(pPg)); 401 StatCell *pCell = &p->aCell[p->iCell] [all...] |
btree.c | 869 return pOvfl->pCell; 888 u8 *pCell, /* Pointer to the cell text. */ 896 pInfo->pCell = pCell; 902 n += getVarint32(&pCell[n], nPayload); 906 n += getVarint(&pCell[n], (u64*)&pInfo->nKey); 910 n += getVarint32(&pCell[n], nPayload); 968 static u16 cellSizePtr(MemPage *pPage, u8 *pCell){ 969 u8 *pIter = &pCell[pPage->childPtrSize]; 978 btreeParseCellPtr(pPage, pCell, &debuginfo) [all...] |
recover.c | [all...] |
btreeInt.h | 287 u8 *pCell; /* Pointers to the body of the overflow cell */ 450 u8 *pCell; /* Pointer to the start of cell content */
|
/external/llvm/test/CodeGen/X86/ |
2009-10-19-EmergencySpill.ll | 9 define fastcc void @nodeOverwriteCell(%struct.Rtree* nocapture %pRtree, %struct.RtreeNode* nocapture %pNode, %struct.RtreeCell* nocapture %pCell, i32 %iCell) nounwind ssp { 34 %scevgep = getelementptr %struct.RtreeCell* %pCell, i64 0, i32 1, i64 %indvar ; <%union.RtreeCoord*> [#uses=1]
|
/external/chromium_org/third_party/sqlite/src/ext/rtree/ |
rtree.c | 550 ** Overwrite cell iCell of node pNode with the contents of pCell. 555 RtreeCell *pCell, 560 p += writeInt64(p, pCell->iRowid); 562 p += writeCoord(p, &pCell->aCoord[ii]); 580 ** Insert the contents of cell pCell into node pNode. If the insert 589 RtreeCell *pCell 599 nodeOverwriteCell(pRtree, pNode, pCell, nCell); 688 ** to by pCell with the results. 694 RtreeCell *pCell 697 pCell->iRowid = nodeGetRowid(pRtree, pNode, iCell) [all...] |
/external/chromium_org/third_party/freetype/src/smooth/ |
ftgrays.c | 349 typedef struct TCell_* PCell; 356 PCell next; 372 PCell cells; 403 PCell* ycells; 439 ras.ycells = (PCell*) buffer; 497 static PCell 500 PCell *pcell, cell; local 507 pcell = &ras.ycells[ras.ey]; 510 cell = *pcell; [all...] |
/external/freetype/src/smooth/ |
ftgrays.c | 349 typedef struct TCell_* PCell; 356 PCell next; 372 PCell cells; 403 PCell* ycells; 439 ras.ycells = (PCell*) buffer; 497 static PCell 500 PCell *pcell, cell; local 507 pcell = &ras.ycells[ras.ey]; 510 cell = *pcell; [all...] |
/external/chromium_org/third_party/sqlite/ |
recover.patch | [all...] |