Home
last modified time | relevance | path

Searched refs:binary (Results 301 - 325 of 847) sorted by relevance

1...<<11121314151617181920>>...34

/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkPrograms.hpp50 ProgramBinary (ProgramFormat format, size_t binarySize, const deUint8* binary);
228 Move<VkShaderModule> createShaderModule (const DeviceInterface& deviceInterface, VkDevice device, const ProgramBinary& binary, VkShaderModuleCreateFlags flags = 0u);
240 SpirvVersion extractSpirvVersion (const ProgramBinary& binary);
/third_party/skia/third_party/externals/spirv-tools/test/opt/
H A Dmodule_test.cpp234 // module, converted back to a binary, and then disassembled.
237 std::vector<uint32_t> binary; in AssembleAndDisassemble() local
239 context->module()->ToBinary(&binary, false); in AssembleAndDisassemble()
243 tools.Disassemble(binary, &s); in AssembleAndDisassemble()
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/
H A Dshrinker.cpp98 // Initial binary should be valid.
101 "Initial binary is invalid; stopping.");
120 // Get the binary that results from running these transformations, and the
129 // Check that the binary produced by applying the initial transformations is
133 "Initial binary is not interesting; stopping.");
188 // Replay the smaller sequence of transformations to get a next binary and
217 // If the binary arising from the smaller transformation sequence is
218 // interesting, this becomes our current best binary and transformation
290 // Either way, the output from the shrinker is the best binary we saw, and the
307 uint32_t Shrinker::GetIdBound(const std::vector<uint32_t>& binary) cons
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/
H A Dshrinker.cpp98 // Initial binary should be valid.
101 "Initial binary is invalid; stopping.");
120 // Get the binary that results from running these transformations, and the
129 // Check that the binary produced by applying the initial transformations is
133 "Initial binary is not interesting; stopping.");
188 // Replay the smaller sequence of transformations to get a next binary and
217 // If the binary arising from the smaller transformation sequence is
218 // interesting, this becomes our current best binary and transformation
290 // Either way, the output from the shrinker is the best binary we saw, and the
307 uint32_t Shrinker::GetIdBound(const std::vector<uint32_t>& binary) cons
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/
H A Dmodule_test.cpp234 // module, converted back to a binary, and then disassembled.
237 std::vector<uint32_t> binary; in AssembleAndDisassemble() local
239 context->module()->ToBinary(&binary, false); in AssembleAndDisassemble()
243 tools.Disassemble(binary, &s); in AssembleAndDisassemble()
/third_party/skia/third_party/externals/angle2/src/tests/restricted_traces/
H A Dretrace_restricted_traces.py146 binary = os.path.join(args.gn_path, DEFAULT_TEST_SUITE)
148 binary += '.exe'
191 binary,
H A Drestricted_trace_gold_tests.py151 def get_binary_name(binary):
153 return '.\\%s.exe' % binary
155 return './%s' % binary
200 binary = get_binary_name('angle_system_info_test') variable in get_skia_gold_keys.Filter
201 sysinfo_args = [binary, '--vulkan', '-v']
/third_party/spirv-tools/source/fuzz/
H A Dshrinker.cpp98 // Initial binary should be valid.
101 "Initial binary is invalid; stopping.");
120 // Get the binary that results from running these transformations, and the
129 // Check that the binary produced by applying the initial transformations is
133 "Initial binary is not interesting; stopping.");
188 // Replay the smaller sequence of transformations to get a next binary and
217 // If the binary arising from the smaller transformation sequence is
218 // interesting, this becomes our current best binary and transformation
290 // Either way, the output from the shrinker is the best binary we saw, and the
307 uint32_t Shrinker::GetIdBound(const std::vector<uint32_t>& binary) cons
[all...]
/third_party/spirv-tools/test/opt/
H A Dcfg_test.cpp260 std::vector<uint32_t> binary; in TEST_F() local
262 context->module()->ToBinary(&binary, skip_nop); in TEST_F()
266 EXPECT_TRUE(tools.Disassemble(binary, &optimized_asm, in TEST_F()
H A Dmodule_test.cpp232 // module, converted back to a binary, and then disassembled.
235 std::vector<uint32_t> binary; in AssembleAndDisassemble() local
237 context->module()->ToBinary(&binary, false); in AssembleAndDisassemble()
241 tools.Disassemble(binary, &s); in AssembleAndDisassemble()
/third_party/mbedtls/scripts/mbedtls_dev/
H A Dmacro_collector.py51 def __init__(self, filename: str, binary: bool = False) -> None:
56 self.binary = binary
58 self.file = open(self.filename, 'rb' if self.binary else 'r')
497 with read_file_lines(filename, binary=True) as lines:
/third_party/json/tests/src/
H A Dunit-inspection.cpp166 SECTION("binary")
168 json j(json::value_t::binary);
244 const auto binary = json::binary({1, 2, 3}, 128); variable
245 CHECK(binary.dump(1024).size() == 2086);
452 SECTION("binary")
454 json j = json::binary({});
H A Dunit-constructor2.cpp74 SECTION("binary")
76 json j = json::binary({1, 2, 3});
157 SECTION("binary")
159 json j = json::binary({1, 2, 3});
/third_party/vk-gl-cts/external/vulkancts/vkscpc/
H A Dvkscpc.cpp206 std::ifstream iFile (shaderPath.getPath(), std::ios::in | std::ios::binary); in importFilesForExternalCompiler()
301 std::vector<deUint8> binary = vksc_server::buildPipelineCache( in main() local
310 std::ofstream oFile (cmdLine.getOption<opt::CompilerOutputFile>().c_str(), std::ios::out | std::ios::binary); in main()
313 oFile.write(reinterpret_cast<char*>(binary.data()), binary.size()); in main()
/third_party/mesa3d/src/panfrost/vulkan/
H A Dpanvk_vX_meta_clear.c61 struct util_dynarray binary; in panvk_meta_clear_color_attachment_shader() local
63 util_dynarray_init(&binary, NULL); in panvk_meta_clear_color_attachment_shader()
64 GENX(pan_shader_compile)(b.shader, &inputs, &binary, shader_info); in panvk_meta_clear_color_attachment_shader()
69 pan_pool_upload_aligned(bin_pool, binary.data, binary.size, 128); in panvk_meta_clear_color_attachment_shader()
71 util_dynarray_fini(&binary); in panvk_meta_clear_color_attachment_shader()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/tessellation/
H A DvktTessellationUtil.cpp102 const ProgramBinary& binary, in setShader()
110 m_vertexShaderModule = createShaderModule(vk, device, binary, (VkShaderModuleCreateFlags)0); in setShader()
116 m_tessControlShaderModule = createShaderModule(vk, device, binary, (VkShaderModuleCreateFlags)0); in setShader()
122 m_tessEvaluationShaderModule = createShaderModule(vk, device, binary, (VkShaderModuleCreateFlags)0); in setShader()
128 m_geometryShaderModule = createShaderModule(vk, device, binary, (VkShaderModuleCreateFlags)0); in setShader()
134 m_fragmentShaderModule = createShaderModule(vk, device, binary, (VkShaderModuleCreateFlags)0); in setShader()
99 setShader(const DeviceInterface& vk, const VkDevice device, const VkShaderStageFlagBits stage, const ProgramBinary& binary, const VkSpecializationInfo* specInfo) setShader() argument
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/
H A DvktBuildPrograms.cpp199 ProgramBinarySp binary; member
269 m_program->binary = ProgramBinarySp(vk::buildProgram(m_source, &buildInfo, *m_commandLine)); in execute()
324 m_program->binary = ProgramBinarySp(vk::assembleProgram(m_source, &buildInfo, *m_commandLine)); in execute()
354 DE_ASSERT(m_program->binary->getFormat() == vk::PROGRAM_FORMAT_SPIRV); in execute()
358 if (vk::validateProgram(*m_program->binary, &validationLogStream, m_program->validatorOptions)) in execute()
527 registryWriter.addProgram(progIter->id, *progIter->binary); in buildPrograms()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/tessellation/
H A DvktTessellationUtil.cpp110 const ProgramBinary& binary, in setShader()
118 m_vertexShaderModule = createShaderModule(vk, device, binary, (VkShaderModuleCreateFlags)0); in setShader()
124 m_tessControlShaderModule = createShaderModule(vk, device, binary, (VkShaderModuleCreateFlags)0); in setShader()
130 m_tessEvaluationShaderModule = createShaderModule(vk, device, binary, (VkShaderModuleCreateFlags)0); in setShader()
136 m_geometryShaderModule = createShaderModule(vk, device, binary, (VkShaderModuleCreateFlags)0); in setShader()
142 m_fragmentShaderModule = createShaderModule(vk, device, binary, (VkShaderModuleCreateFlags)0); in setShader()
107 setShader(const DeviceInterface& vk, const VkDevice device, const VkShaderStageFlagBits stage, const ProgramBinary& binary, const VkSpecializationInfo* specInfo) setShader() argument
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/
H A DvktBuildPrograms.cpp199 ProgramBinarySp binary; member
269 m_program->binary = ProgramBinarySp(vk::buildProgram(m_source, &buildInfo, *m_commandLine)); in execute()
324 m_program->binary = ProgramBinarySp(vk::assembleProgram(m_source, &buildInfo, *m_commandLine)); in execute()
354 DE_ASSERT(m_program->binary->getFormat() == vk::PROGRAM_FORMAT_SPIRV); in execute()
358 if (vk::validateProgram(*m_program->binary, &validationLogStream, m_program->validatorOptions)) in execute()
524 registryWriter.addProgram(progIter->id, *progIter->binary); in buildPrograms()
/third_party/node/tools/gyp/pylib/gyp/generator/
H A Dninja.py108 3) link generates a binary (library/executable)
137 self.binary = None
163 # For bundles, the .TOC should be produced for the binary, not for
185 return self.bundle or self.binary or self.actions_stamp
483 # a single arch if a fat binary is being built.
910 ("binary", isBinary),
1008 variables=[("env", env), ("keys", keys), ("binary", isBinary)],
1308 """Write out a link step. Fills out target.binary. """
1352 """Write out a link step. Fills out target.binary. """
1396 solibs.add(target.binary)
[all...]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/
H A Dninja.py108 3) link generates a binary (library/executable)
137 self.binary = None
163 # For bundles, the .TOC should be produced for the binary, not for
185 return self.bundle or self.binary or self.actions_stamp
483 # a single arch if a fat binary is being built.
910 ("binary", isBinary),
1008 variables=[("env", env), ("keys", keys), ("binary", isBinary)],
1308 """Write out a link step. Fills out target.binary. """
1352 """Write out a link step. Fills out target.binary. """
1396 solibs.add(target.binary)
[all...]
/third_party/glslang/glslang/MachineIndependent/
H A DLiveTraverser.h6 // Redistribution and use in source and binary forms, with or without
13 // Redistributions in binary form must reproduce the above
91 TIntermBinary* binary = candidate->getSequence()[0]->getAsBinaryNode(); in pushGlobalReference() local
92 TIntermSymbol* symbol = binary->getLeft()->getAsSymbolNode(); in pushGlobalReference()
/third_party/astc-encoder/Test/
H A Dastc_profile_valgrind.py100 Run Valgrind on a single binary.
112 binary = "./bin/astcenc-%s" % encoder
114 binary, "-cl", image, "out.astc", blocksize, quality, "-j", "1"]
/third_party/mesa3d/src/microsoft/spirv_to_dxil/
H A Dspirv2dxil.c168 fwrite(obj.binary.buffer, sizeof(char), obj.binary.size, file); in main()
/third_party/ltp/testcases/kernel/kvm/
H A DMakefile59 objcopy -O binary -j .init.boot -j .text -j .data -j .init -j .preinit_array -j .init_array --gap-fill=0 $*-payload.elf $*-payload.bin
63 @objcopy -O binary -j .init.boot -j .text -j .data -j .init -j .preinit_array -j .init_array --gap-fill=0 $*-payload.elf $*-payload.bin

Completed in 19 milliseconds

1...<<11121314151617181920>>...34