Searched refs:other (Results 101 - 125 of 513) sorted by relevance

1234567891011>>

/freebsd-current/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DArmUnwindInfo.h44 bool operator<(const ArmExidxEntry &other) const;
/freebsd-current/crypto/heimdal/lib/hx509/
H A Dtest_nist2.in16 # documentation and/or other materials provided with the distribution.
85 while read result cert other ; do
88 description="${other}"
/freebsd-current/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_vector_clock.h34 VectorClock& operator=(const VectorClock& other);
H A Dtsan_vector_clock.cpp70 VectorClock& VectorClock::operator=(const VectorClock& other) { argument
73 clk_[i] = other.clk_[i];
76 m128 const* __restrict vsrc = reinterpret_cast<m128 const*>(other.clk_);
/freebsd-current/contrib/llvm-project/lldb/bindings/interface/
H A DSBThreadExtensions.i8 def __eq__(self, other):
9 return not self.__ne__(other)
H A DSBAddressExtensions.i8 def __eq__(self, other):
9 return not self.__ne__(other)
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DNameToDIE.cpp87 void NameToDIE::Append(const NameToDIE &other) { argument
88 const uint32_t size = other.m_map.GetSize();
90 m_map.Append(other.m_map.GetCStringAtIndexUnchecked(i),
91 other.m_map.GetValueAtIndexUnchecked(i));
/freebsd-current/lib/libpam/pam.d/
H A DMakefile12 other \
/freebsd-current/contrib/kyua/utils/config/
H A Dnodes.cpp12 // documentation and/or other materials provided with the distribution.
146 const inner_node& other = dynamic_cast< const inner_node& >( local
149 node->_dynamic = _dynamic || other._dynamic;
151 combine_children_into(key, _children, other._children, node);
152 combine_children_into(key, other._children, _children, node);
308 /// \param other The node to combine with.
315 const base_node* other) const
318 combine_into(key, other, new_node.get());
325 /// This method does not raise errors on invalid/unknown keys or other
389 /// \param other Th
[all...]
H A Dtree.cpp12 // documentation and/or other materials provided with the distribution.
80 /// right-hand side (aka "other") tree.
91 /// node in the other one.
112 /// This method does not raise errors on invalid/unknown keys or other
317 /// \param other The other object to compare this one to.
319 /// \return True if this object and other are equal; false otherwise.
321 config::tree::operator==(const tree& other) const
325 return _root == other._root || all_properties() == other
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVStringPool.h38 LVStringPool(LVStringPool const &other) = delete; member in class:llvm::logicalview::LVStringPool
39 LVStringPool(LVStringPool &&other) = delete; member in class:llvm::logicalview::LVStringPool
/freebsd-current/contrib/libdiff/lib/
H A Ddiff_internal.h106 const struct diff_chunk_context *other);
110 const struct diff_chunk_context *other);
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Target/
H A DRegisterFlags.h49 bool Overlaps(const Field &other) const;
52 /// Return the number of bits between this field and the other, that are not
54 unsigned PaddingDistance(const Field &other) const;
/freebsd-current/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DTypeCategoryMap.h87 bool operator()(const lldb::TypeCategoryImplSP &other) { argument
88 return ptr.get() == other.get();
/freebsd-current/usr.sbin/nfsdumpstate/
H A Dnfsdumpstate.c12 * documentation and/or other materials provided with the distribution.
205 lp[cnt].ndlck_stateid.other[0],
206 lp[cnt].ndlck_stateid.other[1],
207 lp[cnt].ndlck_stateid.other[2]);
213 lp[cnt].ndlck_stateid.other[0],
214 lp[cnt].ndlck_stateid.other[1],
215 lp[cnt].ndlck_stateid.other[2]);
/freebsd-current/sys/fs/nfsserver/
H A Dnfs_nfsdstate.c14 * documentation and/or other materials provided with the distribution.
297 /* Lock out other nfsd threads */
841 /* Lock out other nfsd threads */
1130 ldumpp[cnt].ndlck_stateid.other[0] = stp->ls_stateid.other[0];
1131 ldumpp[cnt].ndlck_stateid.other[1] = stp->ls_stateid.other[1];
1132 ldumpp[cnt].ndlck_stateid.other[2] = stp->ls_stateid.other[2];
1172 ldumpp[cnt].ndlck_stateid.other[
[all...]
H A Dnfs_nfsdserv.c17 * documentation and/or other materials provided with the distribution.
391 stateid.other[0] = *tl++;
392 stateid.other[1] = *tl++;
393 stateid.other[2] = *tl;
394 if (stateid.other[0] == 0x55555555 &&
395 stateid.other[1] == 0x55555555 &&
396 stateid.other[2] == 0x55555555 &&
800 clientid.lval[0] = stp->ls_stateid.other[0] = *tl++;
801 clientid.lval[1] = stp->ls_stateid.other[1] = *tl++;
813 stp->ls_stateid.other[
[all...]
/freebsd-current/contrib/llvm-project/libcxx/src/filesystem/
H A Dfile_descriptor.h177 FileDescriptor(FileDescriptor&& other) argument
178 : name(other.name), fd(other.fd), m_stat(other.m_stat), m_status(other.m_status) {
179 other.fd = -1;
180 other.m_status = file_status{};
/freebsd-current/contrib/googletest/googletest/test/
H A Dgoogletest-param-test-test.cc12 // in the documentation and/or other materials provided with the
216 DogAdder(const DogAdder& other) : value_(other.value_.c_str()) {} argument
218 DogAdder operator=(const DogAdder& other) { argument
219 if (this != &other) value_ = other.value_;
222 DogAdder operator+(const DogAdder& other) const {
224 msg << value_ << other.value_;
227 bool operator<(const DogAdder& other) const { return value_ < other
251 IntWrapper(const IntWrapper& other) argument
253 operator =(const IntWrapper& other) argument
[all...]
/freebsd-current/contrib/wpa/src/wps/
H A Dupnp_xml.c28 * (One other interesting thing about utf-8 is that it is possible to look at
49 * Labels are any sequence of chars other than space, tab, right angle bracket
177 * other in args and their values go here, if any
183 * s: might be some other namespace name followed by colon
184 * u: might be some other namespace name followed by colon
/freebsd-current/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaInternal.h323 inline Sema::TypoExprState::TypoExprState(TypoExprState &&other) noexcept {
324 *this = std::move(other);
328 operator=(Sema::TypoExprState &&other) noexcept {
329 Consumer = std::move(other.Consumer);
330 DiagHandler = std::move(other.DiagHandler);
331 RecoveryHandler = std::move(other.RecoveryHandler);
/freebsd-current/contrib/dialog/
H A Ddialog-config.in27 # use or other dealings in this Software without prior written #
144 --cflags-only-other)
183 --libs-only-other)
234 --libs-only-other echos linker options other than -L/-l
/freebsd-current/contrib/libucl/include/
H A Ducl++.h11 * documentation and/or other materials provided with the distribution.
206 const_iterator(const const_iterator &other) = delete; member in class:ucl::final::const_iterator
207 const_iterator(const_iterator &&other) = default; member in class:ucl::final::const_iterator
210 const_iterator& operator=(const const_iterator &other) = delete; member in class:ucl::final::const_iterator
211 const_iterator& operator=(const_iterator &&other) = default; member in class:ucl::final::const_iterator
213 bool operator==(const const_iterator &other) const
215 if (cur && other.cur) {
216 return cur->obj.get() == other.cur->obj.get();
219 return !cur && !other.cur;
222 bool operator!=(const const_iterator &other) cons
263 Ucl(ucl_object_t *other) argument
268 Ucl(const ucl_object_t *other) argument
272 Ucl(const Ucl &other) argument
276 Ucl(Ucl &&other) argument
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/include/profile/
H A DMIBEntryDef.inc19 * the other one sits in compiler-rt/include/profile directory. To make changes
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DMIBEntryDef.inc19 * the other one sits in compiler-rt/include/profile directory. To make changes

Completed in 372 milliseconds

1234567891011>>