Searched refs:other (Results 176 - 200 of 513) sorted by relevance

1234567891011>>

/freebsd-current/contrib/libdiff/lib/
H A Ddiff_output_unidiff.c131 const struct diff_chunk_context *other)
133 return diff_ranges_touch(&cc->chunk, &other->chunk)
134 || diff_ranges_touch(&cc->left, &other->left)
135 || diff_ranges_touch(&cc->right, &other->right);
140 const struct diff_chunk_context *other)
142 diff_ranges_merge(&cc->chunk, &other->chunk);
143 diff_ranges_merge(&cc->left, &other->left);
144 diff_ranges_merge(&cc->right, &other->right);
130 diff_chunk_contexts_touch(const struct diff_chunk_context *cc, const struct diff_chunk_context *other) argument
139 diff_chunk_contexts_merge(struct diff_chunk_context *cc, const struct diff_chunk_context *other) argument
/freebsd-current/contrib/llvm-project/clang/lib/AST/
H A DTypeLoc.cpp168 void TypeLoc::copy(TypeLoc other) { argument
169 assert(getFullDataSize() == other.getFullDataSize());
177 reinterpret_cast<uintptr_t>(other.Data) ==
178 llvm::alignTo(reinterpret_cast<uintptr_t>(other.Data),
180 memcpy(Data, other.Data, getFullDataSize());
187 TypeLocCopier(other).Visit(TL);
188 other = other.getNextTypeLoc();
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Utility/
H A DFileSpec.h79 bool DirectoryEquals(const FileSpec &other) const;
81 bool FileEquals(const FileSpec &other) const;
196 /// the system which produced it. On other paths the result of this function
457 /// Any other value is considered an invalid format string.
/freebsd-current/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCCodeView.h149 CodeViewContext &operator=(const CodeViewContext &other) = delete; member in class:llvm::CodeViewContext
150 CodeViewContext(const CodeViewContext &other) = delete; member in class:llvm::CodeViewContext
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_chained_origin_depot.cpp136 u32 ChainedOriginDepot::Get(u32 id, u32 *other) { argument
138 *other = desc.prev_id;
/freebsd-current/contrib/kyua/utils/config/
H A Dnodes.hpp12 // documentation and/or other materials provided with the distribution.
71 /// \param other The node to combine with.
76 virtual base_node* combine(const tree_key& key, const base_node* other)
/freebsd-current/contrib/googletest/googletest/include/gtest/
H A Dgtest-death-test.h12 // in the documentation and/or other materials provided with the
111 // On other platforms (e.g. Windows or Mac), we only support a simple regex
199 void operator=(const ExitedWithCode& other) = delete; member in class:testing::ExitedWithCode
/freebsd-current/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZMachineScheduler.h54 bool operator<(const Candidate &other);
/freebsd-current/contrib/llvm-project/libcxx/src/include/
H A Dsso_allocator.h47 using other = __sso_allocator<U, _Np>;
/freebsd-current/contrib/llvm-project/lldb/bindings/interface/
H A DSBTypeCategoryExtensions.i8 def __eq__(self, other):
9 return not self.__ne__(other)
H A DSBFrameExtensions.i8 def __eq__(self, other):
9 return not self.__ne__(other)
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ADT/
H A DIntrusiveRefCntPtr.h208 void swap(IntrusiveRefCntPtr &other) { argument
209 T *tmp = other.Obj;
210 other.Obj = Obj;
291 // Make IntrusiveRefCntPtr work with dyn_cast, isa, and the other idioms from
/freebsd-current/crypto/openssl/crypto/cms/
H A Dcms_local.h65 ASN1_TYPE *other; member in union:CMS_ContentInfo_st::__anon22
215 CMS_OtherKeyAttribute *other; member in struct:CMS_RecipientKeyIdentifier_st
232 CMS_OtherKeyAttribute *other; member in struct:CMS_KEKIdentifier_st
297 CMS_OtherRevocationInfoFormat *other; member in union:CMS_RevocationInfoChoice_st::__anon27
316 CMS_OtherCertificateFormat *other; member in union:CMS_CertificateChoices::__anon28
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_stats.cpp96 statistic &statistic::operator+=(const statistic &other) { argument
97 if (other.sampleCount == 0)
101 *this = other;
105 uint64_t newSampleCount = sampleCount + other.sampleCount;
109 double dosc = double(other.sampleCount);
110 double delta = other.meanVal - meanVal;
118 meanVal = meanVal * dscBydnsc + other.meanVal * (1 - dscBydnsc);
119 m2 = m2 + other.m2 + dscBydnsc * dosc * delta * delta;
120 minVal = std::min(minVal, other.minVal);
121 maxVal = std::max(maxVal, other
[all...]
/freebsd-current/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.h834 bool operator==(FPOptions other) const { return Value == other.Value; }
954 bool operator==(FPOptionsOverride other) const {
955 return Options == other.Options && OverrideMask == other.OverrideMask;
957 bool operator!=(FPOptionsOverride other) const { return !(*this == other); }
/freebsd-current/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_descriptions.cpp338 const GlobalAddressDescription &other) const {
339 if (size == 0 || other.size == 0) return false;
343 for (uptr j = 0; j < other.size; j++) {
344 const __asan_global &b = other.globals[j];
347 b.beg <= other.addr &&
349 (other.addr + other.access_size) < (b.beg + b.size))
/freebsd-current/contrib/llvm-project/lldb/source/Utility/
H A DArchSpec.cpp809 void ArchSpec::MergeFrom(const ArchSpec &other) { argument
813 other.GetTriple().getOS() == llvm::Triple::IOS &&
814 other.GetTriple().getEnvironment() == llvm::Triple::MacABI) {
815 (*this) = other;
819 if (!TripleVendorWasSpecified() && other.TripleVendorWasSpecified())
820 GetTriple().setVendor(other.GetTriple().getVendor());
821 if (!TripleOSWasSpecified() && other.TripleOSWasSpecified())
822 GetTriple().setOS(other.GetTriple().getOS());
824 GetTriple().setArch(other.GetTriple().getArch());
829 if (other
1424 PiecewiseTripleCompare( const ArchSpec &other, bool &arch_different, bool &vendor_different, bool &os_different, bool &os_version_different, bool &env_different) const argument
[all...]
/freebsd-current/lib/libifconfig/
H A Dsfp.lua15 * documentation and/or other materials provided with the distribution.
39 -- ancillary metadata for generating other related code.
57 -- could be added to the other enums.
/freebsd-current/share/mk/
H A Dbsd.test.mk5 # tests are to be built. All other *.test.mk files are internal and not
29 # In other words: list here any directories that contain test programs but use
67 # Include atf last to let other test framework use it
/freebsd-current/contrib/bmake/unit-tests/
H A Dcond-func.mk7 # The other functions would work equally well, except for 'empty', which
8 # parses its argument differently from the other functions.
81 # they are typically omitted for the other functions as well.
/freebsd-current/contrib/llvm-project/libcxx/src/
H A Dmemory_resource.cpp58 bool do_is_equal(const memory_resource& other) const noexcept override { return &other == this; }
66 bool do_is_equal(const memory_resource& other) const noexcept override { return &other == this; }
411 bool synchronized_pool_resource::do_is_equal(const memory_resource& other) const noexcept { return &other == this; }
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompilerType.h75 bool operator==(const TypeSystemSPWrapper &other) const;
76 bool operator!=(const TypeSystemSPWrapper &other) const {
77 return !(*this == other);
/freebsd-current/sys/dev/sound/pci/
H A Dals4000.c14 * documentation and/or other materials provided with the distribution.
246 struct sc_chinfo *ch = data, *other; local
249 other = (ch->dir == PCMDIR_PLAY) ? &sc->rch : &sc->pch;
251 /* Deny request if other dma channel is active */
252 if (other->dma_active) {
253 ch->speed = other->speed;
254 return other->speed;
298 struct sc_chinfo *other; local
300 other = (ch->dir == PCMDIR_PLAY) ? &sc->rch : &sc->pch;
301 if (other
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DLiveInterval.h76 /// PHI-defs begin at a block boundary, all other defs begin at register or
448 bool overlaps(const LiveRange &other) const {
449 if (other.empty())
451 return overlapsFrom(other, other.begin());
506 /// join - Join two live ranges (this, and other) together. This applies
600 bool operator<(const LiveRange& other) const {
602 const SlotIndex &otherIndex = other.beginIndex();
877 bool operator<(const LiveInterval& other) const {
879 const SlotIndex &otherIndex = other
[all...]
/freebsd-current/contrib/atf/atf-c++/
H A Dpkg_config_test.sh11 # documentation and/or other materials provided with the distribution.
105 pkg-config --libs-only-L --libs-only-other atf-c++

Completed in 483 milliseconds

1234567891011>>