Lines Matching refs:Cell
213 struct Cell struct
218 Cell *next; argument
234 Cell* cells;
254 Cell** yCells;
410 static Cell* _findCell(RleWorker& rw) in _findCell()
418 Cell* cell = *pcell; in _findCell()
862 Cell buffer[RENDER_POOL_SIZE / sizeof(Cell)]; in rleRender()
867 rw.yCells = reinterpret_cast<Cell**>(buffer); in rleRender()
879 rw.bandSize = rw.bufferSize / (sizeof(Cell) * 2); //bandSize: 256 in rleRender()
909 rw.yCells = static_cast<Cell**>(rw.buffer); in rleRender()
912 int cellStart = sizeof(Cell*) * (int)rw.yCnt; in rleRender()
913 int cellMod = cellStart % sizeof(Cell); in rleRender()
915 if (cellMod > 0) cellStart += sizeof(Cell) - cellMod; in rleRender()
917 auto cellsMax = reinterpret_cast<Cell*>((char*)rw.buffer + rw.bufferSize); in rleRender()
918 rw.cells = reinterpret_cast<Cell*>((char*)rw.buffer + cellStart); in rleRender()