Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c218261 u8 nBytesPerCell; /* Bytes consumed per cell */ member
218364 #define RTREE_MINCELLS(p) ((((p)->iNodeSize-4)/(p)->nBytesPerCell)/3)
218894 if( NCELL(pNode)>((pRtree->iNodeSize-4)/pRtree->nBytesPerCell) ){
218931 u8 *p = &pNode->zData[4 + pRtree->nBytesPerCell*iCell];
218943 u8 *pDst = &pNode->zData[4 + pRtree->nBytesPerCell*iCell];
218944 u8 *pSrc = &pDst[pRtree->nBytesPerCell];
218945 int nByte = (NCELL(pNode) - iCell - 1) * pRtree->nBytesPerCell;
218965 nMaxCell = (pRtree->iNodeSize-4)/pRtree->nBytesPerCell;
219042 return readInt64(&pNode->zData[4 + pRtree->nBytesPerCell*iCell]);
219056 readCoord(&pNode->zData[12 + pRtree->nBytesPerCell*iCell + 4*iCoord], pCoord);
[all …]