Home
last modified time | relevance | path

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

123

/freebsd/contrib/opencsd/decoder/source/etmv4/
H A Dtrc_etmv4_stack_elem.cpp47 push_front(pElem); in createParamElemNoParam()
65 push_front(pElem); in createParamElem()
76 push_front(pElem); in createAtomElem()
88 push_front(pElem); in createExceptElem()
103 push_front(pElem); in createContextElem()
115 push_front(pElem); in createAddrElem()
126 push_front(pElem); in createQElem()
137 push_front(pElem); in createMarkerElem()
148 push_front(pElem); in createSrcAddrElem()
159 push_front(pElem); in createITEElem()
/freebsd/contrib/llvm-project/libcxx/include/__iterator/
H A Dfront_insert_iterator.h57 container->push_front(__value);
63 container->push_front(std::move(__value));
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DReg2Mem.cpp74 WorkList.push_front(&I); in runPass()
86 WorkList.push_front(&Phi); in runPass()
/freebsd/contrib/llvm-project/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.h688 Region->FreeListInfo.BlockList.push_front(BG); in pushBatchClassBlocks()
711 BG->Batches.push_front(TB); in pushBatchClassBlocks()
729 BG->Batches.push_front(CurBatch); in pushBatchClassBlocks()
772 BG->Batches.push_front(TB);
793 Batches.push_front(CurBatch);
822 Region->FreeListInfo.BlockList.push_front(Cur);
1656 BG->Batches.push_front(NonFullBatch); in mergeGroupsToReleaseBack()
1667 BG->Batches.push_front(NonFullBatch); in mergeGroupsToReleaseBack()
1702 Region->FreeListInfo.BlockList.push_front(Cur); in mergeGroupsToReleaseBack()
H A Dprimary32.h535 Sci->FreeListInfo.BlockList.push_front(BG); in pushBatchClassBlocks()
558 BG->Batches.push_front(TB); in pushBatchClassBlocks()
576 BG->Batches.push_front(CurBatch); in pushBatchClassBlocks()
620 BG->Batches.push_front(TB);
641 Batches.push_front(CurBatch);
670 Sci->FreeListInfo.BlockList.push_front(Cur);
/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp888 C.getActivePath().push_front(generateDiagForGotoOP(C, S, Start)); in generateMinimalDiagForBlockEdge()
893 C.getActivePath().push_front(generateDiagForSwitchOP(C, Dst, Start)); in generateMinimalDiagForBlockEdge()
902 C.getActivePath().push_front( in generateMinimalDiagForBlockEdge()
924 C.getActivePath().push_front( in generateMinimalDiagForBlockEdge()
934 C.getActivePath().push_front(generateDiagForBinaryOP(C, T, Src, Dst)); in generateMinimalDiagForBlockEdge()
949 C.getActivePath().push_front( in generateMinimalDiagForBlockEdge()
958 C.getActivePath().push_front( in generateMinimalDiagForBlockEdge()
975 C.getActivePath().push_front( in generateMinimalDiagForBlockEdge()
983 C.getActivePath().push_front( in generateMinimalDiagForBlockEdge()
997 C.getActivePath().push_front( in generateMinimalDiagForBlockEdge()
[all …]
H A DWorkList.cpp102 Queue.push_front(U); in enqueue()
/freebsd/contrib/opencsd/decoder/include/opencsd/etmv4/
H A Dtrc_etmv4_stack_elem.h372 void push_front(TrcStackElem *pElem);
415 inline void EtmV4P0Stack::push_front(TrcStackElem *pElem) in push_front() function
417 m_P0_stack.push_front(pElem); in push_front()
/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/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.h34 /// The API for adding nodes include \a push_front(), \a push_back(), and \a
150 void push_front(reference Node) { insert(begin(), Node); }
142 void push_front(reference Node) { insert(begin(), Node); } push_front() function
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DDIE.h550 void push_front(Node &N) { in push_front() function
568 void push_front(T &N) { IntrusiveBackListBase::push_front(N); } in push_front() function
944 Children.push_front(*Child); in addChildFront()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_list.h52 void push_front(Item *x) { in push_front() function
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporterVisitors.h252 ExpressionHandlers.push_front(std::move(SH)); in addHighPriorityHandler()
268 StoreHandlers.push_front(std::move(SH)); in addHighPriorityHandler()
/freebsd/cddl/usr.sbin/zfsd/
H A Dvdev.cc260 to_examine.push_front(child); in Parent()
/freebsd/contrib/llvm-project/libcxx/include/
H A D__split_buffer157 _LIBCPP_CONSTEXPR_SINCE_CXX20 _LIBCPP_HIDE_FROM_ABI void push_front(const_reference __x);
159 _LIBCPP_CONSTEXPR_SINCE_CXX20 _LIBCPP_HIDE_FROM_ABI void push_front(value_type&& __x);
464 _LIBCPP_CONSTEXPR_SINCE_CXX20 void __split_buffer<_Tp, _Allocator>::push_front(const_reference __x)…
486 _LIBCPP_CONSTEXPR_SINCE_CXX20 void __split_buffer<_Tp, _Allocator>::push_front(value_type&& __x) {
H A Ddeque112 void push_front(const value_type& v);
113 void push_front(value_type&& v);
757 _LIBCPP_HIDE_FROM_ABI void push_front(const value_type& __v);
774 _LIBCPP_HIDE_FROM_ABI void push_front(value_type&& __v);
1560 void deque<_Tp, _Allocator>::push_front(const value_type& __v) {
1604 void deque<_Tp, _Allocator>::push_front(value_type&& __v) {
2026 __map_.push_front(__pt);
2033 __map_.push_front(__alloc_traits::allocate(__a, __block_size));
2039 __map_.push_front(__pt);
2080 __map_.push_front(__pt);
[all …]
/freebsd/contrib/kyua/utils/process/
H A Dexecutor.cpp826 _pimpl->stale_exec_handles.push_front(insert_pair.first->second); in spawn_post()
873 _pimpl->stale_exec_handles.push_front(insert_pair.first->second); in spawn_followup_post()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopPass.cpp80 LQ.push_front(&L); in addLoop()
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeCategoryMap.cpp79 m_active_categories.push_front(category); in Enable()

123