Home
last modified time | relevance | path

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

/ohos5.0/foundation/graphic/graphic_utils_lite/interfaces/kits/gfx_utils/diagram/vertexprimitive/
H A Dgeometry_plaindata_array.h48 GeometryArrayAllocator<T>::Deallocate(data_, size_); in ~GeometryPlainDataArray()
60 : data_(GeometryArrayAllocator<T>::Allocate(size)), size_(size) {} in GeometryPlainDataArray()
63 : data_(GeometryArrayAllocator<T>::Allocate(podArray.size_)), size_(podArray.size_) in GeometryPlainDataArray()
163 GeometryArrayAllocator<T>::Deallocate(data_, size_); in Resize()
164 data_ = GeometryArrayAllocator<T>::Allocate(size_ = size); in Resize()
H A Dgeometry_path_storage.h86 GeometryArrayAllocator<float>::Deallocate( in FreeAll()
90 GeometryArrayAllocator<float*>::Deallocate(croodBlocks_, maxBlocks_ * TWO_TIMES); in FreeAll()
186 …float** new_coords = GeometryArrayAllocator<float*>::Allocate((maxBlocks_ + BLOCK_SCALE_POOL) * TW… in AllocateBlock()
203 GeometryArrayAllocator<float*>::Deallocate(croodBlocks_, maxBlocks_ * TWO_TIMES); in AllocateBlock()
209 croodBlocks_[nb] = GeometryArrayAllocator<float>::Allocate( in AllocateBlock()
/ohos5.0/foundation/graphic/graphic_utils_lite/frameworks/diagram/rasterizer/
H A Drasterizer_cells_antialias.cpp26 GeometryArrayAllocator<CellBuildAntiAlias>::Deallocate(*ptr, CELL_BLOCK_SIZE); in ~RasterizerCellsAntiAlias()
29 GeometryArrayAllocator<CellBuildAntiAlias*>::Deallocate(cells_, maxBlocks_); in ~RasterizerCellsAntiAlias()
30GeometryArrayAllocator<CellBuildAntiAlias*>::Deallocate(sortedCells_, numCells_ + CELLS_SIZE); in ~RasterizerCellsAntiAlias()
31 GeometryArrayAllocator<SortedYLevel>::Deallocate(sortedY_, maxY_ - minY_ + 1 + CELLS_SIZE); in ~RasterizerCellsAntiAlias()
412 GeometryArrayAllocator<CellBuildAntiAlias*>::Allocate(maxBlocks_ + in AllocateBlock()
423 GeometryArrayAllocator<CellBuildAntiAlias*>::Deallocate(cells_, maxBlocks_); in AllocateBlock()
428 … cells_[numBlocks_++] = GeometryArrayAllocator<CellBuildAntiAlias>::Allocate(CELL_BLOCK_SIZE); in AllocateBlock()
455 sortedCells_ = GeometryArrayAllocator<CellBuildAntiAlias*>::Allocate(numCells_ + CELLS_SIZE); in SortAllCells()
459 sortedY_ = GeometryArrayAllocator<SortedYLevel>::Allocate(sortedYSize + CELLS_SIZE); in SortAllCells()
/ohos5.0/foundation/graphic/graphic_utils_lite/interfaces/kits/gfx_utils/diagram/common/
H A Dcommon_basics.h368 struct GeometryArrayAllocator { struct