Home
last modified time | relevance | path

Searched refs:begin_ (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_vector.h29 if (begin_) in ~Vector()
30 InternalFree(begin_); in ~Vector()
34 if (begin_) in Reset()
35 InternalFree(begin_); in Reset()
36 begin_ = 0; in Reset()
42 return end_ - begin_; in Size()
47 return begin_[i];
52 return begin_[i];
76 end_ = begin_; in Resize()
92 T *begin_;
[all …]
H A Dsanitizer_array_ref.h31 constexpr ArrayRef(const T *begin, const T *end) : begin_(begin), end_(end) { in ArrayRef()
43 const T *data() const { return empty() ? nullptr : begin_; } in data()
45 const T *begin() const { return begin_; } in begin()
48 bool empty() const { return begin_ == end_; } in empty()
50 uptr size() const { return end_ - begin_; } in size()
103 return begin_[index];
107 const T *begin_ = nullptr;
/freebsd-14.2/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-param-util.h214 : begin_(begin), in RangeGenerator()
221 return new Iterator(this, begin_, 0, step_); in Begin()
284 const T begin_; variable
848 begin_(std::get<I>(generators).begin()...), in GTEST_DISABLE_MSC_WARNINGS_POP_()
850 current_(is_end ? end_ : begin_) { in GTEST_DISABLE_MSC_WARNINGS_POP_()
908 std::get<ThisI>(current_) = std::get<ThisI>(begin_); in GTEST_DISABLE_MSC_WARNINGS_POP_()
926 std::tuple<typename ParamGenerator<T>::iterator...> begin_; in GTEST_DISABLE_MSC_WARNINGS_POP_() local