Home
last modified time | relevance | path

Searched refs:source_ (Results 1 - 25 of 46) sorted by relevance

12

/third_party/backends/backend/genesys/
H A Dimage_pipeline.h152 std::size_t get_width() const override { return source_.get_width(); }
153 std::size_t get_height() const override { return source_.get_height(); }
154 PixelFormat get_format() const override { return source_.get_format(); }
161 const Image& source_; member in genesys::ImagePipelineNodeImageSource
170 source_(source), in ImagePipelineNodeFormatConvert()
176 std::size_t get_width() const override { return source_.get_width(); }
177 std::size_t get_height() const override { return source_.get_height(); }
180 bool eof() const override { return source_.eof(); }
185 ImagePipelineNode& source_; member in genesys::ImagePipelineNodeFormatConvert
213 std::size_t get_height() const override { return source_
221 ImagePipelineNode& source_; global() member in genesys::ImagePipelineNodeDesegment
255 ImagePipelineNode& source_; global() member in genesys::ImagePipelineNodeSwap16BitEndian
273 ImagePipelineNode& source_; global() member in genesys::ImagePipelineNodeInvert
294 ImagePipelineNode& source_; global() member in genesys::ImagePipelineNodeMergeMonoLinesToColor
317 ImagePipelineNode& source_; global() member in genesys::ImagePipelineNodeSplitMonoLines
342 ImagePipelineNode& source_; global() member in genesys::ImagePipelineNodeMergeColorToGray
367 ImagePipelineNode& source_; global() member in genesys::ImagePipelineNodeComponentShiftLines
393 ImagePipelineNode& source_; global() member in genesys::ImagePipelineNodePixelShiftLines
420 ImagePipelineNode& source_; global() member in genesys::ImagePipelineNodePixelShiftColumns
453 ImagePipelineNode& source_; global() member in genesys::ImagePipelineNodeExtract
478 ImagePipelineNode& source_; global() member in genesys::ImagePipelineNodeScaleRows
501 ImagePipelineNode& source_; global() member in genesys::ImagePipelineNodeCalibrate
522 ImagePipelineNode& source_; global() member in genesys::ImagePipelineNodeDebug
[all...]
H A Dimage_pipeline.cpp103 source_{source} in ImagePipelineNodeImageSource()
111 std::memcpy(out_data, source_.get_row_ptr(next_row_), get_row_bytes()); in get_next_row_data()
118 auto src_format = source_.get_format(); in get_next_row_data()
120 return source_.get_next_row_data(out_data); in get_next_row_data()
124 buffer_.resize(source_.get_row_bytes()); in get_next_row_data()
125 bool got_data = source_.get_next_row_data(buffer_.data()); in get_next_row_data()
137 source_(source), in ImagePipelineNodeDesegment()
143 buffer_{source_.get_row_bytes()}
149 if (source_.get_height() % interleaved_lines_ > 0) {
151 source_
[all...]
/third_party/vk-gl-cts/framework/opengl/
H A DgluShaderProgram.hpp277 ShaderSource (glu::ShaderType shaderType_, const std::string& source_) : shaderType(shaderType_), source(source_) { DE_ASSERT(!source_.empty()); } 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_)
[all...]
/third_party/skia/third_party/externals/dawn/src/common/
H A 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_ in deallocate()
123 Source* source_; global() member in StackAllocator
[all...]
/third_party/node/deps/v8/src/snapshot/
H A 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_ in ReadObject()
[all...]
/third_party/protobuf/src/google/protobuf/stubs/
H A 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/
H A Dv8-extension.h29 virtual ~Extension() { delete source_; } in ~Extension()
38 return source_; in source()
51 size_t source_length_; // expected to initialize before source_
52 String::ExternalOneByteStringResource* source_; member in v8::Extension
/third_party/node/deps/v8/include/v8-include/
H A Dv8-extension.h29 virtual ~Extension() { delete source_; } in ~Extension()
38 return source_; in source()
51 size_t source_length_; // expected to initialize before source_
52 String::ExternalOneByteStringResource* source_; member in v8::Extension
/third_party/node/deps/v8/src/parsing/
H A 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()
482 // Call this after setting source_ to the input.
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_ in PushBack()
727 Utf16CharacterStream* const source_; global() member in v8::internal::Scanner
[all...]
/third_party/skia/third_party/externals/freetype/src/base/
H A Dftbitmap.c799 const FT_Bitmap* source_, in FT_EXPORT_DEF()
825 if ( !library || !target || !source_ || !atarget_offset ) in FT_EXPORT_DEF()
835 if ( source_->pixel_mode == FT_PIXEL_MODE_NONE ) in FT_EXPORT_DEF()
840 ( source_->pitch ^ target->pitch ) < 0 ) in FT_EXPORT_DEF()
843 if ( !( source_->width && source_->rows ) ) in FT_EXPORT_DEF()
854 if ( FT_LONG_MIN + (FT_Pos)( source_->rows << 6 ) + 64 > source_offset.y ) in FT_EXPORT_DEF()
860 source_lly = source_offset.y - ( source_->rows << 6 ); in FT_EXPORT_DEF()
862 if ( FT_LONG_MAX - (FT_Pos)( source_->width << 6 ) - 64 < source_llx ) in FT_EXPORT_DEF()
868 source_urx = source_llx + ( source_ in FT_EXPORT_DEF()
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dir_loader.h47 void SetSource(const std::string& src) { source_ = src; } in SetSource()
76 std::string source_; member in spvtools::opt::IrLoader
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dir_loader.h47 void SetSource(const std::string& src) { source_ = src; } in SetSource()
76 std::string source_; member in spvtools::opt::IrLoader
/third_party/spirv-tools/source/opt/
H A Dir_loader.h47 void SetSource(const std::string& src) { source_ = src; } in SetSource()
76 std::string source_; member in spvtools::opt::IrLoader
/third_party/node/src/
H A Dutil.cc537 : source_(source) {} in NonOwningExternalOneByteResource()
541 return reinterpret_cast<const char*>(source_.one_bytes_data());
543 size_t length() const override { return source_.length(); }
551 const UnionBytes source_; member in node::__anon15455::NonOwningExternalOneByteResource
558 : source_(source) {} in NonOwningExternalTwoByteResource()
561 const uint16_t* data() const override { return source_.two_bytes_data(); }
562 size_t length() const override { return source_.length(); }
570 const UnionBytes source_; member in node::__anon15455::NonOwningExternalTwoByteResource
H A 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/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkSpirVProgram.hpp77 SpirVAsmSource (const std::string& source_) in SpirVAsmSource()
78 : source(source_) in SpirVAsmSource()
/third_party/skia/third_party/externals/tint/src/reader/wgsl/
H A 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()
H A Dtoken.h422 Source source() const { return source_; } in source()
447 Source source_; member in tint::reader::wgsl::Token
/third_party/node/deps/v8/src/objects/
H A Dcompilation-cache-table.cc149 source_(source), in StringSharedKey()
158 source_(source), in StringSharedKey()
185 return source.Equals(*source_);
196 array->set(1, *source_); in AsHandle()
204 Handle<String> source_; member in v8::internal::__anon14781::StringSharedKey
/third_party/skia/third_party/externals/tint/src/
H A 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_, typ in Interpolate()
2567 Source source_; global() member in tint::ProgramBuilder
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineMultisampleBase.hpp54 ComponentData (ComponentSource source_, deUint32 index_) in ComponentData()
55 : source {source_} in ComponentData()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
H A DvktPipelineMultisampleBase.hpp52 ComponentData (ComponentSource source_, deUint32 index_) in ComponentData()
53 : source {source_} in ComponentData()
/third_party/node/deps/v8/src/json/
H A 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/node/test/cctest/
H A Dtest_per_process.cc15 return *BuiltinLoader().source_.read(); in get_sources_for_test()
25 })) << "BuiltinLoader::source_ should have some 8bit items"; in TEST_F()
29 })) << "BuiltinLoader::source_ should have some 16bit items"; in TEST_F()
/third_party/node/deps/v8/src/compiler/backend/
H A Dinstruction.h734 : source_(source), destination_(destination) { in MoveOperands()
741 const InstructionOperand& source() const { return source_; } in source()
742 InstructionOperand& source() { return source_; } in source()
743 void set_source(const InstructionOperand& operand) { source_ = operand; } in set_source()
754 return destination_.IsInvalid() && !source_.IsInvalid(); in IsPending()
762 return IsEliminated() || source_.EqualsCanonicalized(destination_); in IsRedundant()
766 void Eliminate() { source_ = destination_ = InstructionOperand(); } in Eliminate()
768 DCHECK_IMPLIES(source_.IsInvalid(), destination_.IsInvalid()); in IsEliminated()
769 return source_.IsInvalid(); in IsEliminated()
776 InstructionOperand source_; member in v8::internal::compiler::final
[all...]

Completed in 25 milliseconds

12