Home
last modified time | relevance | path

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

/ohos5.0/foundation/graphic/graphic_utils_lite/frameworks/diagram/rasterizer/
H A Drasterizer_cells_antialias.cpp30 … GeometryArrayAllocator<CellBuildAntiAlias*>::Deallocate(sortedCells_, numCells_ + CELLS_SIZE); in ~RasterizerCellsAntiAlias()
31 GeometryArrayAllocator<SortedYLevel>::Deallocate(sortedY_, maxY_ - minY_ + 1 + CELLS_SIZE); in ~RasterizerCellsAntiAlias()
455 sortedCells_ = GeometryArrayAllocator<CellBuildAntiAlias*>::Allocate(numCells_ + CELLS_SIZE); in SortAllCells()
459 sortedY_ = GeometryArrayAllocator<SortedYLevel>::Allocate(sortedYSize + CELLS_SIZE); in SortAllCells()
476 if (((cellPtr->y - minY_) < 0) || ((cellPtr->y - minY_) > (sortedYSize + CELLS_SIZE))) { in SortAllCells()
/ohos5.0/foundation/graphic/graphic_utils_lite/interfaces/kits/gfx_utils/diagram/rasterizer/
H A Drasterizer_cells_antialias.h149 uint32_t MaxSize = maxY_ - minY_ + 1 + CELLS_SIZE; in GetScanlineNumCells()
165 uint32_t MaxSize = maxY_ - minY_ + 1 + CELLS_SIZE; in GetScanlineCells()
/ohos5.0/foundation/graphic/graphic_utils_lite/interfaces/kits/gfx_utils/diagram/common/
H A Dcommon_basics.h247 const int32_t CELLS_SIZE = 16; variable