Home
last modified time | relevance | path

Searched refs:Heap (Results 1 – 25 of 36) sorted by relevance

12

/llvm-project/clang-tools-extra/clangd/
H A DQuality.h199 if (Heap.size() >= N) { in push()
201 if (N > 0 && Greater(V, Heap.front())) { in push()
202 std::pop_heap(Heap.begin(), Heap.end(), Greater); in push()
203 Heap.back() = std::move(V); in push()
204 std::push_heap(Heap.begin(), Heap.end(), Greater); in push()
207 Heap.push_back(std::move(V)); in push()
208 std::push_heap(Heap.begin(), Heap.end(), Greater); in push()
210 assert(Heap.size() <= N); in push()
211 assert(std::is_heap(Heap.begin(), Heap.end(), Greater)); in push()
217 std::sort_heap(Heap.begin(), Heap.end(), Greater); in items()
[all …]
/llvm-project/compiler-rt/test/tsan/
H A Djava_finalizer2.cpp10 struct Heap { struct
20 Heap* heap = (Heap*)p; in Thread1() argument
29 Heap* heap = (Heap*)p; in Thread2()
37 Heap* heap = (Heap*)p; in Thread3()
48 Heap* heap = (Heap*)p; in Ballast()
54 Heap *heap = (Heap *)calloc(2, sizeof(Heap)) + 1; in main()
/llvm-project/llvm/lib/Analysis/
H A DInlineOrder.cpp229 std::pop_heap(Heap.begin(), Heap.end(), isLess); in pop_heap_adjust()
230 while (updateAndCheckDecreased(Heap.back())) { in pop_heap_adjust()
231 std::push_heap(Heap.begin(), Heap.end(), isLess); in pop_heap_adjust()
232 std::pop_heap(Heap.begin(), Heap.end(), isLess); in pop_heap_adjust()
244 size_t size() override { return Heap.size(); } in size()
250 Heap.push_back(CB); in push()
252 std::push_heap(Heap in push()
275 SmallVector<CallBase *, 16> Heap; global() member in __anondb7e2c310111::PriorityInlineOrder
[all...]
/llvm-project/llvm/test/DebugInfo/
H A Dcross-cu-scope.ll43 …ring::String,alloc::heap::Heap>", linkageName: "_ZN5alloc7raw_vec8{{impl}}52allocate_in<alloc::str…
44 … DW_TAG_structure_type, name: "RawVec<alloc::string::String, alloc::heap::Heap>", file: !1, size: …
/llvm-project/lld/test/ELF/
H A Daarch64-memtag-android-abi.s49 # HEAP-NEXT: Heap: Enabled
50 # NOHEAP-NEXT: Heap: Disabled
67 # STATIC-NEXT: Heap: Enabled
/llvm-project/compiler-rt/test/fuzzer/
H A Dfuzzer-oom-with-profile.test5 CHECK: Live Heap Allocations
/llvm-project/libcxx/benchmarks/algorithms/
H A Dranges_sort_heap.bench.cpp
H A Dsort_heap.bench.cpp
H A Dranges_stable_sort.bench.cpp
H A Dranges_sort.bench.cpp
H A Dsort.bench.cpp
H A Dstable_sort.bench.cpp
H A Dpstl.stable_sort.bench.cpp
H A Dpush_heap.bench.cpp
H A Dranges_push_heap.bench.cpp
H A Dcommon.h
/llvm-project/llvm/test/Transforms/GlobalOpt/
H A Dheap-sra-1.ll4 ;; Heap SROA has been removed. This tests we don't perform heap SROA.
H A Dheap-sra-2.ll4 ;; Heap SROA has been removed. This tests we don't perform heap SROA.
H A Dheap-sra-phi.ll5 ;; Heap SROA has been removed. This tests we don't perform heap SROA.
/llvm-project/llvm/test/tools/llvm-readobj/ELF/AArch64/
H A Dmemtag.test112 # HEAP-NEXT: Heap: Enabled
113 # NOHEAP-NEXT: Heap: Disabled
146 # HEAP: Heap: Enabled
147 # NOHEAP: Heap: Disabled
/llvm-project/llvm/test/tools/llvm-objdump/COFF/
H A Dprivate-headers-old.test74 LOADCFG-NEXT: Process Heap Flags: 0
/llvm-project/llvm/test/CodeGen/AMDGPU/
H A Dhsa-metadata-heap-v5.ll232 ; Heap pointer used inside a function call
245 ; Heap pointer retrieved inside a function call; chain of geps
/llvm-project/llvm/include/llvm/BinaryFormat/
H A DDXContainerConstants.def46 SHADER_FEATURE_FLAG(28, 32, AtomicInt64OnHeapResource, "64-bit Atomics on Heap Resources")
/llvm-project/compiler-rt/lib/asan/tests/
H A Dasan_str_test.cpp37 Heap, enumerator
91 StrLenOOBTestTemplate(heap_string, length, OOBKind::Heap); in TEST()
/llvm-project/llvm/docs/
H A DMemTagSanitizer.rst80 Heap tagging

12