Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c218633 u8 nBytesPerCell; /* Bytes consumed per cell */ member
218736 #define RTREE_MINCELLS(p) ((((p)->iNodeSize-4)/(p)->nBytesPerCell)/3)
219269 if( NCELL(pNode)>((pRtree->iNodeSize-4)/pRtree->nBytesPerCell) ){
219306 u8 *p = &pNode->zData[4 + pRtree->nBytesPerCell*iCell];
219318 u8 *pDst = &pNode->zData[4 + pRtree->nBytesPerCell*iCell];
219319 u8 *pSrc = &pDst[pRtree->nBytesPerCell];
219320 int nByte = (NCELL(pNode) - iCell - 1) * pRtree->nBytesPerCell;
219340 nMaxCell = (pRtree->iNodeSize-4)/pRtree->nBytesPerCell;
219417 return readInt64(&pNode->zData[4 + pRtree->nBytesPerCell*iCell]);
219431 readCoord(&pNode->zData[12 + pRtree->nBytesPerCell*iCell + 4*iCoord], pCoord);
[all …]