Home
last modified time | relevance | path

Searched refs:that (Results 1 – 25 of 8645) sorted by relevance

12345678910>>...346

/third_party/skia/include/gpu/vk/
DGrVkTypes.h42 bool operator==(const GrVkAlloc& that) const {
43 return fMemory == that.fMemory && fOffset == that.fOffset && fSize == that.fSize &&
44 fFlags == that.fFlags && fUsesSystemHeap == that.fUsesSystemHeap;
55 bool operator==(const GrVkYcbcrConversionInfo& that) const {
57 if (!this->isValid() && !that.isValid()) {
60 return this->fFormat == that.fFormat &&
61 this->fExternalFormat == that.fExternalFormat &&
62 this->fYcbcrModel == that.fYcbcrModel &&
63 this->fYcbcrRange == that.fYcbcrRange &&
64 this->fXChromaOffset == that.fXChromaOffset &&
[all …]
/third_party/flutter/engine/flutter/fml/platform/darwin/
Dscoped_nsobject.h45 scoped_nsprotocol(const scoped_nsprotocol<NST>& that) : object_([that.object_ retain]) {} in scoped_nsprotocol() argument
48 scoped_nsprotocol(const scoped_nsprotocol<NSU>& that) : object_([that.get() retain]) {} in scoped_nsprotocol() argument
52 scoped_nsprotocol& operator=(const scoped_nsprotocol<NST>& that) {
53 reset([that.get() retain]);
66 bool operator==(NST that) const { return object_ == that; }
67 bool operator!=(NST that) const { return object_ != that; }
73 void swap(scoped_nsprotocol& that) { in swap() argument
74 NST temp = that.object_; in swap()
75 that.object_ = object_; in swap()
116 scoped_nsobject(const scoped_nsobject<NST>& that) : scoped_nsprotocol<NST*>(that) {} in scoped_nsobject() argument
[all …]
/third_party/flutter/skia/third_party/externals/spirv-tools/source/opt/
Dtypes.cpp76 bool Type::HasSameDecorations(const Type* that) const { in HasSameDecorations()
77 return CompareTwoVectors(decorations_, that->decorations_); in HasSameDecorations()
80 bool Integer::IsSame(Type* that) const { in IsSame()
81 const Integer* it = that->AsInteger(); in IsSame()
83 HasSameDecorations(that); in IsSame()
92 bool Float::IsSame(Type* that) const { in IsSame()
93 const Float* ft = that->AsFloat(); in IsSame()
94 return ft && width_ == ft->width_ && HasSameDecorations(that); in IsSame()
108 bool Vector::IsSame(Type* that) const { in IsSame()
109 const Vector* vt = that->AsVector(); in IsSame()
[all …]
/third_party/flutter/skia/include/gpu/vk/
DGrVkTypes.h56 bool operator==(const GrVkAlloc& that) const {
57 return fMemory == that.fMemory && fOffset == that.fOffset && fSize == that.fSize &&
58 fFlags == that.fFlags && fUsesSystemHeap == that.fUsesSystemHeap;
114 bool operator==(const GrVkYcbcrConversionInfo& that) const {
116 if (!this->isValid() && !that.isValid()) {
119 return this->fFormat == that.fFormat &&
120 this->fExternalFormat == that.fExternalFormat &&
121 this->fYcbcrModel == that.fYcbcrModel &&
122 this->fYcbcrRange == that.fYcbcrRange &&
123 this->fXChromaOffset == that.fXChromaOffset &&
[all …]
/third_party/skia/include/private/
DSkTArray.h56 SkTArray(const SkTArray& that) in SkTArray() argument
57 : SkTArray(that.fItemArray, that.fCount) {} in SkTArray()
59 SkTArray(SkTArray&& that) { in SkTArray() argument
60 if (that.fOwnMemory) { in SkTArray()
61 fItemArray = that.fItemArray; in SkTArray()
62 fCount = that.fCount; in SkTArray()
63 fAllocCount = that.fAllocCount; in SkTArray()
65 fReserved = that.fReserved; in SkTArray()
67 that.fItemArray = nullptr; in SkTArray()
68 that.fCount = 0; in SkTArray()
[all …]
DSkTHash.h32 SkTHashTable(const SkTHashTable& that) { *this = that; } in SkTHashTable() argument
33 SkTHashTable( SkTHashTable&& that) { *this = std::move(that); } in SkTHashTable() argument
35 SkTHashTable& operator=(const SkTHashTable& that) {
36 if (this != &that) {
37 fCount = that.fCount;
38 fCapacity = that.fCapacity;
39 fSlots.reset(that.fCapacity);
41 fSlots[i] = that.fSlots[i];
47 SkTHashTable& operator=(SkTHashTable&& that) {
48 if (this != &that) {
[all …]
DGrResourceKey.h88 bool operator==(const GrResourceKey& that) const {
91 return 0 == memcmp(fKey.get(), that.fKey.get(), kMetaDataCnt*sizeof(uint32_t)) &&
92 0 == memcmp(&fKey[kMetaDataCnt], &that.fKey[kMetaDataCnt], this->dataSize());
95 GrResourceKey& operator=(const GrResourceKey& that) {
96 if (this != &that) {
97 if (!that.isValid()) {
100 size_t bytes = that.size();
103 memcpy(fKey.get(), that.fKey.get(), bytes);
201 GrScratchKey(const GrScratchKey& that) { *this = that; } in GrScratchKey() argument
210 GrScratchKey& operator=(const GrScratchKey& that) {
[all …]
/third_party/flutter/skia/src/core/
DSkTLazy.h24 SkTLazy(const SkTLazy& that) : fPtr(that.fPtr ? new (&fStorage) T(*that.fPtr) : nullptr) {} in SkTLazy() argument
25 SkTLazy(SkTLazy&& that) : fPtr(that.fPtr ? new (&fStorage) T(std::move(*that.fPtr)) : nullptr){} in SkTLazy() argument
29 SkTLazy& operator=(const SkTLazy& that) {
30 if (that.isValid()) {
31 this->set(*that);
38 SkTLazy& operator=(SkTLazy&& that) {
39 if (that.isValid()) {
40 this->set(std::move(*that));
151 SkTCopyOnFirstWrite(const SkTCopyOnFirstWrite& that) { *this = that; } in SkTCopyOnFirstWrite() argument
152 SkTCopyOnFirstWrite( SkTCopyOnFirstWrite&& that) { *this = std::move(that); } in SkTCopyOnFirstWrite() argument
[all …]
/third_party/skia/include/core/
DSkFontMetrics.h18 bool operator==(const SkFontMetrics& that) {
20 this->fFlags == that.fFlags &&
21 this->fTop == that.fTop &&
22 this->fAscent == that.fAscent &&
23 this->fDescent == that.fDescent &&
24 this->fBottom == that.fBottom &&
25 this->fLeading == that.fLeading &&
26 this->fAvgCharWidth == that.fAvgCharWidth &&
27 this->fMaxCharWidth == that.fMaxCharWidth &&
28 this->fXMin == that.fXMin &&
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
Dtracked.h36 Tracked(const Tracked& that) in Tracked() argument
37 : val_(that.val_), in Tracked()
38 num_moves_(that.num_moves_), in Tracked()
39 num_copies_(that.num_copies_) { in Tracked()
42 Tracked(Tracked&& that) in Tracked() argument
43 : val_(std::move(that.val_)), in Tracked()
44 num_moves_(std::move(that.num_moves_)), in Tracked()
45 num_copies_(std::move(that.num_copies_)) { in Tracked()
48 Tracked& operator=(const Tracked& that) {
49 val_ = that.val_;
[all …]
/third_party/skia/src/core/
DSkTLazy.h24 SkTLazy(const SkTLazy& that) : fPtr(that.fPtr ? new (&fStorage) T(*that.fPtr) : nullptr) {} in SkTLazy() argument
25 SkTLazy(SkTLazy&& that) : fPtr(that.fPtr ? new (&fStorage) T(std::move(*that.fPtr)) : nullptr){} in SkTLazy() argument
29 SkTLazy& operator=(const SkTLazy& that) {
30 if (that.isValid()) {
31 this->set(*that);
38 SkTLazy& operator=(SkTLazy&& that) {
39 if (that.isValid()) {
40 this->set(std::move(*that));
151 SkTCopyOnFirstWrite(const SkTCopyOnFirstWrite& that) { *this = that; } in SkTCopyOnFirstWrite() argument
152 SkTCopyOnFirstWrite( SkTCopyOnFirstWrite&& that) { *this = std::move(that); } in SkTCopyOnFirstWrite() argument
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DTimeValue.h127 TimeValue& operator += (const TimeValue& that ) {
128 this->seconds_ += that.seconds_ ;
129 this->nanos_ += that.nanos_ ;
137 TimeValue& operator -= (const TimeValue &that ) {
138 this->seconds_ -= that.seconds_ ;
139 this->nanos_ -= that.nanos_ ;
147 int operator < (const TimeValue &that) const { return that > *this; }
152 int operator > (const TimeValue &that) const {
153 if ( this->seconds_ > that.seconds_ ) {
155 } else if ( this->seconds_ == that.seconds_ ) {
[all …]
/third_party/ltp/testcases/network/stress/broken_ip/
D00_Descriptions.txt2 Verify that the kernel is not crashed with receiving a large number of
3 IPv4 packets that have wrong value in version field
6 Verify that the kernel is not crashed with receiving a large number of
7 IPv4 packets that have wrong value in the header length field
10 Verify that the kernel is not crashed with receiving a large number of
11 IPv4 packets that have wrong value in the total length field
14 Verify that the kernel is not crashed with receiving a large number of
15 IPv4 packets that have wrong fragment information
18 Verify that the kernel is not crashed with receiving a large number of
19 IPv4 packets that have wrong value in the protocol field
[all …]
/third_party/flutter/skia/src/gpu/
DGrBackendSurface.cpp28 GrBackendFormat::GrBackendFormat(const GrBackendFormat& that) in GrBackendFormat() argument
29 : fBackend(that.fBackend) in GrBackendFormat()
30 , fValid(that.fValid) in GrBackendFormat()
31 , fTextureType(that.fTextureType) { in GrBackendFormat()
39 fGLFormat = that.fGLFormat; in GrBackendFormat()
44 fVk = that.fVk; in GrBackendFormat()
49 fMtlFormat = that.fMtlFormat; in GrBackendFormat()
54 fDawnFormat = that.fDawnFormat; in GrBackendFormat()
58 fMockColorType = that.fMockColorType; in GrBackendFormat()
194 bool GrBackendFormat::operator==(const GrBackendFormat& that) const { in operator ==()
[all …]
DGrAppliedClip.h25 GrAppliedHardClip(GrAppliedHardClip&& that) = default;
61 bool operator==(const GrAppliedHardClip& that) const {
62 return fScissorState == that.fScissorState &&
63 fWindowRectsState == that.fWindowRectsState &&
64 fStencilStackID == that.fStencilStackID;
66 bool operator!=(const GrAppliedHardClip& that) const { return !(*this == that); }
80 GrAppliedClip(GrAppliedClip&& that) = default;
108 bool operator==(const GrAppliedClip& that) const {
109 if (fHardClip != that.fHardClip ||
110 fClipCoverageFPs.count() != that.fClipCoverageFPs.count()) {
[all …]
/third_party/skia/src/gpu/
DGrRefCnt.h49 gr_sp(const gr_sp& that) : fPtr(SafeRef(that.get())) {} in gr_sp() argument
54 gr_sp(const gr_sp<U, URefBase, UUnrefBase, Ref, Unref>& that) : fPtr(SafeRef(that.get())) {} in gr_sp() argument
56 gr_sp(const sk_sp<T>& that) : fPtr(SafeRef(that.get())) {} in gr_sp() argument
64 gr_sp(gr_sp&& that) : fPtr(that.release()) {} in gr_sp() argument
70 gr_sp(sk_sp<T>&& that) : fPtr(SafeRef(that.get())) {} in gr_sp() argument
95 gr_sp& operator=(const gr_sp& that) {
96 if (this != &that) {
97 this->reset(SafeRef(that.get()));
107 gr_sp& operator=(const sk_sp<T>& that) {
108 this->reset(SafeRef(that.get()));
[all …]
DGrDrawIndirectCommand.h44 GrDrawIndirectWriter(GrDrawIndirectWriter&& that) { *this = std::move(that); } in GrDrawIndirectWriter()
47 GrDrawIndirectWriter& operator=(GrDrawIndirectWriter&& that) {
48 fData = that.fData;
49 that.fData = nullptr;
53 bool operator==(const GrDrawIndirectWriter& that) { return fData == that.fData; }
79 GrDrawIndexedIndirectWriter(GrDrawIndexedIndirectWriter&& that) { *this = std::move(that); } in GrDrawIndexedIndirectWriter()
82 GrDrawIndexedIndirectWriter& operator=(GrDrawIndexedIndirectWriter&& that) {
83 fData = that.fData;
84 that.fData = nullptr;
88 bool operator==(const GrDrawIndexedIndirectWriter& that) { return fData == that.fData; }
DGrBackendSurface.cpp34 GrBackendFormat::GrBackendFormat(const GrBackendFormat& that) in GrBackendFormat() argument
35 : fBackend(that.fBackend) in GrBackendFormat()
36 , fValid(that.fValid) in GrBackendFormat()
37 , fTextureType(that.fTextureType) { in GrBackendFormat()
45 fGLFormat = that.fGLFormat; in GrBackendFormat()
50 fVk = that.fVk; in GrBackendFormat()
55 fMtlFormat = that.fMtlFormat; in GrBackendFormat()
60 fDxgiFormat = that.fDxgiFormat; in GrBackendFormat()
65 fDawnFormat = that.fDawnFormat; in GrBackendFormat()
69 fMock = that.fMock; in GrBackendFormat()
[all …]
DGrBackendSemaphore.cpp38 GrBackendSemaphore::GrBackendSemaphore(const GrBackendSemaphore& that) { in GrBackendSemaphore() argument
40 *this = that; in GrBackendSemaphore()
43 GrBackendSemaphore& GrBackendSemaphore::operator=(const GrBackendSemaphore& that) { in operator =() argument
44 SkASSERT(!fIsInitialized || fBackend == that.fBackend); in operator =()
45 fBackend = that.fBackend; in operator =()
46 switch (that.fBackend) { in operator =()
49 fGLSync = that.fGLSync; in operator =()
54 fVkSemaphore = that.fVkSemaphore; in operator =()
59 fMtlEvent = that.fMtlEvent; in operator =()
60 fMtlValue = that.fMtlValue; in operator =()
[all …]
/third_party/cef/include/base/
Dcef_scoped_typeref_mac.h99 ScopedTypeRef(const ScopedTypeRef<T, Traits>& that) in ScopedTypeRef() argument
100 : object_(that.object_) { in ScopedTypeRef()
113 ScopedTypeRef(ScopedTypeRef<T, Traits>&& that) : object_(that.object_) { in ScopedTypeRef() argument
114 that.object_ = Traits::InvalidValue(); in ScopedTypeRef()
122 ScopedTypeRef& operator=(const ScopedTypeRef<T, Traits>& that) {
123 reset(that.get(), base::scoped_policy::RETAIN);
135 void reset(const ScopedTypeRef<T, Traits>& that) { in reset() argument
136 reset(that.get(), base::scoped_policy::RETAIN); in reset()
149 bool operator==(const element_type& that) const { return object_ == that; }
151 bool operator!=(const element_type& that) const { return object_ != that; }
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
DSystemZFeatures.td36 "Assume that the distinct-operands facility is installed"
41 "Assume that the fast-serialization facility is installed"
46 "Assume that the floating-point extension facility is installed"
51 "Assume that the high-word facility is installed"
56 "Assume that interlocked-access facility 1 is installed"
62 "Assume that the load/store-on-condition facility is installed"
68 "Assume that the population-count facility is installed"
73 "Assume that the message-security-assist extension facility 3 is installed"
78 "Assume that the message-security-assist extension facility 4 is installed"
83 "Assume that the reset-reference-bits-multiple facility is installed"
[all …]
/third_party/vk-gl-cts/external/vulkancts/data/vulkan/amber/graphicsfuzz/
Dindex.txt1 …, "access-new-vector-inside-if-condition", "A shader that accesses a new vect…
7 … "assign-array-value-to-another-array", "A fragment shader that assigns array value…
8 … "assign-array-value-to-another-array-2", "A fragment shader that assigns array value…
14 …, "color-write-in-loop", "A fragment shader that writes to color in …
22 … "cov-analysis-reachable-from-many", "A fragment shader that covers a specific L…
23 … "cov-and-even-numbers-from-fragcoord", "A fragment shader that covers specific NIR…
24 … "cov-apfloat-acos-ldexp", "A fragment shader that covers a specific A…
25 … "cov-apfloat-determinant", "A fragment shader that covers a specific a…
26 …, "cov-apfloat-mix-nan", "A fragment shader that covers a specific f…
27 … "cov-apfloat-mod-zero", "A fragment shader that covers a specific f…
[all …]
/third_party/flutter/skia/include/private/
DGrResourceKey.h52 bool operator==(const GrResourceKey& that) const {
53 return this->hash() == that.hash() && 0 == memcmp(&fKey[kHash_MetaDataIdx + 1],
54 &that.fKey[kHash_MetaDataIdx + 1],
58 GrResourceKey& operator=(const GrResourceKey& that) {
59 if (this != &that) {
60 if (!that.isValid()) {
63 size_t bytes = that.size();
66 memcpy(fKey.get(), that.fKey.get(), bytes);
200 GrScratchKey(const GrScratchKey& that) { *this = that; } in GrScratchKey() argument
209 GrScratchKey& operator=(const GrScratchKey& that) {
[all …]
/third_party/flutter/skia/experimental/editor/
Dstringslice.cpp15 StringSlice::StringSlice(StringSlice&& that) in StringSlice() argument
16 : fPtr(std::move(that.fPtr)) in StringSlice()
17 , fLength(that.fLength) in StringSlice()
18 , fCapacity(that.fCapacity) in StringSlice()
20 that.fLength = 0; in StringSlice()
21 that.fCapacity = 0; in StringSlice()
24 StringSlice& StringSlice::operator=(StringSlice&& that) { in operator =() argument
25 if (this != &that) { in operator =()
27 new (this)StringSlice(std::move(that)); in operator =()
32 StringSlice& StringSlice::operator=(const StringSlice& that) { in operator =() argument
[all …]
/third_party/skia/modules/skplaintexteditor/src/
Dstringslice.cpp15 StringSlice::StringSlice(StringSlice&& that) in StringSlice() argument
16 : fPtr(std::move(that.fPtr)) in StringSlice()
17 , fLength(that.fLength) in StringSlice()
18 , fCapacity(that.fCapacity) in StringSlice()
20 that.fLength = 0; in StringSlice()
21 that.fCapacity = 0; in StringSlice()
24 StringSlice& StringSlice::operator=(StringSlice&& that) { in operator =() argument
25 if (this != &that) { in operator =()
27 new (this)StringSlice(std::move(that)); in operator =()
32 StringSlice& StringSlice::operator=(const StringSlice& that) { in operator =() argument
[all …]

12345678910>>...346