/external/pdfium/third_party/agg23/ |
agg_path_storage.cpp | 46 m_max_blocks(0), 54 if(nb >= m_max_blocks) { 56 FX_Alloc2D(FX_FLOAT*, m_max_blocks + block_pool, 2); 58 (unsigned char**)(new_coords + m_max_blocks + block_pool); 62 m_max_blocks * sizeof(FX_FLOAT*)); 65 m_max_blocks * sizeof(unsigned char*)); 70 m_max_blocks += block_pool;
|
agg_array.h | 271 unsigned m_max_blocks; member in class:agg::pod_deque 300 m_max_blocks(0), 309 m_max_blocks(0), 318 m_max_blocks(v.m_max_blocks), 319 m_blocks(v.m_max_blocks ? FX_Alloc(T*, v.m_max_blocks) : 0), 344 if(nb >= m_max_blocks) { 345 T** new_blocks = FX_Alloc(T*, m_max_blocks + m_block_ptr_inc); 353 m_max_blocks += m_block_ptr_inc 494 unsigned m_max_blocks; member in class:agg::pod_allocator [all...] |
agg_rasterizer_scanline_aa.cpp | 88 m_max_blocks(0), 117 if(m_num_blocks >= m_max_blocks) { 118 cell_aa** new_cells = FX_Alloc( cell_aa*, m_max_blocks + cell_block_pool); 120 FXSYS_memcpy(new_cells, m_cells, m_max_blocks * sizeof(cell_aa*)); 124 m_max_blocks += cell_block_pool;
|
agg_path_storage.h | 119 unsigned m_max_blocks; member in class:agg::path_storage
|
agg_rasterizer_scanline_aa.h | 124 unsigned m_max_blocks; member in class:agg::outline_aa
|