Home | History | Annotate | Download | only in spirv-tools

Lines Matching refs:binary

207   // Assembles the given assembly |text| and writes the result to |binary|.
208 // Returns true on successful assembling. |binary| will be kept untouched if
210 bool Assemble(const std::string& text, std::vector<uint32_t>* binary,
215 std::vector<uint32_t>* binary,
218 // Disassembles the given SPIR-V |binary| with the given |options| and writes
221 bool Disassemble(const std::vector<uint32_t>& binary, std::string* text,
223 // |binary_size| specifies the number of words in |binary|.
224 bool Disassemble(const uint32_t* binary, size_t binary_size,
228 // Validates the given SPIR-V |binary|. Returns true if no issues are found.
231 bool Validate(const std::vector<uint32_t>& binary) const;
232 // |binary_size| specifies the number of words in |binary|.
233 bool Validate(const uint32_t* binary, size_t binary_size) const;
235 bool Validate(const uint32_t* binary, size_t binary_size,