/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
H A D | ELF.h | 37 // Subclasses of ELFFile may need this for template instantiation 59 // To make this helper be more convenient for error reporting purposes we in getSecIndexForError() 60 // drop the error. But really it should never be triggered. Before this point, in getSecIndexForError() 240 Err = createError("SHT_NOTE section " + getSecIndexForError(this, &Shdr) + in notes_begin() 384 getSecIndexForError(this, Sec) + in getSymbol() 394 return createError("section " + getSecIndexForError(this, Sec) + in getSectionContentsAsArray() 401 return createError("section " + getSecIndexForError(this, Sec) + in getSectionContentsAsArray() 406 return createError("section " + getSecIndexForError(this, Sec) + in getSectionContentsAsArray() 411 return createError("section " + getSecIndexForError(this, Sec) + in getSectionContentsAsArray() 418 // TODO: this erro in getSectionContentsAsArray() [all...] |
/third_party/skia/src/core/ |
H A D | SkVM.h | 4 * Use of this source code is governed by a BSD-style license that can be 176 void vcmpeqps (Ymm dst, Ymm x, Operand y) { this->vcmpps(dst,x,y,0); } in vcmpeqps() 177 void vcmpltps (Ymm dst, Ymm x, Operand y) { this->vcmpps(dst,x,y,1); } in vcmpltps() 178 void vcmpleps (Ymm dst, Ymm x, Operand y) { this->vcmpps(dst,x,y,2); } in vcmpleps() 179 void vcmpneqps(Ymm dst, Ymm x, Operand y) { this->vcmpps(dst,x,y,4); } in vcmpneqps() 268 void add (GP64 dst, GP64 x) { this->add (Operand(dst), x); } in add() 269 void sub (GP64 dst, GP64 x) { this->sub (Operand(dst), x); } in sub() 270 void cmp (GP64 dst, GP64 x) { this->cmp (Operand(dst), x); } in cmp() 271 void mov (GP64 dst, GP64 x) { this->mov (Operand(dst), x); } in mov() 272 void movb(GP64 dst, GP64 x) { this in mov() [all...] |
H A D | SkMD5.h | 4 * Use of this source code is governed by a BSD-style license that can be 14 /* Calculate a 128-bit MD5 message-digest of the bytes sent to this stream. */ 20 Calling this after finish is undefined. */ 23 size_t bytesWritten() const final { return SkToSizeT(this->byteCount); } 30 bool operator !=(Digest const& other) const { return !(*this == other); } in operator !=()
|
/third_party/node/src/ |
H A D | timer_wrap-inl.h | 19 timer_.data = this; in TimerWrap() 25 env->AddCleanupHook(CleanupHook, this); in TimerWrapHandle()
|
H A D | js_native_api_v8.h | 30 next_->prev_ = this; in Link() 32 list->next_ = this; in Link() 92 jsvm_clear_last_error(this); in JSVM_Env__() 108 }, this); in RequestInterrupt() 137 return this->isolate->IsExecutionTerminating() || !can_call_into_js(); in terminatedOrTerminating() 147 jsvm_clear_last_error(this); in CallIntoModule() 148 call(this); in CallIntoModule() 152 handle_exception(this, last_exception.Get(this->isolate)); in CallIntoModule() 175 // The finalizer can be deleted after this cal [all...] |
/third_party/skia/src/gpu/ |
H A D | GrResourceHandle.h | 4 * Use of this source code is governed by a BSD-style license that can be 18 SkASSERT(this->isValid()); in GrResourceHandle() 25 int toIndex() const { SkASSERT(this->isValid()); return fValue; } in toIndex()
|
H A D | GrTextureProxyPriv.h | 4 * Use of this source code is governed by a BSD-style license that can be 24 // For a deferred proxy (one that has a deferred uploader attached), this schedules an ASAP 37 // No taking addresses of this type. 43 friend class GrTextureProxy; // to construct/copy this type. 46 inline GrTextureProxyPriv GrTextureProxy::texPriv() { return GrTextureProxyPriv(this); } in texPriv() 49 return GrTextureProxyPriv(const_cast<GrTextureProxy*>(this)); in texPriv()
|
H A D | GrResourceProviderPriv.h | 4 * Use of this source code is governed by a BSD-style license that can be 26 // No taking addresses of this type. 31 friend class GrResourceProvider; // to construct/copy this type 34 inline GrResourceProviderPriv GrResourceProvider::priv() { return GrResourceProviderPriv(this); } in priv() 37 return GrResourceProviderPriv(const_cast<GrResourceProvider*>(this)); in priv()
|
H A D | GrTextureProxyCacheAccess.h | 4 * Use of this source code is governed by a BSD-style license that can be 31 // No taking addresses of this type. 37 friend class GrTextureProxy; // to construct/copy this type. 38 friend class GrProxyProvider; // to use this type 41 inline GrTextureProxy::CacheAccess GrTextureProxy::cacheAccess() { return CacheAccess(this); } in cacheAccess() 44 return CacheAccess(const_cast<GrTextureProxy*>(this)); in cacheAccess()
|
/third_party/skia/third_party/externals/oboe/apps/fxlab/app/src/main/cpp/effects/ |
H A D | DriveControl.h | 5 * you may not use this file except in compliance with the License. 31 std::for_each(beg, end, [this](auto &x){x *= kScale;}); in operator ()() 33 std::for_each(beg, end, [this](auto &x){x *= recip;}); in operator ()()
|
/third_party/skia/src/sksl/ir/ |
H A D | SkSLExternalFunctionReference.h | 4 * Use of this source code is governed by a BSD-style license that can be 38 return String(this->function().name()); 42 return std::make_unique<ExternalFunctionReference>(fLine, &this->function());
|
H A D | SkSLField.h | 4 * Use of this source code is governed by a BSD-style license that can be 20 * whenever a bare reference to an identifier should refer to a struct field; in GLSL, this is the 42 return this->owner().description() + "." + this->name();
|
H A D | SkSLFunctionPrototype.h | 4 * Use of this source code is governed by a BSD-style license that can be 40 return std::make_unique<FunctionPrototype>(fLine, &this->declaration(), /*builtin=*/false); 44 return this->declaration().description() + ";";
|
H A D | SkSLConstructorCompound.h | 4 * Use of this source code is governed by a BSD-style license that can be 40 return std::make_unique<ConstructorCompound>(fLine, this->type(), this->cloneArguments());
|
H A D | SkSLExtension.h | 4 * Use of this source code is governed by a BSD-style license that can be 31 return std::unique_ptr<ProgramElement>(new Extension(fLine, this->name())); 35 return "#extension " + this->name() + " : enable";
|
H A D | SkSLInlineMarker.h | 4 * Use of this source code is governed by a BSD-style license that can be 42 return String("/* inlined: ") + this->function().name() + String(" */"); 46 return std::make_unique<InlineMarker>(&this->function());
|
H A D | SkSLModifiersDeclaration.h | 4 * Use of this source code is governed by a BSD-style license that can be 34 return std::make_unique<ModifiersDeclaration>(&this->modifiers()); 38 return this->modifiers().description() + ";";
|
/third_party/skia/src/utils/ |
H A D | SkCharToGlyphCache.h | 4 * Use of this source code is governed by a BSD-style license that can be 48 int index = this->findGlyphIndex(unichar); in addCharAndGlyph() 52 this->insertCharAndGlyph(~index, unichar, glyph); in addCharAndGlyph()
|
/third_party/skia/src/sksl/lex/ |
H A D | NFA.h | 4 * Use of this source code is governed by a BSD-style license that can be 20 * Adds a new regular expression to the set of expressions matched by this automaton, returning 25 // we reserve token 0 for END_OF_FILE, so this starts at 1 in addRegex() 26 accept.push_back(this->addState(NFAState(++fRegexCount))); in addRegex() 27 std::vector<int> startStates = regex.createStates(this, accept); in addRegex() 41 * Matches a string against all of the regexes added to this NFA. Returns the index of the first
|
/third_party/skia/third_party/externals/tint/src/reader/spirv/ |
H A D | fail_stream.h | 4 // you may not use this file except in compliance with the License. 53 return *this; in Fail() 58 /// @returns this object 62 return *this; in operator <<()
|
/third_party/skia/experimental/graphite/src/ |
H A D | ContextPriv.h | 4 * Use of this source code is governed by a BSD-style license that can be 29 friend class Context; // to construct/copy this type. 37 // No taking addresses of this type. 44 inline ContextPriv Context::priv() { return ContextPriv(this); } in priv() 48 return ContextPriv(const_cast<Context *>(this)); in priv()
|
/third_party/skia/include/private/ |
H A D | SkSemaphore.h | 4 * Use of this source code is governed by a BSD-style license that can be 29 // then if the counter is < 0, sleep this thread until the counter is >= 0. 69 this->osSignal(toSignal); in signal() 74 // Since this fetches the value before the subtract, zero and below means that there are no in wait() 78 this->osWait(); in wait()
|
/third_party/skia/modules/svg/include/ |
H A D | SkSVGFeBlend.h | 4 * Use of this source code is governed by a BSD-style license that can be 34 return {this->getIn(), this->getIn2()};
|
/kernel/linux/linux-5.10/drivers/cpufreq/ |
H A D | Kconfig.x86 | 18 When this driver is enabled it will become the preferred 32 To compile this driver as a module, choose M here: the 46 To compile this driver as a module, choose M here: the 62 By enabling this option the acpi_cpufreq driver provides the old 136 To compile this driver as a module, choose M here: the 174 This is deprecated and this functionality is now merged into 181 To compile this driver as a module, choose M here: the 235 To compile this driver as a module, choose M here: the 280 This adds the CPUFreq driver for VIA C7 processors. However, this driver
|
/kernel/linux/linux-5.10/kernel/dma/ |
H A D | mapping.c | 31 struct dma_devres *this = res; in dmam_release() local 33 dma_free_attrs(dev, this->size, this->vaddr, this->dma_handle, in dmam_release() 34 this->attrs); in dmam_release() 39 struct dma_devres *this = res, *match = match_data; in dmam_match() local 41 if (this->vaddr == match->vaddr) { in dmam_match() 42 WARN_ON(this->size != match->size || in dmam_match() 43 this->dma_handle != match->dma_handle); in dmam_match() 76 * Managed dma_alloc_attrs(). Memory allocated using this functio [all...] |