Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_vector.h26 Vector() : begin_(), end_(), last_() {} in Vector()
29 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()
46 DCHECK_LT(i, end_ - begin_);
47 return begin_[i];
51 DCHECK_LT(i, end_ - 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/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-param-util.h215 : begin_(begin), in RangeGenerator()
222 return new Iterator(this, begin_, 0, step_); in Begin()
285 const T begin_; variable
852 begin_(std::get<I>(generators).begin()...), in GTEST_DISABLE_MSC_WARNINGS_POP_()
854 current_(is_end ? end_ : begin_) { in GTEST_DISABLE_MSC_WARNINGS_POP_()
912 std::get<ThisI>(current_) = std::get<ThisI>(begin_); in GTEST_DISABLE_MSC_WARNINGS_POP_()
930 std::tuple<typename ParamGenerator<T>::iterator...> begin_; in GTEST_DISABLE_MSC_WARNINGS_POP_() local