Home
last modified time | relevance | path

Searched defs:heap (Results 1 – 25 of 129) sorted by relevance

123456

/third_party/grpc/src/core/lib/iomgr/
Dtimer_heap.cc73 static void maybe_shrink(grpc_timer_heap* heap) { in maybe_shrink()
82 static void note_changed_priority(grpc_timer_heap* heap, grpc_timer* timer) { in note_changed_priority()
92 void grpc_timer_heap_init(grpc_timer_heap* heap) { in grpc_timer_heap_init()
96 void grpc_timer_heap_destroy(grpc_timer_heap* heap) { gpr_free(heap->timers); } in grpc_timer_heap_destroy()
98 bool grpc_timer_heap_add(grpc_timer_heap* heap, grpc_timer* timer) { in grpc_timer_heap_add()
111 void grpc_timer_heap_remove(grpc_timer_heap* heap, grpc_timer* timer) { in grpc_timer_heap_remove()
125 bool grpc_timer_heap_is_empty(grpc_timer_heap* heap) { in grpc_timer_heap_is_empty()
129 grpc_timer* grpc_timer_heap_top(grpc_timer_heap* heap) { in grpc_timer_heap_top()
133 void grpc_timer_heap_pop(grpc_timer_heap* heap) { in grpc_timer_heap_pop()
/third_party/python/Lib/
Dheapq.py130 def heappush(heap, item): argument
135 def heappop(heap): argument
145 def heapreplace(heap, item): argument
161 def heappushpop(heap, item): argument
179 def _heappop_max(heap): argument
189 def _heapreplace_max(heap, item): argument
205 def _siftdown(heap, startpos, pos): argument
258 def _siftup(heap, pos): argument
278 def _siftdown_max(heap, startpos, pos): argument
293 def _siftup_max(heap, pos): argument
/third_party/libuv/src/
Dheap-inl.h40 struct heap { struct
41 struct heap_node* min; argument
50 HEAP_EXPORT(void heap_init(struct heap* heap)); argument
62 HEAP_EXPORT(void heap_init(struct heap* heap)) { in HEAP_EXPORT()
67 HEAP_EXPORT(struct heap_node* heap_min(const struct heap* heap)) { in HEAP_EXPORT()
72 static void heap_node_swap(struct heap* heap, in heap_node_swap()
106 HEAP_EXPORT(void heap_insert(struct heap* heap, in HEAP_EXPORT()
150 HEAP_EXPORT(void heap_remove(struct heap* heap, in HEAP_EXPORT()
239 HEAP_EXPORT(void heap_dequeue(struct heap* heap, heap_compare_fn less_than)) { in HEAP_EXPORT()
/third_party/python/Modules/
D_heapqmodule.c21 siftdown(PyListObject *heap, Py_ssize_t startpos, Py_ssize_t pos) in siftdown()
66 siftup(PyListObject *heap, Py_ssize_t pos) in siftup()
126 _heapq_heappush_impl(PyObject *module, PyObject *heap, PyObject *item) in _heapq_heappush_impl()
138 heappop_internal(PyObject *heap, int siftup_func(PyListObject *, Py_ssize_t)) in heappop_internal()
179 _heapq_heappop_impl(PyObject *module, PyObject *heap) in _heapq_heappop_impl()
186 heapreplace_internal(PyObject *heap, PyObject *item, int siftup_func(PyListObject *, Py_ssize_t)) in heapreplace_internal()
225 _heapq_heapreplace_impl(PyObject *module, PyObject *heap, PyObject *item) in _heapq_heapreplace_impl()
245 _heapq_heappushpop_impl(PyObject *module, PyObject *heap, PyObject *item) in _heapq_heappushpop_impl()
315 cache_friendly_heapify(PyObject *heap, int siftup_func(PyListObject *, Py_ssize_t)) in cache_friendly_heapify()
348 heapify_internal(PyObject *heap, int siftup_func(PyListObject *, Py_ssize_t)) in heapify_internal()
[all …]
/third_party/skia/src/gpu/d3d/
DGrD3DDescriptorTableManager.cpp33 void GrD3DDescriptorTableManager::recycle(Heap* heap) { in recycle()
54 std::unique_ptr<GrD3DDescriptorHeap> heap = in Make() local
84 sk_sp<Heap> heap = Heap::Make(gpu, fHeapType, fCurrentHeapDescriptorCount); in HeapPool() local
95 auto& heap = fDescriptorHeaps[fDescriptorHeaps.size() - 1]; in allocateTable() local
108 sk_sp<GrD3DDescriptorTableManager::Heap> heap = in allocateTable() local
129 sk_sp<GrD3DDescriptorTableManager::Heap> heap = in prepForSubmit() local
135 void GrD3DDescriptorTableManager::HeapPool::recycle(sk_sp<Heap> heap) { in recycle()
DGrD3DDescriptorHeap.cpp20 ID3D12DescriptorHeap* heap; in Make() local
28 GrD3DDescriptorHeap::GrD3DDescriptorHeap(const gr_cp<ID3D12DescriptorHeap>& heap, in GrD3DDescriptorHeap()
DGrD3DDescriptorTableManager.h21 ID3D12DescriptorHeap* heap, D3D12_DESCRIPTOR_HEAP_TYPE type) in GrD3DDescriptorTable()
35 ID3D12DescriptorHeap* heap() const { return fHeap; } in heap() function
74 Heap(GrD3DGpu* gpu, std::unique_ptr<GrD3DDescriptorHeap>& heap, in Heap()
DGrD3DCpuDescriptorManager.cpp124 std::unique_ptr<GrD3DDescriptorHeap> heap = in Make() local
153 std::unique_ptr<GrD3DCpuDescriptorManager::Heap> heap = in HeapPool() local
168 std::unique_ptr<GrD3DCpuDescriptorManager::Heap> heap = in allocateHandle() local
/third_party/mesa3d/src/gallium/drivers/d3d12/
Dd3d12_descriptor_pool.cpp50 ID3D12DescriptorHeap *heap; member
66 struct d3d12_descriptor_heap *heap = CALLOC_STRUCT(d3d12_descriptor_heap); in d3d12_descriptor_heap_new() local
89 d3d12_descriptor_heap_free(struct d3d12_descriptor_heap *heap) in d3d12_descriptor_heap_free()
97 d3d12_descriptor_heap_get(struct d3d12_descriptor_heap *heap) in d3d12_descriptor_heap_get()
103 d3d12_descriptor_heap_is_online(struct d3d12_descriptor_heap *heap) in d3d12_descriptor_heap_is_online()
109 d3d12_descriptor_heap_can_allocate(struct d3d12_descriptor_heap *heap) in d3d12_descriptor_heap_can_allocate()
116 d3d12_descriptor_heap_get_remaining_handles(struct d3d12_descriptor_heap *heap) in d3d12_descriptor_heap_get_remaining_handles()
122 d2d12_descriptor_heap_get_next_handle(struct d3d12_descriptor_heap *heap, in d2d12_descriptor_heap_get_next_handle()
132 d3d12_descriptor_heap_alloc_handle(struct d3d12_descriptor_heap *heap, in d3d12_descriptor_heap_alloc_handle()
174 d3d12_descriptor_heap_append_handles(struct d3d12_descriptor_heap *heap, in d3d12_descriptor_heap_append_handles()
[all …]
Dd3d12_descriptor_pool.h40 struct d3d12_descriptor_heap *heap; member
/third_party/python/Modules/clinic/
D_heapqmodule.c.h21 PyObject *heap; in _heapq_heappush() local
55 PyObject *heap; in _heapq_heappop() local
92 PyObject *heap; in _heapq_heapreplace() local
129 PyObject *heap; in _heapq_heappushpop() local
163 PyObject *heap; in _heapq_heapify() local
192 PyObject *heap; in _heapq__heappop_max() local
222 PyObject *heap; in _heapq__heapreplace_max() local
256 PyObject *heap; in _heapq__heapify_max() local
/third_party/mesa3d/src/util/
Dvma.c46 util_vma_heap_init(struct util_vma_heap *heap, in util_vma_heap_init()
57 util_vma_heap_finish(struct util_vma_heap *heap) in util_vma_heap_finish()
65 util_vma_heap_validate(struct util_vma_heap *heap) in util_vma_heap_validate()
91 #define util_vma_heap_validate(heap) argument
142 util_vma_heap_alloc(struct util_vma_heap *heap, in util_vma_heap_alloc()
204 util_vma_heap_alloc_addr(struct util_vma_heap *heap, in util_vma_heap_alloc_addr()
242 util_vma_heap_free(struct util_vma_heap *heap, in util_vma_heap_free()
310 util_vma_heap_print(struct util_vma_heap *heap, FILE *fp, in util_vma_heap_print()
Du_mm.c34 u_mmDumpMemInfo(const struct mem_block *heap) in u_mmDumpMemInfo()
72 struct mem_block *heap, *block; in u_mmInit() local
177 u_mmAllocMem(struct mem_block *heap, int size, int align2, int startSearch) in u_mmAllocMem()
217 u_mmFindBlock(struct mem_block *heap, int start) in u_mmFindBlock()
285 u_mmDestroy(struct mem_block *heap) in u_mmDestroy()
/third_party/mesa3d/src/gallium/drivers/nouveau/
Dnouveau_heap.c29 nouveau_heap_init(struct nouveau_heap **heap, in nouveau_heap_init()
45 nouveau_heap_destroy(struct nouveau_heap **heap) in nouveau_heap_destroy()
54 nouveau_heap_alloc(struct nouveau_heap *heap, unsigned size, void *priv, in nouveau_heap_alloc()
/third_party/libdrm/intel/
Dmm.c32 drm_private void mmDumpMemInfo(const struct mem_block *heap) in mmDumpMemInfo()
60 struct mem_block *heap, *block; in mmInit() local
163 drm_private struct mem_block *mmAllocMem(struct mem_block *heap, int size, in mmAllocMem()
246 drm_private void mmDestroy(struct mem_block *heap) in mmDestroy()
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
DDecodeUtf8Test.java216 ByteBuffer heap = ByteBuffer.allocate(bytes.length); in assertInvalid() local
263 ByteBuffer heap = ByteBuffer.allocate(bytes.length); in assertInvalidSlice() local
302 ByteBuffer heap = ByteBuffer.allocate(bytes.length); in assertRoundTrips() local
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
DBufferD3D12.cpp201 Heap* heap = ToBackend(mResourceAllocation.GetResourceHeap()); in TrackUsageAndGetResourceBarrier() local
323 Heap* heap = ToBackend(mResourceAllocation.GetResourceHeap()); in MapInternal() local
371 Heap* heap = ToBackend(mResourceAllocation.GetResourceHeap()); in UnmapImpl() local
394 Heap* heap = ToBackend(mResourceAllocation.GetResourceHeap()); in CheckIsResidentForTesting() local
DResourceHeapAllocationD3D12.cpp26 Heap* heap) in ResourceHeapAllocation()
DHeapAllocatorD3D12.cpp67 void HeapAllocator::DeallocateResourceHeap(std::unique_ptr<ResourceHeapBase> heap) { in DeallocateResourceHeap()
DStagingDescriptorAllocatorD3D12.h61 ComPtr<ID3D12DescriptorHeap> heap; member
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/
Dnv30_vertprog.c89 struct nouveau_heap *heap = nv30->screen->vp_exec_heap; in nv30_vertprog_validate() local
132 struct nouveau_heap *heap = nv30->screen->vp_data_heap; in nv30_vertprog_validate() local
/third_party/skia/third_party/externals/dawn/src/tests/white_box/
DD3D12DescriptorHeapTests.cpp239 ComPtr<ID3D12DescriptorHeap> heap = allocator->GetShaderVisibleHeap(); in TEST_P() local
253 ComPtr<ID3D12DescriptorHeap> heap = allocator->GetShaderVisibleHeap(); in TEST_P() local
284 ComPtr<ID3D12DescriptorHeap> heap = allocator->GetShaderVisibleHeap(); in TEST_P() local
315 ComPtr<ID3D12DescriptorHeap> heap = allocator->GetShaderVisibleHeap(); in TEST_P() local
332 ComPtr<ID3D12DescriptorHeap> heap = allocator->GetShaderVisibleHeap(); in TEST_P() local
357 ComPtr<ID3D12DescriptorHeap> heap = allocator->GetShaderVisibleHeap(); in TEST_P() local
383 ComPtr<ID3D12DescriptorHeap> heap = allocator->GetShaderVisibleHeap(); in TEST_P() local
408 ComPtr<ID3D12DescriptorHeap> heap = allocator->GetShaderVisibleHeap(); in TEST_P() local
423 ComPtr<ID3D12DescriptorHeap> heap = allocator->GetShaderVisibleHeap(); in TEST_P() local
/third_party/mesa3d/src/gallium/winsys/radeon/drm/
Dradeon_drm_bo.c203 struct radeon_vm_heap *heap, in radeon_bomgr_find_va()
288 struct radeon_vm_heap *heap, in radeon_bomgr_free_va()
626 int heap) in radeon_create_bo()
773 struct pb_slab *radeon_bo_slab_alloc(void *priv, unsigned heap, in radeon_bo_slab_alloc()
1015 int heap = -1; in radeon_winsys_bo_create() local
1036 int heap = radeon_get_heap_index(domain, flags); in radeon_winsys_bo_create() local
/third_party/skia/src/pathops/
DSkPathOpsTSect.h90 SkTSpan(const SkTCurve& curve, SkArenaAlloc& heap) { in SkTSpan()
98 void debugInit(const SkTCurve& curve, SkArenaAlloc& heap) { in debugInit()
195 bool split(SkTSpan* work, SkArenaAlloc* heap) { in split()
/third_party/flutter/skia/src/pathops/
DSkPathOpsTSect.h91 SkTSpan(const SkTCurve& curve, SkArenaAlloc& heap) { in SkTSpan()
99 void debugInit(const SkTCurve& curve, SkArenaAlloc& heap) { in debugInit()
196 bool split(SkTSpan* work, SkArenaAlloc* heap) { in split()

123456