Searched refs:begin (Results 251 - 275 of 2755) sorted by relevance

<<11121314151617181920>>

/freebsd-current/contrib/processor-trace/libipt/src/
H A Dpt_decoder_function.c223 const uint8_t *begin, *end; local
232 begin = config->begin;
235 if (!pos || (pos < begin) || (end < pos))
/freebsd-current/contrib/netbsd-tests/fs/msdosfs/
H A Dt_snapshot.c41 begin(void) function
/freebsd-current/contrib/processor-trace/libipt/internal/include/
H A Dpt_event_queue.h56 /* The begin and end indices for the above event queues. */
57 uint8_t begin[evb_max]; member in struct:pt_event_queue
/freebsd-current/contrib/llvm-project/clang/include/clang/Index/
H A DDeclOccurrence.h33 Relations(Relations.begin(), Relations.end()) {}
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
H A DHexagonDYLDRendezvous.h168 iterator begin() const { return m_soentries.begin(); } function in class:HexagonDYLDRendezvous
173 iterator loaded_begin() const { return m_added_soentries.begin(); }
178 iterator unloaded_begin() const { return m_removed_soentries.begin(); }
/freebsd-current/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreFrameToArgsOffsetElim.cpp52 for (MachineBasicBlock::iterator MBBI = MBB.begin(), EE = MBB.end();
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DSmallVectorMemoryBuffer.h46 init(this->SV.begin(), this->SV.end(), false);
/freebsd-current/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DMapLattice.h69 iterator begin() { return C.begin(); } function in class:clang::dataflow::MapLattice
71 const_iterator begin() const { return C.begin(); } function in class:clang::dataflow::MapLattice
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/
H A DMIRNamerPass.cpp57 ReversePostOrderTraversal<MachineBasicBlock *> RPOT(&*MF.begin());
/freebsd-current/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DLiveIntervalUnion.h69 SegmentIter begin() { return Segments.begin(); } function in class:llvm::LiveIntervalUnion
72 ConstSegmentIter begin() const { return Segments.begin(); } function in class:llvm::LiveIntervalUnion
/freebsd-current/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DContinuationRecordBuilder.h44 void begin(ContinuationRecordKind RecordKind);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ADT/
H A DPriorityWorklist.h114 if (std::begin(Input) == std::end(Input))
121 V.insert(V.end(), std::begin(Input), std::end(Input));
198 for (auto I = V.begin(); I != E; ++I)
200 M[*I] = I - V.begin();
/freebsd-current/usr.bin/users/
H A Dusers.cc68 copy(names.begin(), last, ostream_iterator<string>(cout, " "));
/freebsd-current/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSection.h185 iterator begin() { return Fragments.begin(); } function in class:llvm::MCSection
186 const_iterator begin() const { return Fragments.begin(); } function in class:llvm::MCSection
/freebsd-current/contrib/llvm-project/libcxx/include/__ranges/
H A Das_rvalue_view.h59 _LIBCPP_HIDE_FROM_ABI constexpr auto begin()
62 return move_iterator(ranges::begin(__base_));
65 _LIBCPP_HIDE_FROM_ABI constexpr auto begin() const
68 return move_iterator(ranges::begin(__base_));
H A Dempty_view.h32 _LIBCPP_HIDE_FROM_ABI static constexpr _Tp* begin() noexcept { return nullptr; }
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DIVUsers.h142 iterator begin() { return IVUses.begin(); } function in class:llvm::IVUsers
144 const_iterator begin() const { return IVUses.begin(); } function in class:llvm::IVUsers
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/
H A DBlockCoverageInference.h80 return getBlockNames(ArrayRef<const BasicBlock *>(BBs.begin(), BBs.end()));
/freebsd-current/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsAnalyzeImmediate.cpp78 SeqLs.append(std::make_move_iterator(SeqLsORi.begin()),
106 Seq.erase(Seq.begin() + 1);
114 for (InstSeqLs::iterator S = SeqLs.begin(); S != SeqLs.end(); ++S) {
125 Insts.append(ShortestSeq->begin(), ShortestSeq->end());
/freebsd-current/contrib/llvm-project/llvm/lib/MC/
H A DMCSPIRVStreamer.cpp31 DF->getContents().append(Code.begin(), Code.end());
/freebsd-current/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DArrayList.h85 std::sort(SortedItems.begin(), SortedItems.end(), Comparator);
123 typename ArrayTy::iterator begin() { return Items.begin(); } function in struct:llvm::dwarf_linker::parallel::ArrayList::ItemsGroup
124 typename ArrayTy::iterator end() { return Items.begin() + getItemsCount(); }
/freebsd-current/contrib/llvm-project/llvm/lib/Object/
H A DDXContainer.cpp25 if (Src < Buffer.begin() || Src + sizeof(T) > Buffer.end())
41 if (Src < Buffer.begin() || Src + sizeof(T) > Buffer.end())
66 const char *Current = Part.begin();
79 if (Error Err = readInteger(Part, Part.begin(), FlagValue))
89 if (Error Err = readStruct(Part, Part.begin(), ReadHash))
106 if (Error Err = readStruct(Part, Part.begin(), SigHeader))
234 const char *Current = Data.begin();
288 Resources.Data = Data.substr(Current - Data.begin(), BindingDataSize);
349 SigInputElements.Data = Data.substr(Current - Data.begin(), InputSize);
353 SigOutputElements.Data = Data.substr(Current - Data.begin(), OutputSiz
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DSymbolStream.cpp34 return llvm::make_range(SymbolRecords.begin(HadError), SymbolRecords.end());
/freebsd-current/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyExceptionInfo.h80 block_iterator block_begin() const { return getBlocks().begin(); }
100 iterator begin() const { return SubExceptions.begin(); } function in class:llvm::WebAssemblyException
105 std::reverse(Blocks.begin() + From, Blocks.end());
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDYLDRendezvous.h252 iterator begin() const { return m_soentries.begin(); } function in class:DYLDRendezvous
257 iterator loaded_begin() const { return m_added_soentries.begin(); }
262 iterator unloaded_begin() const { return m_removed_soentries.begin(); }

Completed in 303 milliseconds

<<11121314151617181920>>