Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c218629 int iNodeSize; /* Size in bytes of each node in the node table */ member
218736 #define RTREE_MINCELLS(p) ((((p)->iNodeSize-4)/(p)->nBytesPerCell)/3)
219106 memset(&p->zData[2], 0, pRtree->iNodeSize-2);
219160 pNode = (RtreeNode *)sqlite3_malloc64(sizeof(RtreeNode) + pRtree->iNodeSize);
219162 memset(pNode, 0, sizeof(RtreeNode) + pRtree->iNodeSize);
219233 }else if( pRtree->iNodeSize==sqlite3_blob_bytes(pRtree->pNodeBlob) ){
219234 pNode = (RtreeNode *)sqlite3_malloc64(sizeof(RtreeNode)+pRtree->iNodeSize);
219246 pRtree->iNodeSize, 0);
219269 if( NCELL(pNode)>((pRtree->iNodeSize-4)/pRtree->nBytesPerCell) ){
219340 nMaxCell = (pRtree->iNodeSize-4)/pRtree->nBytesPerCell;
[all …]