Home
last modified time | relevance | path

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

/third_party/skia/src/gpu/v1/
DSurfaceFillContext_v1.h53 SkArenaAlloc* arenaAlloc() { return this->arenas()->arenaAlloc(); } in arenaAlloc()
54 GrSubRunAllocator* subRunAlloc() { return this->arenas()->subRunAlloc(); } in subRunAlloc()
73 sk_sp<GrArenas> arenas() { return fWriteView.proxy()->asRenderTargetProxy()->arenas(); } in arenas() function
DSurfaceFillContext_v1.cpp142 this->writeSurfaceView(), this->arenas(), fFlushTimeOpsTask); in replaceOpsTask()
/third_party/python/Objects/
Dobmalloc.c1212 static struct arena_object* arenas = NULL; variable
1252 if (arenas[i].address == 0) { in _Py_GetAllocatedBlocks()
1256 uintptr_t base = (uintptr_t)_Py_ALIGN_UP(arenas[i].address, POOL_SIZE); in _Py_GetAllocatedBlocks()
1259 assert(base <= (uintptr_t) arenas[i].pool_address); in _Py_GetAllocatedBlocks()
1260 for (; base < (uintptr_t) arenas[i].pool_address; base += POOL_SIZE) { in _Py_GetAllocatedBlocks()
1374 arena_coverage_t arenas[MAP_BOT_LENGTH]; member
1477 n_hi->arenas[i3].tail_hi = is_used ? -1 : 0; in arena_map_mark_used()
1486 n_hi->arenas[i3].tail_hi = is_used ? tail : 0; in arena_map_mark_used()
1496 n_hi->arenas[i3].tail_hi = 0; in arena_map_mark_used()
1500 n_lo->arenas[i3_next].tail_lo = is_used ? tail : 0; in arena_map_mark_used()
[all …]
/third_party/skia/src/gpu/
DGrRecordingContextPriv.h40 SkArenaAlloc* recordTimeAllocator() { return this->context()->arenas().recordTimeAllocator(); } in recordTimeAllocator()
42 return this->context()->arenas().recordTimeSubRunAllocator(); in recordTimeSubRunAllocator()
44 GrRecordingContext::Arenas arenas() { return this->context()->arenas(); } in arenas() function
DGrRenderTargetProxy.h105 sk_sp<GrArenas> arenas() { in arenas() function
DGrDrawingManager.h55 sk_sp<GrArenas> arenas,
DGrDrawingManager.cpp703 sk_sp<GrArenas> arenas, in newOpsTask() argument
713 std::move(arenas))); in newOpsTask()
/third_party/skia/tests/
DOpChainTest.cpp142 CombineResult onCombineIfPossible(GrOp* t, SkArenaAlloc* arenas, const GrCaps&) override { in onCombineIfPossible() argument
144 SkASSERT(arenas); in onCombineIfPossible()
145 (void) arenas; in onCombineIfPossible()
208 sk_sp<GrArenas> arenas = sk_make_sp<GrArenas>(); variable
226 arenas);
/third_party/skia/src/gpu/ops/
DAtlasRenderTask.cpp22 sk_sp<GrArenas> arenas, in AtlasRenderTask() argument
27 std::move(arenas)) in AtlasRenderTask()
DOpsTask.cpp392 sk_sp<GrArenas> arenas) in OpsTask() argument
398 , fArenas{std::move(arenas)} in OpsTask()
/third_party/skia/include/gpu/
DGrRecordingContext.h149 Arenas arenas() { return fArenas.get(); } in arenas() function
/third_party/python/Misc/
DREADME.valgrind70 The memory pymalloc manages itself is in one or more "arenas",
DHISTORY8324 - Issue #11849: Ensure that free()d memory arenas are really released
16938 in order to allow pymalloc to free more arenas. Python may give back
18463 again. Prior to Python 2.5, arenas (256KB chunks of memory) were never
/third_party/python/Misc/NEWS.d/
D3.8.0b1.rst113 of arenas, due to using linear search to keep ``obmalloc.c``'s list of
114 usable arenas sorted by order of number of free memory pools. This is
116 number of arenas. For programs where this quite visibly matters (typically
D3.10.0a7.rst252 Add a radix tree based memory map to track in-use obmalloc arenas. Use to
D3.8.0a1.rst5703 Free unused arenas in multiprocessing.heap.
/third_party/python/Tools/c-analyzer/
DTODO9 Objects/obmalloc.c:arenas static struct arena_object* arenas
/third_party/python/Doc/c-api/
Dmemory.rst597 to 512 bytes) with a short lifetime. It uses memory mappings called "arenas"
/third_party/python/Doc/whatsnew/
D2.5.rst2137 was applied. Python 2.4 allocated small objects in 256K-sized arenas, but never
2138 freed arenas. With this patch, Python will free arenas when they're empty. The
/third_party/protobuf/src/google/protobuf/
Ddescriptor.proto418 // Enables the use of arenas for the proto messages in this file. This applies
/third_party/python/Tools/c-analyzer/cpython/
Dignored.tsv2891 Objects/obmalloc.c - arenas -
/third_party/protobuf/
DCHANGES.txt1849 message classes work with arenas. This does not change the existing API