Home
last modified time | relevance | path

Searched refs:push_front (Results 1 – 25 of 65) sorted by relevance

123

/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_list_test.cpp85 l.push_front(x); in TEST()
93 l.push_front(x); in TEST()
94 l.push_front(y); in TEST()
95 l.push_front(z); in TEST()
/openbsd-src/gnu/llvm/libcxx/include/__iterator/
H A Dfront_insert_iterator.h50 {container->push_front(__value); return *this;}
53 {container->push_front(_VSTD::move(__value)); return *this;}
/openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/tests/
H A Dlist_test.cpp85 L.push_front(X); in testListCommon()
93 L.push_front(X); in testListCommon()
94 L.push_front(Y); in testListCommon()
95 L.push_front(Z); in testListCommon()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DReg2Mem.cpp76 WorkList.push_front(&I); in runPass()
88 WorkList.push_front(&Phi); in runPass()
/openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/
H A Dlist.h97 void push_front(T *X) { in push_front() function
157 void push_front(T *X) { in push_front() function
173 return push_front(X); in insert()
H A Dprimary64.h430 BG->Batches.push_front(TB);
453 Batches.push_front(CurBatch);
471 Region->FreeList.push_front(Cur);
489 Region->FreeList.push_front(Cur);
H A Dprimary32.h424 BG->Batches.push_front(TB);
447 Batches.push_front(CurBatch);
465 Sci->FreeList.push_front(Cur);
483 Sci->FreeList.push_front(Cur);
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DStackFrameRecognizer.cpp53 m_recognizers.push_front({(uint32_t)m_recognizers.size(), recognizer, false, in AddRecognizer()
61 m_recognizers.push_front({(uint32_t)m_recognizers.size(), recognizer, true, in AddRecognizer()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp877 C.getActivePath().push_front(generateDiagForGotoOP(C, S, Start)); in generateMinimalDiagForBlockEdge()
882 C.getActivePath().push_front(generateDiagForSwitchOP(C, Dst, Start)); in generateMinimalDiagForBlockEdge()
891 C.getActivePath().push_front( in generateMinimalDiagForBlockEdge()
913 C.getActivePath().push_front( in generateMinimalDiagForBlockEdge()
923 C.getActivePath().push_front(generateDiagForBinaryOP(C, T, Src, Dst)); in generateMinimalDiagForBlockEdge()
938 C.getActivePath().push_front( in generateMinimalDiagForBlockEdge()
947 C.getActivePath().push_front( in generateMinimalDiagForBlockEdge()
964 C.getActivePath().push_front( in generateMinimalDiagForBlockEdge()
972 C.getActivePath().push_front( in generateMinimalDiagForBlockEdge()
986 C.getActivePath().push_front( in generateMinimalDiagForBlockEdge()
[all …]
H A DWorkList.cpp102 Queue.push_front(U); in enqueue()
/openbsd-src/gnu/llvm/llvm/tools/llvm-xray/
H A Dtrie-node.h57 NodeStore.push_front(TrieNode<T>{ in mergeTrieNodes()
H A Dxray-converter.cpp232 NodeStore.push_front({FuncId, Parent, {}, {(*id_counter)++, {}}}); in findOrCreateStackNode()
239 NodeStore.push_front({FuncId, Parent, {}, {stack_id, std::move(siblings)}}); in findOrCreateStackNode()
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DGCNMinRegStrategy.cpp125 RQ.push_front(Cand); in findMax()
220 RQ.push_front(*new (Alloc.Allocate()) Candidate(SuccSU, Priority)); in releaseSuccessors()
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DAllocatorList.h209 void push_front(T &&V) { insert(begin(), std::move(V)); } in push_front() function
211 void push_front(const T &V) { insert(begin(), V); } in push_front() function
H A Dsimple_ilist.h142 void push_front(reference Node) { insert(begin(), Node); } in push_front() function
/openbsd-src/gnu/llvm/llvm/lib/Target/SPIRV/
H A DSPIRVRegularizer.cpp144 WorkList.push_front(cast<Instruction>(LowerOp(CE))); in runLowerConstExpr()
160 WorkList.push_front(cast<Instruction>(ReplInst)); in runLowerConstExpr()
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DDIE.h543 void push_front(Node &N) { in push_front() function
561 void push_front(T &N) { IntrusiveBackListBase::push_front(N); } in push_front() function
864 Children.push_front(*Child); in addChildFront()
/openbsd-src/gnu/llvm/libcxx/include/
H A Ddeque108 void push_front(const value_type& v);
109 void push_front(value_type&& v);
713 _LIBCPP_HIDE_FROM_ABI void push_front(const value_type& __v);
725 _LIBCPP_HIDE_FROM_ABI void push_front(value_type&& __v);
1291 deque<_Tp, _Allocator>::push_front(const value_type& __v)
1338 deque<_Tp, _Allocator>::push_front(value_type&& __v)
1781 __map_.push_front(__pt);
1789 __map_.push_front(__alloc_traits::allocate(__a, __block_size));
1796 __map_.push_front(__pt);
1849 __map_.push_front(__pt);
[all …]
H A D__split_buffer116 _LIBCPP_CONSTEXPR_SINCE_CXX20 _LIBCPP_HIDE_FROM_ABI void push_front(const_reference __x);
118 _LIBCPP_CONSTEXPR_SINCE_CXX20 _LIBCPP_HIDE_FROM_ABI void push_front(value_type&& __x);
490 __split_buffer<_Tp, _Allocator>::push_front(const_reference __x)
520 __split_buffer<_Tp, _Allocator>::push_front(value_type&& __x)
/openbsd-src/gnu/lib/libstdc++/libstdc++/include/bits/
H A Ddeque.tcc93 push_front(__x); in insert()
487 push_front(front()); in _M_insert_aux()
524 push_front(front()); in _M_insert_aux()
H A Dstl_list.h703 push_front(const value_type& __x) { this->insert(begin(), __x); } in push_front() function
719 push_front() { this->insert(begin(), value_type()); } in push_front() function
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_list.h52 void push_front(Item *x) { in push_front() function
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporterVisitors.h246 ExpressionHandlers.push_front(std::move(SH)); in addHighPriorityHandler()
262 StoreHandlers.push_front(std::move(SH)); in addHighPriorityHandler()
/openbsd-src/gnu/gcc/libstdc++-v3/include/debug/
H A Ddeque221 push_front(const _Tp& __x)
223 _Base::push_front(__x);
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DLoopPass.cpp79 LQ.push_front(&L); in addLoop()

123