Searched defs:counting_oracle (Results 1 – 1 of 1) sorted by relevance
23 struct counting_oracle struct26 counting_oracle() : val() { ++default_ctor_count; } in counting_oracle() argument27 counting_oracle(int v) : val(v) { ++val_ctor_count; } in counting_oracle() function28 counting_oracle(const counting_oracle& rhs) : val(rhs.val) { ++copy_ctor_count; } in counting_oracle() function29 …counting_oracle& operator=(const counting_oracle& rhs) { val = rhs.val; ++copy_assign_count; retur… in operator =() argument30 ~counting_oracle() { ++dtor_count; } in ~counting_oracle() argument39 …friend bool operator==(const counting_oracle& lhs, const counting_oracle& rhs) { ++equals_count; r… in operator ==() argument47 int counting_oracle::dtor_count = 0; argument