Home
last modified time | relevance | path

Searched refs:spirv_ (Results 1 – 9 of 9) sorted by relevance

/third_party/flutter/skia/third_party/externals/spirv-tools/source/comp/
Dmarkv_codec.cpp665 std::vector<uint32_t> spirv_; member in __anone7d8fbba0111::MarkvDecoder
836 spirv_.push_back(word); in DecodeLiteralNumber()
863 spirv_.push_back(word); in DecodeLiteralNumber()
885 spirv_.push_back(static_cast<uint32_t>(word)); in DecodeLiteralNumber()
886 spirv_.push_back(static_cast<uint32_t>(word >> 32)); in DecodeLiteralNumber()
916 spirv_.reserve(header_.markv_length_in_bits / 2); // Heuristic. in DecodeModule()
917 spirv_.resize(5, 0); in DecodeModule()
918 spirv_[0] = kSpirvMagicNumber; in DecodeModule()
919 spirv_[1] = header_.spirv_version; in DecodeModule()
920 spirv_[2] = header_.spirv_generator; in DecodeModule()
[all …]
/third_party/skia/third_party/externals/spirv-cross/
Dspirv_reflect.hpp42 explicit CompilerReflection(std::vector<uint32_t> spirv_) in CompilerReflection() argument
43 : Parent(std::move(spirv_)) in CompilerReflection()
Dspirv_cpp.hpp35 explicit CompilerCPP(std::vector<uint32_t> spirv_) in CompilerCPP() argument
36 : CompilerGLSL(std::move(spirv_)) in CompilerCPP()
Dformat_all.sh6 for file in spirv_*.{cpp,hpp} main.cpp
DMakefile6 SOURCES := $(wildcard spirv_*.cpp)
Dspirv_hlsl.hpp142 explicit CompilerHLSL(std::vector<uint32_t> spirv_) in CompilerHLSL() argument
143 : CompilerGLSL(std::move(spirv_)) in CompilerHLSL()
Dspirv_glsl.hpp187 explicit CompilerGLSL(std::vector<uint32_t> spirv_) in CompilerGLSL() argument
188 : Compiler(std::move(spirv_)) in CompilerGLSL()
Dspirv_msl.cpp39 CompilerMSL::CompilerMSL(std::vector<uint32_t> spirv_) in CompilerMSL() argument
40 : CompilerGLSL(move(spirv_)) in CompilerMSL()
/third_party/mesa3d/src/compiler/spirv/
Dvtn_private.h102 vtn_fail("%s: %s (%u)\n", msg, spirv_ ## t ## _to_string(v), v)