Home
last modified time | relevance | path

Searched refs:other_ptr (Results 1 – 25 of 143) sorted by relevance

123456

/dports/devel/stxxl/stxxl-1.4.1/include/stxxl/bits/common/
H A Dcounting_ptr.h83 counting_ptr(const counting_ptr& other_ptr) : m_ptr(other_ptr) in counting_ptr() argument
88 { return operator = (other_ptr.m_ptr); }
127 { return m_ptr == other_ptr.m_ptr; }
131 { return m_ptr != other_ptr.m_ptr; }
224 const_counting_ptr(const const_counting_ptr& other_ptr) : m_ptr(other_ptr) in const_counting_ptr() argument
228 const_counting_ptr(const counting_ptr<Type>& other_ptr) : m_ptr(other_ptr.get()) in const_counting_ptr() argument
233 { return operator = (other_ptr.m_ptr); }
276 { return m_ptr == other_ptr.m_ptr; }
280 { return m_ptr != other_ptr.m_ptr; }
284 { return m_ptr == other_ptr.get(); }
[all …]
/dports/graphics/vapoursynth-fmtconv/fmtconv-r28/src/conc/
H A DAtomicPtr.hpp74 Interlocked::swap (_ptr._void_ptr, other_ptr); in operator =()
76 _ptr.store (other_ptr); in operator =()
93 bool AtomicPtr <T>::operator == (T *other_ptr) const noexcept in operator ==()
97 return (ptr == other_ptr); in operator ==()
105 return (! ((*this) == other_ptr)); in operator !=()
111 T * AtomicPtr <T>::swap (T *other_ptr) noexcept in swap() argument
116 other_ptr in swap()
119 return (_ptr.exchange (other_ptr)); in swap()
126 T * AtomicPtr <T>::cas (T *other_ptr, T *comp_ptr) noexcept in cas() argument
131 other_ptr, in cas()
[all …]
H A DAtomicPtr.h54 operator = (T *other_ptr) noexcept;
58 bool operator == (T *other_ptr) const noexcept;
59 bool operator != (T *other_ptr) const noexcept;
61 inline T * swap (T *other_ptr) noexcept;
62 inline T * cas (T *other_ptr, T *comp_ptr) noexcept;
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/lint/
H A Dlint-invalid-atomic-ordering-ptr.rs6 let other_ptr = &mut 10; in main() localVariable
21 x.store(other_ptr, Ordering::Release); in main()
22 x.store(other_ptr, Ordering::SeqCst); in main()
23 x.store(other_ptr, Ordering::Relaxed); in main()
26 x.store(other_ptr, Ordering::Acquire); in main()
28 x.store(other_ptr, Ordering::AcqRel); in main()
H A Dlint-invalid-atomic-ordering-ptr.stderr21 LL | x.store(other_ptr, Ordering::Acquire);
29 LL | x.store(other_ptr, Ordering::AcqRel);
/dports/textproc/aspell-ispell/aspell-0.60.8/common/
H A Dgeneric_copy_ptr-t.hpp31 void GenericCopyPtr<T,Parms>::assign(const T * other_ptr, in assign() argument
34 if (other_ptr == 0) { in assign()
38 ptr_ = parms_.clone(other_ptr); in assign()
40 parms_.assign(ptr_, other_ptr); in assign()
/dports/textproc/aspell/aspell-0.60.8/common/
H A Dgeneric_copy_ptr-t.hpp31 void GenericCopyPtr<T,Parms>::assign(const T * other_ptr, in assign() argument
34 if (other_ptr == 0) { in assign()
38 ptr_ = parms_.clone(other_ptr); in assign()
40 parms_.assign(ptr_, other_ptr); in assign()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/llvm/test/Analysis/ValueTracking/
H A Dderef-abstract-gc.ll10 ; CHECK-NOT: %other_ptr
13 i32* dereferenceable(8) %other_ptr)
18 load i32, i32* %other_ptr
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/test/Analysis/ValueTracking/
H A Dderef-abstract-gc.ll11 ; CHECK-NOT: %other_ptr
14 i32* dereferenceable(8) %other_ptr)
19 load i32, i32* %other_ptr
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/llvm/test/Analysis/ValueTracking/
H A Dderef-abstract-gc.ll11 ; CHECK-NOT: %other_ptr
14 i32* dereferenceable(8) %other_ptr)
19 load i32, i32* %other_ptr
/dports/devel/llvm13/llvm-project-13.0.1.src/llvm/test/Analysis/ValueTracking/
H A Dderef-abstract-gc.ll11 ; CHECK-NOT: %other_ptr
14 i32* dereferenceable(8) %other_ptr)
19 load i32, i32* %other_ptr
/dports/graphics/llvm-mesa/llvm-13.0.1.src/test/Analysis/ValueTracking/
H A Dderef-abstract-gc.ll11 ; CHECK-NOT: %other_ptr
14 i32* dereferenceable(8) %other_ptr)
19 load i32, i32* %other_ptr
/dports/www/chromium-legacy/chromium-88.0.4324.182/tools/clang/rewrite_raw_ptr_fields/tests/
H A Daffected-expr-original.cc151 SomeClass* other_ptr = nullptr; in foo() local
159 SomeClass* v = (x > 123) ? my_struct.ptr : other_ptr; in foo()
163 SomeClass* v2 = (x > 456) ? other_ptr : my_struct.ptr; in foo()
170 SomeClass* v4 = my_struct.ptr ? my_struct.ptr : other_ptr; in foo()
H A Daffected-expr-expected.cc153 SomeClass* other_ptr = nullptr; in foo() local
161 SomeClass* v = (x > 123) ? my_struct.ptr.get() : other_ptr; in foo()
165 SomeClass* v2 = (x > 456) ? other_ptr : my_struct.ptr.get(); in foo()
172 SomeClass* v4 = my_struct.ptr ? my_struct.ptr.get() : other_ptr; in foo()
/dports/lang/v8/v8-9.6.180.12/tools/clang/rewrite_raw_ptr_fields/tests/
H A Daffected-expr-original.cc151 SomeClass* other_ptr = nullptr; in foo() local
159 SomeClass* v = (x > 123) ? my_struct.ptr : other_ptr; in foo()
163 SomeClass* v2 = (x > 456) ? other_ptr : my_struct.ptr; in foo()
170 SomeClass* v4 = my_struct.ptr ? my_struct.ptr : other_ptr; in foo()
H A Daffected-expr-expected.cc153 SomeClass* other_ptr = nullptr; in foo() local
161 SomeClass* v = (x > 123) ? my_struct.ptr.get() : other_ptr; in foo()
165 SomeClass* v2 = (x > 456) ? other_ptr : my_struct.ptr.get(); in foo()
172 SomeClass* v4 = my_struct.ptr ? my_struct.ptr.get() : other_ptr; in foo()
/dports/net/kea/kea-2.0.1/src/lib/dns/rdata/generic/
H A Dptr_12.cc111 const PTR& other_ptr = dynamic_cast<const PTR&>(other); in compare() local
113 return (compareNames(ptr_name_, other_ptr.ptr_name_)); in compare()
/dports/emulators/dolphin-emu/dolphin-3152428/Source/Core/DiscIO/
H A DFileSystemGCWii.cpp129 const char* other_ptr = other.data(); in NameCaseInsensitiveEquals() local
131 for (size_t i = 0; i < other.size(); ++i, ++this_ptr, ++other_ptr) in NameCaseInsensitiveEquals()
140 static_cast<unsigned char>(*other_ptr) >= 0x80) in NameCaseInsensitiveEquals()
151 std::tolower(*other_ptr, std::locale::classic())) in NameCaseInsensitiveEquals()
/dports/devel/boost-docs/boost_1_72_0/libs/locale/src/icu/
H A Ddate_time.cpp213 … virtual int difference(abstract_calendar const *other_ptr,period::marks::period_mark p) const in difference() argument
223 calendar_impl const *other_cal=dynamic_cast<calendar_impl const *>(other_ptr); in difference()
230 posix_time p = other_ptr->get_time(); in difference()
/dports/devel/boost-python-libs/boost_1_72_0/libs/locale/src/icu/
H A Ddate_time.cpp213 … virtual int difference(abstract_calendar const *other_ptr,period::marks::period_mark p) const in difference() argument
223 calendar_impl const *other_cal=dynamic_cast<calendar_impl const *>(other_ptr); in difference()
230 posix_time p = other_ptr->get_time(); in difference()
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/libs/locale/src/icu/
H A Ddate_time.cpp212 … virtual int difference(abstract_calendar const *other_ptr,period::marks::period_mark p) const in difference() argument
222 calendar_impl const *other_cal=dynamic_cast<calendar_impl const *>(other_ptr); in difference()
229 posix_time p = other_ptr->get_time(); in difference()
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/libs/locale/src/icu/
H A Ddate_time.cpp213 … virtual int difference(abstract_calendar const *other_ptr,period::marks::period_mark p) const in difference() argument
223 calendar_impl const *other_cal=dynamic_cast<calendar_impl const *>(other_ptr); in difference()
230 posix_time p = other_ptr->get_time(); in difference()
/dports/databases/percona57-server/boost_1_59_0/libs/locale/src/icu/
H A Ddate_time.cpp212 … virtual int difference(abstract_calendar const *other_ptr,period::marks::period_mark p) const in difference() argument
222 calendar_impl const *other_cal=dynamic_cast<calendar_impl const *>(other_ptr); in difference()
229 posix_time p = other_ptr->get_time(); in difference()
/dports/databases/xtrabackup/boost_1_59_0/libs/locale/src/icu/
H A Ddate_time.cpp212 … virtual int difference(abstract_calendar const *other_ptr,period::marks::period_mark p) const in difference() argument
222 calendar_impl const *other_cal=dynamic_cast<calendar_impl const *>(other_ptr); in difference()
229 posix_time p = other_ptr->get_time(); in difference()
/dports/databases/percona57-client/boost_1_59_0/libs/locale/src/icu/
H A Ddate_time.cpp212 … virtual int difference(abstract_calendar const *other_ptr,period::marks::period_mark p) const in difference() argument
222 calendar_impl const *other_cal=dynamic_cast<calendar_impl const *>(other_ptr); in difference()
229 posix_time p = other_ptr->get_time(); in difference()

123456