HomeSort by relevance Sort by last modified time
    Searched defs:iCell (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
test_stat.c 97 int iCell;
388 pCsr->aPage[0].iCell = 0;
400 while( p->iCell<p->nCell ){
401 StatCell *pCell = &p->aCell[p->iCell];
410 "%s%.3x+%.6x", p->zPath, p->iCell, pCell->iOvfl
423 p->iCell++;
426 while( !p->iRightChildPg || p->iCell>p->nCell ){
435 if( p->iCell==p->nCell ){
438 p[1].iPgno = p->aCell[p->iCell].iChildPg;
441 p[1].iCell = 0
    [all...]
recover.c     [all...]
  /external/chromium_org/third_party/sqlite/src/ext/rtree/
rtree.c 213 int iCell; /* Index of current cell in pNode */
550 ** Overwrite cell iCell of node pNode with the contents of pCell.
556 int iCell
559 u8 *p = &pNode->zData[4 + pRtree->nBytesPerCell*iCell];
568 ** Remove cell the cell with index iCell from node pNode.
570 static void nodeDeleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell){
571 u8 *pDst = &pNode->zData[4 + pRtree->nBytesPerCell*iCell];
573 int nByte = (NCELL(pNode) - iCell - 1) * pRtree->nBytesPerCell;
660 ** Return the 64-bit integer value associated with cell iCell of
667 int iCell
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]

Completed in 575 milliseconds