Home
last modified time | relevance | path

Searched refs:source_ (Results 1 – 25 of 45) sorted by relevance

12

/third_party/vk-gl-cts/framework/opengl/
DgluShaderProgram.hpp277 …derType shaderType_, const std::string& source_) : shaderType(shaderType_), source(source_) { DE_A… in ShaderSource()
282 VertexSource (const std::string& source_) : ShaderSource(glu::SHADERTYPE_VERTEX, source_) {} in VertexSource()
287 FragmentSource (const std::string& source_) : ShaderSource(glu::SHADERTYPE_FRAGMENT, source_) {} in FragmentSource()
292 GeometrySource (const std::string& source_) : ShaderSource(glu::SHADERTYPE_GEOMETRY, source_) {} in GeometrySource()
297 ComputeSource (const std::string& source_) : ShaderSource(glu::SHADERTYPE_COMPUTE, source_) {} in ComputeSource()
302 …ellationControlSource (const std::string& source_) : ShaderSource(glu::SHADERTYPE_TESSELLATION_CON… in TessellationControlSource()
307 …ionEvaluationSource (const std::string& source_) : ShaderSource(glu::SHADERTYPE_TESSELLATION_EVALU… in TessellationEvaluationSource()
312 RaygenSource(const std::string& source_) : ShaderSource(glu::SHADERTYPE_RAYGEN, source_) {} in RaygenSource()
317 AnyHitSource(const std::string& source_) : ShaderSource(glu::SHADERTYPE_ANY_HIT, source_) {} in AnyHitSource()
322 …ClosestHitSource(const std::string& source_) : ShaderSource(glu::SHADERTYPE_CLOSEST_HIT, source_) … in ClosestHitSource()
[all …]
/third_party/skia/third_party/externals/dawn/src/common/
DStackContainer.h75 : std::allocator<T>(), source_(rhs.source_) { in StackAllocator()
88 StackAllocator(const StackAllocator<U, other_capacity>& other) : source_(nullptr) { in StackAllocator()
95 StackAllocator() : source_(nullptr) { in StackAllocator()
98 explicit StackAllocator(Source* source) : source_(source) { in StackAllocator()
105 if (source_ && !source_->used_stack_buffer_ && n <= stack_capacity) { in allocate()
106 source_->used_stack_buffer_ = true; in allocate()
107 return source_->stack_buffer(); in allocate()
116 if (source_ && p == source_->stack_buffer()) in deallocate()
117 source_->used_stack_buffer_ = false; in deallocate()
123 Source* source_;
/third_party/node/deps/v8/src/snapshot/
Ddeserializer.cc244 source_(payload), in Deserializer()
276 if (source_.position() == 0) return; in ~Deserializer()
278 while (source_.HasMore()) DCHECK_EQ(kNop, source_.Get()); in ~Deserializer()
299 CHECK_EQ(expected, source_.Get()); in Synchronize()
304 for (int code = source_.Get(); code != kSynchronize; code = source_.Get()) { in DeserializeDeferredObjects()
592 Handle<HeapObject> obj = back_refs_[source_.GetInt()]; in GetBackReferencedObject()
607 source_.Get(), SlotAccessorForHandle<IsolateT>(&ret, isolate())), in ReadObject()
629 const int size_in_tagged = source_.GetInt(); in ReadObject()
777 SnapshotByteSource& source() { return deserializer_->source_; } in source()
912 byte data = source_.Get(); in ReadData()
[all …]
/third_party/node/deps/v8/src/parsing/
Dscanner.h247 source_->set_parser_error(); in set_parser_error()
252 source_->reset_parser_error_flag(); in reset_parser_error_flag()
255 return source_->has_parser_error(); in has_parser_error()
423 const Utf16CharacterStream* stream() const { return source_; } in stream()
532 c0_ = source_->Advance(); in Advance()
537 c0_ = source_->AdvanceUntil(check); in AdvanceUntil()
543 base::uc32 c1 = source_->Advance(); in CombineSurrogatePair()
549 source_->Back(); in CombineSurrogatePair()
557 source_->Back(); in PushBack()
561 base::uc32 Peek() const { return source_->Peek(); } in Peek()
[all …]
/third_party/skia/third_party/externals/freetype/src/base/
Dftbitmap.c799 const FT_Bitmap* source_, in FT_Bitmap_Blend() argument
825 if ( !library || !target || !source_ || !atarget_offset ) in FT_Bitmap_Blend()
835 if ( source_->pixel_mode == FT_PIXEL_MODE_NONE ) in FT_Bitmap_Blend()
840 ( source_->pitch ^ target->pitch ) < 0 ) in FT_Bitmap_Blend()
843 if ( !( source_->width && source_->rows ) ) in FT_Bitmap_Blend()
854 if ( FT_LONG_MIN + (FT_Pos)( source_->rows << 6 ) + 64 > source_offset.y ) in FT_Bitmap_Blend()
860 source_lly = source_offset.y - ( source_->rows << 6 ); in FT_Bitmap_Blend()
862 if ( FT_LONG_MAX - (FT_Pos)( source_->width << 6 ) - 64 < source_llx ) in FT_Bitmap_Blend()
868 source_urx = source_llx + ( source_->width << 6 ); in FT_Bitmap_Blend()
914 source_->width, source_->rows )); in FT_Bitmap_Blend()
[all …]
/third_party/protobuf/src/google/protobuf/stubs/
Dbytestream.cc162 : source_(source), in LimitByteSource()
167 size_t available = source_->Available(); in Available()
176 StringPiece piece(source_->Peek()); in Peek()
186 source_->Skip(n); in Skip()
192 source_->CopyTo(sink, n); in CopyTo()
/third_party/node/deps/v8/include/
Dv8-extension.h29 virtual ~Extension() { delete source_; } in ~Extension() local
38 return source_; in source()
52 String::ExternalOneByteStringResource* source_; variable
/third_party/node/src/
Dutil.cc524 : source_(source) {} in NonOwningExternalOneByteResource()
528 return reinterpret_cast<const char*>(source_.one_bytes_data()); in data()
530 size_t length() const override { return source_.length(); } in length()
538 const UnionBytes source_; member in node::__anon7cb432ad0311::NonOwningExternalOneByteResource
545 : source_(source) {} in NonOwningExternalTwoByteResource()
548 const uint16_t* data() const override { return source_.two_bytes_data(); } in data()
549 size_t length() const override { return source_.length(); } in length()
557 const UnionBytes source_; member in node::__anon7cb432ad0311::NonOwningExternalTwoByteResource
Dnode_builtins.cc58 auto source = source_.read(); in Exists()
63 auto result = source_.write()->emplace(id, source); in Add()
70 auto source = source_.read(); in GetSourceObject()
84 auto source = source_.read(); in GetBuiltinIds()
133 auto source = source_.read(); in GetBuiltinCategories()
187 auto source = source_.read(); in LoadBuiltinSource()
681 source_ = other->source_; in CopySourceAndCodeCacheReferenceFrom()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
Dir_loader.h47 void SetSource(const std::string& src) { source_ = src; } in SetSource()
76 std::string source_; variable
Dloop_dependence.h239 : Constraint(loop), source_(source), destination_(destination) {} in DependencePoint()
246 SENode* GetSource() const { return source_; } in GetSource()
250 SENode* source_;
/third_party/skia/third_party/externals/spirv-tools/source/opt/
Dir_loader.h47 void SetSource(const std::string& src) { source_ = src; } in SetSource()
76 std::string source_; variable
Dloop_dependence.h239 : Constraint(loop), source_(source), destination_(destination) {} in DependencePoint()
246 SENode* GetSource() const { return source_; } in GetSource()
250 SENode* source_;
/third_party/spirv-tools/source/opt/
Dir_loader.h47 void SetSource(const std::string& src) { source_ = src; } in SetSource()
76 std::string source_; variable
Dloop_dependence.h239 : Constraint(loop), source_(source), destination_(destination) {} in DependencePoint()
246 SENode* GetSource() const { return source_; } in GetSource()
250 SENode* source_;
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
DvkSpirVProgram.hpp77 SpirVAsmSource (const std::string& source_) in SpirVAsmSource()
78 : source(source_) in SpirVAsmSource()
/third_party/skia/third_party/externals/tint/src/reader/wgsl/
Dtoken.cc326 : type_(type), source_(source), val_str_(val) {} in Token()
329 : type_(Type::kUintLiteral), source_(source), val_uint_(val) {} in Token()
332 : type_(Type::kSintLiteral), source_(source), val_int_(val) {} in Token()
335 : type_(Type::kFloatLiteral), source_(source), val_float_(val) {} in Token()
Dtoken.h422 Source source() const { return source_; } in source()
447 Source source_; variable
/third_party/skia/third_party/externals/tint/src/
Dprogram_builder.h321 return ast_nodes_.Create<T>(id_, source_); in create()
339 return ast_nodes_.Create<T>(id_, source_, std::forward<ARG0>(arg0), in create()
1143 return Construct(source_, type, std::forward<ARGS>(args)...); in Construct()
1744 return create<ast::StructMemberOffsetDecoration>(source_, val); in MemberOffset()
1760 return create<ast::StructMemberSizeDecoration>(source_, val); in MemberSize()
1776 return create<ast::StructMemberAlignDecoration>(source_, val); in MemberAlign()
2007 return create<ast::StructMember>(source_, Sym(std::forward<NAME>(name)),
2021 source_, Sym(std::forward<NAME>(name)), type, in Member()
2282 return create<ast::BuiltinDecoration>(source_, builtin); in Builtin()
2304 return create<ast::InterpolateDecoration>(source_, type, sampling); in Interpolate()
[all …]
/third_party/node/deps/v8/src/objects/
Dcompilation-cache-table.cc149 source_(source), in StringSharedKey()
158 source_(source), in StringSharedKey()
185 return source.Equals(*source_); in IsMatch()
196 array->set(1, *source_); in AsHandle()
204 Handle<String> source_; member in v8::internal::__anona16062f50111::StringSharedKey
/third_party/node/deps/v8/src/json/
Djson-parser.cc222 source_ = handle(parent, isolate); in JsonParser()
224 source_ = String::Flatten(isolate, source); in JsonParser()
227 if (StringShape(*source_, cage_base).IsExternal()) { in JsonParser()
229 SeqExternalString::cast(*source_).GetChars(cage_base)); in JsonParser()
235 chars_ = SeqString::cast(*source_).GetChars(no_gc); in JsonParser()
312 if (StringShape(*source_).IsExternal()) { in ~JsonParser()
315 SeqExternalString::cast(*source_); in ~JsonParser()
319 SeqString::cast(*source_); in ~JsonParser()
1037 return factory()->InternalizeString(Handle<SeqString>::cast(source_), in MakeString()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
DvktPipelineMultisampleBase.hpp52 ComponentData (ComponentSource source_, deUint32 index_) in ComponentData()
53 : source {source_} in ComponentData()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineMultisampleBase.hpp52 ComponentData (ComponentSource source_, deUint32 index_) in ComponentData()
53 : source {source_} in ComponentData()
/third_party/node/test/cctest/
Dtest_per_process.cc15 return *BuiltinLoader().source_.read(); in get_sources_for_test()
/third_party/node/deps/v8/src/compiler/backend/
Dinstruction.h734 : source_(source), destination_(destination) { in NON_EXPORTED_BASE()
741 const InstructionOperand& source() const { return source_; } in NON_EXPORTED_BASE()
742 InstructionOperand& source() { return source_; } in NON_EXPORTED_BASE()
743 void set_source(const InstructionOperand& operand) { source_ = operand; } in NON_EXPORTED_BASE()
754 return destination_.IsInvalid() && !source_.IsInvalid(); in NON_EXPORTED_BASE()
762 return IsEliminated() || source_.EqualsCanonicalized(destination_); in NON_EXPORTED_BASE()
766 void Eliminate() { source_ = destination_ = InstructionOperand(); } in NON_EXPORTED_BASE()
768 DCHECK_IMPLIES(source_.IsInvalid(), destination_.IsInvalid()); in NON_EXPORTED_BASE()
769 return source_.IsInvalid(); in NON_EXPORTED_BASE()
776 InstructionOperand source_; in NON_EXPORTED_BASE()

12