HomeSort by relevance Sort by last modified time
    Searched refs:nCell (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
test_stat.c 62 " ncell INTEGER, /* Cells on page (0 for overflow) */" \
103 int nCell; /* Number of cells on page */
123 int nCell; /* Value of 'ncell' column */
225 for(i=0; i<p->nCell; i++){
289 p->nCell = get2byte(&aHdr[3]);
295 nUnused = get2byte(&aHdr[5]) - nHdr - 2*p->nCell;
305 if( p->nCell ){
309 p->aCell = sqlite3_malloc((p->nCell+1) * sizeof(StatCell));
310 memset(p->aCell, 0, (p->nCell+1) * sizeof(StatCell))
    [all...]
btree.c     [all...]
btreeInt.h 284 u16 nCell; /* Number of cells on this page, local and ovfl */
  /external/chromium_org/third_party/sqlite/src/ext/rtree/
rtree.c 265 #define NCELL(pNode) readInt16(&(pNode)->zData[2])
529 if( NCELL(pNode)>((pRtree->iNodeSize-4)/pRtree->nBytesPerCell) ){
573 int nByte = (NCELL(pNode) - iCell - 1) * pRtree->nBytesPerCell;
575 writeInt16(&pNode->zData[2], NCELL(pNode)-1);
591 int nCell; /* Current number of cells in pNode */
595 nCell = NCELL(pNode);
597 assert( nCell<=nMaxCell );
598 if( nCell<nMaxCell ){
599 nodeOverwriteCell(pRtree, pNode, pCell, nCell);
    [all...]
rtree_util.tcl 62 set nCell [llength $node]
64 for {set ii 0} {$ii < $nCell} {incr ii} {
  /external/chromium_org/third_party/sqlite/src/tool/
showdb.c 349 int nCell;
372 nCell = a[3]*256 + a[4];
381 if( nCell>0 ){
389 memset(&zMap[hdrSize+iCellPtr], 'P', 2*nCell);
391 for(i=0; i<nCell; i++){
showwal.c 242 int nCell;
255 nCell = a[3]*256 + a[4];
264 for(i=0; i<nCell; i++){
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]

Completed in 820 milliseconds