Home
last modified time | relevance | path

Searched defs:begin (Results 1 – 25 of 498) sorted by relevance

12345678910>>...20

/freebsd/contrib/llvm-project/libcxx/include/__iterator/
H A Daccess.h23 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR _Tp* begin(_Tp (&__array)[_Np]) _NOEXCEPT { in begin() function
72 _LIBCPP_HIDE_FROM_ABI typename _Cp::iterator begin(_Cp& __c) { in begin() function
77 _LIBCPP_HIDE_FROM_ABI typename _Cp::const_iterator begin(const _Cp& __c) { in begin() function
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_leb128.h18 It EncodeSLEB128(T value, It begin, It end) { in EncodeSLEB128()
36 It DecodeSLEB128(It begin, It end, T* v) { in DecodeSLEB128()
55 It EncodeULEB128(T value, It begin, It end) { in EncodeULEB128()
69 It DecodeULEB128(It begin, It end, T* v) { in DecodeULEB128()
/freebsd/contrib/processor-trace/libipt/src/
H A Dpt_sync.c70 const uint8_t *begin, *end; in pt_find_psb() local
120 static int pt_sync_within_bounds(const uint8_t *pos, const uint8_t *begin, in pt_sync_within_bounds()
133 const uint8_t *begin, *end; in pt_sync_set() local
164 const uint8_t *begin, *end, *start; in pt_sync_forward() local
212 const uint8_t *begin, *end; in pt_sync_backward() local
H A Dpt_event_queue.c69 uint8_t begin, end, gap, idx; in pt_evq_enqueue() local
101 uint8_t begin, end; in pt_evq_dequeue() local
142 uint8_t begin, end; in pt_evq_empty() local
177 uint8_t begin, end; in pt_evq_find() local
/freebsd/contrib/llvm-project/libcxx/include/__ranges/
H A Dreverse_view.h69 _LIBCPP_HIDE_FROM_ABI constexpr reverse_iterator<iterator_t<_View>> begin() { in begin() function
80 _LIBCPP_HIDE_FROM_ABI constexpr reverse_iterator<iterator_t<_View>> begin() in begin() function
86 _LIBCPP_HIDE_FROM_ABI constexpr auto begin() const in begin() function
H A Das_rvalue_view.h59 _LIBCPP_HIDE_FROM_ABI constexpr auto begin() in begin() function
65 _LIBCPP_HIDE_FROM_ABI constexpr auto begin() const in begin() function
H A Dcommon_view.h61 _LIBCPP_HIDE_FROM_ABI constexpr auto begin() { in begin() function
68 _LIBCPP_HIDE_FROM_ABI constexpr auto begin() const in begin() function
H A Dlazy_split_view.h104 _LIBCPP_HIDE_FROM_ABI constexpr auto begin() { in begin() function
113 _LIBCPP_HIDE_FROM_ABI constexpr auto begin() const in begin() function
H A Delements_view.h88 _LIBCPP_HIDE_FROM_ABI constexpr auto begin() in begin() function
94 _LIBCPP_HIDE_FROM_ABI constexpr auto begin() const in begin() function
H A Dsingle_view.h65 _LIBCPP_HIDE_FROM_ABI constexpr _Tp* begin() noexcept { return data(); } in begin() function
67 _LIBCPP_HIDE_FROM_ABI constexpr const _Tp* begin() const noexcept { return data(); } in begin() function
H A Downing_view.h57 _LIBCPP_HIDE_FROM_ABI constexpr iterator_t<_Rp> begin() { return ranges::begin(__r_); } in begin() function
59 _LIBCPP_HIDE_FROM_ABI constexpr auto begin() const in begin() function
H A Dtransform_view.h97 …_LIBCPP_HIDE_FROM_ABI constexpr __iterator<false> begin() { return __iterator<false>{*this, ranges… in begin() function
98 _LIBCPP_HIDE_FROM_ABI constexpr __iterator<true> begin() const in begin() function
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DCallGraph.h106 inline iterator begin() { return FunctionMap.begin(); } in begin() function
108 inline const_iterator begin() const { return FunctionMap.begin(); } in begin() function
199 inline iterator begin() { return CalledFunctions.begin(); } in begin() function
201 inline const_iterator begin() const { return CalledFunctions.begin(); } in begin() function
369 inline iterator begin() { return G->begin(); } in begin() function
371 inline const_iterator begin() const { return G->begin(); } in begin() function
/freebsd/contrib/bearssl/test/
H A Dtest_speed.c297 clock_t begin, end; in SPEED_HASH() local
396 clock_t begin, end; in test_speed_poly1305_inner() local
480 clock_t begin, end; in test_speed_eax_inner() local
550 clock_t begin, end; in test_speed_shake_inner() local
578 clock_t begin, end; in test_speed_shake_inner() local
782 clock_t begin, end; in test_speed_rsa_inner() local
807 clock_t begin, end; in test_speed_rsa_inner() local
849 clock_t begin, end; in test_speed_rsa_inner() local
873 clock_t begin, end; in test_speed_rsa_inner() local
956 clock_t begin, end; in test_speed_ec_inner_1() local
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DVariableList.h73 iterator begin() { return m_variables.begin(); } in begin() function
75 const_iterator begin() const { return m_variables.begin(); } in begin() function
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/
H A DCallGraph.h86 iterator begin() { return FunctionMap.begin(); } in begin() function
88 const_iterator begin() const { return FunctionMap.begin(); } in begin() function
177 iterator begin() { return CalledFunctions.begin(); } in begin() function
179 const_iterator begin() const { return CalledFunctions.begin(); } in begin() function
/freebsd/contrib/llvm-project/lld/COFF/
H A DICF.cpp108 void ICF::segregate(size_t begin, size_t end, bool constant) { in segregate()
203 size_t ICF::findBoundary(size_t begin, size_t end) { in findBoundary()
210 void ICF::forEachClassRange(size_t begin, size_t end, in forEachClassRange()
299 forEachClass([&](size_t begin, size_t end) { segregate(begin, end, true); }); in run()
305 [&](size_t begin, size_t end) { segregate(begin, end, false); }); in run()
311 forEachClass([&](size_t begin, size_t end) { in run()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStringList.h63 iterator begin() { return m_strings.begin(); } in begin() function
65 const_iterator begin() const { return m_strings.begin(); } in begin() function
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugAbbrev.h42 const_iterator begin() const { in begin() function
75 DWARFAbbreviationDeclarationSetMap::const_iterator begin() const { in begin() function
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_common_fuchsia.cpp82 uptr begin = reinterpret_cast<uptr>(chunk); in LockStuffAndStopTheWorld() local
90 uptr begin = reinterpret_cast<uptr>(chunk); in LockStuffAndStopTheWorld() local
99 uptr begin = reinterpret_cast<uptr>(chunk); in LockStuffAndStopTheWorld() local
117 uptr begin = reinterpret_cast<uptr>(chunk); in LockStuffAndStopTheWorld() local
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DUniqueVector.h75 iterator begin() { return Vector.begin(); } in begin() function
78 const_iterator begin() const { return Vector.begin(); } in begin() function
/freebsd/contrib/llvm-project/llvm/include/llvm/XRay/
H A DGraph.h212 iterator begin() { in begin() function
226 const_iterator begin() const { return cbegin(); } in begin() function
284 iterator begin() { return G.Vertices.begin(); } in begin() function
288 const_iterator begin() const { return G.Vertices.begin(); } in begin() function
321 iterator begin() { return G.Edges.begin(); } in begin() function
325 const_iterator begin() const { return G.Edges.begin(); } in begin() function
/freebsd/contrib/llvm-project/lld/MachO/
H A DICF.cpp236 size_t ICF::findBoundary(size_t begin, size_t end) { in findBoundary()
245 void ICF::forEachClassRange(size_t begin, size_t end, in forEachClassRange()
317 forEachClass([&](size_t begin, size_t end) { in run()
324 forEachClass([&](size_t begin, size_t end) { in run()
335 forEachClass([&](size_t begin, size_t end) { in run()
345 void ICF::segregate(size_t begin, size_t end, EqualsFn equals) { in segregate()
/freebsd/contrib/llvm-project/lld/ELF/
H A DICF.cpp198 void ICF<ELFT>::segregate(size_t begin, size_t end, uint32_t eqClassBase, in segregate()
380 template <class ELFT> size_t ICF<ELFT>::findBoundary(size_t begin, size_t end) { in findBoundary()
394 void ICF<ELFT>::forEachClassRange(size_t begin, size_t end, in forEachClassRange()
523 forEachClass([&](size_t begin, size_t end) { in run()
530 forEachClass([&](size_t begin, size_t end) { in run()
538 forEachClassRange(0, sections.size(), [&](size_t begin, size_t end) { in run()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DCXXInheritance.h182 paths_iterator begin() { return Paths.begin(); } in begin() function
184 const_paths_iterator begin() const { return Paths.begin(); } in begin() function
280 iterator begin() { return Overrides.begin(); } in begin() function
281 const_iterator begin() const { return Overrides.begin(); } in begin() function

12345678910>>...20