Home
last modified time | relevance | path

Searched refs:b_ (Results 1 – 25 of 40) sorted by relevance

12

/llvm-project-15.0.7/libcxx/test/std/utilities/function.objects/refwrap/refwrap.const/
H A Dtype_conv_ctor2.pass.cpp24 mutable B b_; member
25 TEST_CONSTEXPR operator B&() const { return b_; } in operator B&()
29 mutable B b_; member
30 TEST_CONSTEXPR operator B&() const TEST_NOEXCEPT { return b_; } in operator B&()
41 assert(&b1.get() == &a.b_); in test()
44 assert(&b1.get() == &a.b_); in test()
50 assert(&b2.get() == &a.b_); in test()
53 assert(&b2.get() == &a.b_); in test()
/llvm-project-15.0.7/clang/test/Analysis/
H A Dtemp-obj-dtors-cfg-output.cpp72 C():b_(true) {} in C()
75 operator bool() { return b_; } in operator bool()
76 bool b_; member
80 D():b_(true) {} in D()
82 operator bool() { return b_; } in operator bool()
83 bool b_; member
/llvm-project-15.0.7/libcxx/test/std/ranges/range.factories/range.single.view/
H A Dctor.in_place.pass.cpp23 int a_, b_; member
24 constexpr TakesTwoInts(int a, int b) : a_(a), b_(b) {} in TakesTwoInts()
31 assert(sv.data()->b_ == 2); in test()
37 assert(sv.data()->b_ == 2); in test()
/llvm-project-15.0.7/libcxx/test/std/utilities/memory/specialized.algorithms/specialized.construct/
H A Dconstruct_at.pass.cpp24 constexpr Foo(int a, char b, double c) : a_(a), b_(b), c_(c) { } in Foo()
27 return a_ == other.a_ && b_ == other.b_ && c_ == other.c_; in operator ==()
32 char b_; member
/llvm-project-15.0.7/libcxx/test/std/ranges/range.adaptors/range.transform/
H A Dgeneral.pass.cpp52 explicit NonConstView(int *b, int *e) : b_(b), e_(e) {} in NonConstView()
53 const int *begin() { return b_; } // deliberately non-const in begin()
55 const int *b_; member
/llvm-project-15.0.7/llvm/test/Instrumentation/MemorySanitizer/
H A Dattributes.ll8 declare void @b_() sanitize_memory readonly
22 call void @b_()
23 call void @b_() readonly
/llvm-project-15.0.7/clang/test/Modules/
H A Dredundant-template-default-arg3.cpp74 inline int b_ = 43; variable
75 template <typename T, T *i = &b_>
/llvm-project-15.0.7/llvm/test/CodeGen/Mips/
H A Dseteq.ll17 ; 16: xor $[[REGISTER:[0-9A-Ba-b_]+]], ${{[0-9]+}}
18 ; 16: sltiu $[[REGISTER:[0-9A-Ba-b_]+]], 1
H A Dseteqz.ll22 ; 16: xor $[[REGISTER:[0-9A-Ba-b_]+]], ${{[0-9]+}}
23 ; 16: sltiu $[[REGISTER:[0-9A-Ba-b_]+]], 1
H A Dbrconeqz.ll11 ; 16: beqz ${{[0-9]+}}, $[[LABEL:[0-9A-Ba-b_]+]]
H A Dbrconeqk.ll12 ; 16: bteqz $[[LABEL:[0-9A-Ba-b_]+]]
H A Dbrconnek.ll13 ; 16: btnez $[[LABEL:[0-9A-Ba-b_]+]]
H A Dbrconnez.ll12 ; 16: bnez ${{[0-9]+}}, $[[LABEL:[0-9A-Ba-b_]+]]
H A Dbrconeq.ll13 ; 16: bteqz $[[LABEL:[0-9A-Ba-b_]+]]
H A Dbrcongt.ll15 ; 16: btnez $[[LABEL:[0-9A-Ba-b_]+]]
H A Dbrconne.ll14 ; 16: btnez $[[LABEL:[0-9A-Ba-b_]+]]
H A Dbrconlt.ll18 ; 16: btnez $[[LABEL:[0-9A-Ba-b_]+]]
/llvm-project-15.0.7/clang/test/Sema/
H A Dwarn-thread-safety-analysis.c46 int *b_ PT_GUARDED_BY(foo_.mu_) = &a_;
105 …get_value(b_); // expected-warning{{calling function 'get_value' requires holding mutex 'foo_.mu_'… in main()
110 (void)(get_value(b_) == 1); in main()
/llvm-project-15.0.7/libcxxabi/src/
H A Dcxa_guard_impl.h133 explicit AtomicInt(IntType* b) : b_(b) {} in AtomicInt()
137 IntType load(MemoryOrder ord) { return std::__libcpp_atomic_load(b_, ord); } in load()
138 void store(IntType val, MemoryOrder ord) { std::__libcpp_atomic_store(b_, val, ord); } in store()
139 …IntType exchange(IntType new_val, MemoryOrder ord) { return std::__libcpp_atomic_exchange(b_, new_… in exchange()
141 return std::__libcpp_atomic_compare_exchange(b_, expected, desired, ord_success, ord_failure); in compare_exchange()
145 IntType* b_;
/llvm-project-15.0.7/libcxx/test/std/containers/sequences/vector.bool/
H A Dctor_exceptions.pass.cpp48 bool b_ = true; member
53 return b_; in operator *()
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dwarn-unused-private-field.cpp239 A() : p_(__null), b_(false), a_(this), p2_(nullptr) {} in A()
241 bool b_; // expected-warning{{private field 'b_' is not used}} member in pr13413::A
H A Dexpression-traits.cpp20 # define static_assert(b_, m_) \ argument
21 typedef int CONCAT_(sa_, __LINE__)[b_ ? 1 : -1]
/llvm-project-15.0.7/llvm/test/CodeGen/RISCV/
H A Dhalf-arith-strict.ll121 %b_ = fadd half 0.0, %b
123 %negb = fneg half %b_
149 %b_ = fadd half 0.0, %b
150 %negb = fneg half %b_
/llvm-project-15.0.7/clang/test/Lexer/
H A Dchar-escapes-delimited.c82 …char b_ = '\N{ DOL-LAR _SIGN }'; // expected-error {{' DOL-LAR _SIGN ' is not a valid Unicode char… in named() local
/llvm-project-15.0.7/third-party/benchmark/src/
H A Dbenchmark_runner.h48 BenchmarkRunner(const benchmark::internal::BenchmarkInstance& b_,

12