Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c218257 int iNodeSize; /* Size in bytes of each node in the node table */ member
218364 #define RTREE_MINCELLS(p) ((((p)->iNodeSize-4)/(p)->nBytesPerCell)/3)
218734 memset(&p->zData[2], 0, pRtree->iNodeSize-2);
218788 pNode = (RtreeNode *)sqlite3_malloc64(sizeof(RtreeNode) + pRtree->iNodeSize);
218790 memset(pNode, 0, sizeof(RtreeNode) + pRtree->iNodeSize);
218858 }else if( pRtree->iNodeSize==sqlite3_blob_bytes(pRtree->pNodeBlob) ){
218859 pNode = (RtreeNode *)sqlite3_malloc64(sizeof(RtreeNode)+pRtree->iNodeSize);
218871 pRtree->iNodeSize, 0);
218894 if( NCELL(pNode)>((pRtree->iNodeSize-4)/pRtree->nBytesPerCell) ){
218965 nMaxCell = (pRtree->iNodeSize-4)/pRtree->nBytesPerCell;
[all …]