Searched refs:other (Results 76 - 100 of 395) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/llvm-project/lld/include/lld/Core/
H A DDefinedAtom.h103 mergeByContent, // Merge with other constants with same content.
155 // important, because the layout pass may sort atoms by permission if other
182 /// on the output type and other context of the link.
233 /// The visibility of this atom to other atoms.
237 /// scope scopeLinkageUnit so they can be see by other atoms being linked but
302 bool operator==(const reference_iterator &other) const {
303 return _it == other._it;
306 bool operator!=(const reference_iterator &other) const {
307 return !(*this == other);
348 /// Utility function to check if relocations in this atom to other define
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DArmUnwindInfo.h44 bool operator<(const ArmExidxEntry &other) const;
/freebsd-13-stable/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-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DNameToDIE.h31 void Append(const NameToDIE &other);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSlotIndexes.h165 bool operator==(SlotIndex other) const {
166 return lie == other.lie;
169 bool operator!=(SlotIndex other) const {
170 return lie != other.lie;
175 bool operator<(SlotIndex other) const {
176 return getIndex() < other.getIndex();
180 bool operator<=(SlotIndex other) const {
181 return getIndex() <= other.getIndex();
186 bool operator>(SlotIndex other) const {
187 return getIndex() > other
[all...]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_flags.h32 void CopyFrom(const CommonFlags &other);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DSymbolicFile.h79 bool operator==(const content_iterator &other) const {
80 return Current == other.Current;
83 bool operator!=(const content_iterator &other) const {
84 return !(*this == other);
110 SF_Exported = 1U << 6, // Symbol is visible to other DSOs
/freebsd-13-stable/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-13-stable/contrib/bmake/unit-tests/
H A Dcond1.exp4 A='other' B='unknown' C='clever' o='no,no'
H A Dvarmod-defined.mk20 # be used in .if conditions. In this place, other undefined expressions
37 # Any other backslash sequences are preserved.
46 # Like in several other places in variable expressions, when
55 # Any other text is written without any further escaping. In contrast
/freebsd-13-stable/usr.sbin/nfsdumpstate/
H A Dnfsdumpstate.c12 * documentation and/or other materials provided with the distribution.
208 lp[cnt].ndlck_stateid.other[0],
209 lp[cnt].ndlck_stateid.other[1],
210 lp[cnt].ndlck_stateid.other[2]);
216 lp[cnt].ndlck_stateid.other[0],
217 lp[cnt].ndlck_stateid.other[1],
218 lp[cnt].ndlck_stateid.other[2]);
/freebsd-13-stable/sys/fs/nfsserver/
H A Dnfs_nfsdstate.c14 * documentation and/or other materials provided with the distribution.
286 /* Lock out other nfsd threads */
805 /* Lock out other nfsd threads */
1084 ldumpp[cnt].ndlck_stateid.other[0] = stp->ls_stateid.other[0];
1085 ldumpp[cnt].ndlck_stateid.other[1] = stp->ls_stateid.other[1];
1086 ldumpp[cnt].ndlck_stateid.other[2] = stp->ls_stateid.other[2];
1126 ldumpp[cnt].ndlck_stateid.other[
[all...]
H A Dnfs_nfsdserv.c17 * documentation and/or other materials provided with the distribution.
374 stateid.other[0] = *tl++;
375 stateid.other[1] = *tl++;
376 stateid.other[2] = *tl;
377 if (stateid.other[0] == 0x55555555 &&
378 stateid.other[1] == 0x55555555 &&
379 stateid.other[2] == 0x55555555 &&
778 clientid.lval[0] = stp->ls_stateid.other[0] = *tl++;
779 clientid.lval[1] = stp->ls_stateid.other[1] = *tl++;
791 stp->ls_stateid.other[
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.h435 bool operator==(FPOptions other) const { return Value == other.Value; }
513 bool operator==(FPOptionsOverride other) const {
514 return Options == other.Options && OverrideMask == other.OverrideMask;
516 bool operator!=(FPOptionsOverride other) const { return !(*this == other); }
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyCommon.h11 // used by other analyses. Currently these include:
288 bool equals(const CapabilityExpr &other) const {
289 return (Negated == other.Negated) && sx::equals(CapExpr, other.CapExpr);
292 bool matches(const CapabilityExpr &other) const {
293 return (Negated == other.Negated) && sx::matches(CapExpr, other.CapExpr);
300 bool partiallyMatches(const CapabilityExpr &other) const {
301 return (Negated == other.Negated) &&
302 sx::partiallyMatches(CapExpr, other
[all...]
/freebsd-13-stable/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-13-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_clock.h46 bool operator!=(const Iter& other);
152 // Current thread time when it acquired something from other threads.
189 // and did not acquire anything from other threads after that
274 ALWAYS_INLINE bool SyncClock::Iter::operator!=(const SyncClock::Iter& other) {
275 return parent_ != other.parent_;
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Parse/
H A DRAIIObjectsForParser.h116 ParsingDeclRAIIObject(Parser &P, ParsingDeclRAIIObject *other) argument
118 DiagnosticPool(other ? other->DiagnosticPool.getParent() : nullptr) {
119 if (other) {
120 DiagnosticPool.steal(other->DiagnosticPool);
121 other->abort();
/freebsd-13-stable/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-13-stable/contrib/llvm-project/lld/ELF/
H A DSymbols.h112 // are unreferenced except by other bitcode objects.
207 void mergeProperties(const Symbol &other);
208 void resolve(const Symbol &other);
222 void resolveUndefined(const Undefined &other);
223 void resolveCommon(const CommonSymbol &other);
224 void resolveDefined(const Defined &other);
225 template <class LazyT> void resolveLazy(const LazyT &other);
226 void resolveShared(const SharedSymbol &other);
228 int compare(const Symbol *other) const;
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DTypeCategoryMap.h89 bool operator()(const lldb::TypeCategoryImplSP &other) { argument
90 return ptr.get() == other.get();
/freebsd-13-stable/crypto/openssl/crypto/pkcs12/
H A Dp12_asn.c34 ASN1_ADB_TEMPLATE(bag_default) = ASN1_EXP(PKCS12_BAGS, value.other, ASN1_ANY, 0);
49 ASN1_ADB_TEMPLATE(safebag_default) = ASN1_EXP(PKCS12_SAFEBAG, value.other, ASN1_ANY, 0);
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCleanup.h396 /// enclosing scope other than the immediately-enclosing normal
544 bool encloses(iterator other) const { return Ptr >= other.Ptr; }
545 bool strictlyEncloses(iterator other) const { return Ptr > other.Ptr; }
547 bool operator==(iterator other) const { return Ptr == other.Ptr; }
548 bool operator!=(iterator other) const { return Ptr != other.Ptr; }
/freebsd-13-stable/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...]

Completed in 398 milliseconds

1234567891011>>