Lines Matching defs:binary
86 R"(%s - Optimize a SPIR-V binary file.
90 The SPIR-V binary is read from <input>. If no file is specified,
91 or if <input> is "-", then the binary is read from standard input.
610 // the spirv-opt binary (used to build a new argv vector for the recursive
848 std::vector<uint32_t> binary;
849 if (!ReadBinaryFile<uint32_t>(in_file, &binary)) {
856 optimizer.Run(binary.data(), binary.size(), &binary, optimizer_options);
858 if (!WriteFile<uint32_t>(out_file, "wb", binary.data(), binary.size())) {