Home
last modified time | relevance | path

Searched refs:binary (Results 526 - 550 of 1195) sorted by relevance

1...<<21222324252627282930>>...48

/third_party/json/docs/examples/
H A Dis_boolean.cpp17 json j_binary = json::binary({1, 2, 3}); in main()
H A Dis_number.cpp17 json j_binary = json::binary({1, 2, 3}); in main()
H A Dis_null.cpp17 json j_binary = json::binary({1, 2, 3}); in main()
H A Dis_structured.cpp17 json j_binary = json::binary({1, 2, 3}); in main()
H A Dis_string.cpp17 json j_binary = json::binary({1, 2, 3}); in main()
H A Dis_number_unsigned.cpp17 json j_binary = json::binary({1, 2, 3}); in main()
H A Dis_number_integer.cpp17 json j_binary = json::binary({1, 2, 3}); in main()
H A Dis_number_float.cpp17 json j_binary = json::binary({1, 2, 3}); in main()
H A Dis_primitive.cpp17 json j_binary = json::binary({1, 2, 3}); in main()
H A Dis_object.cpp17 json j_binary = json::binary({1, 2, 3}); in main()
/third_party/mesa3d/src/panfrost/bifrost/
H A Dbifrost_compile.h34 struct util_dynarray *binary,
/third_party/mesa3d/src/panfrost/midgard/
H A Dmidgard_compile.h35 struct util_dynarray *binary,
/third_party/skia/third_party/externals/spirv-tools/test/reduce/
H A Dreduce_test_util.h31 // Assembles the given text and check whether the resulting binary is bit-wise
32 // equal to the given binary.
36 // Assembles the given text and turns the given IR into binary, then checks
41 // Assembles the given IR context and checks whether the resulting binary is
69 // Dumps |binary| to file |filename|. Useful for interactive debugging.
70 void DumpShader(const std::vector<uint32_t>& binary, const char* filename);
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/reduce/
H A Dreduce_test_util.h31 // Assembles the given text and check whether the resulting binary is bit-wise
32 // equal to the given binary.
36 // Assembles the given text and turns the given IR into binary, then checks
41 // Assembles the given IR context and checks whether the resulting binary is
69 // Dumps |binary| to file |filename|. Useful for interactive debugging.
70 void DumpShader(const std::vector<uint32_t>& binary, const char* filename);
/third_party/skia/third_party/externals/tint/fuzzers/tint_spirv_tools_fuzzer/
H A Dspirv_fuzz_mutator.h35 /// The initial `binary` must be valid according to `target_env`. All other
41 /// @param target_env - the target environment for the `binary`.
42 /// @param binary - the SPIR-V binary. Must be valid.
48 /// @param validate_after_each_pass - whether to validate the binary after
57 std::vector<uint32_t> binary,
84 // The binary that the mutator is constructed with.
H A Dspirv_opt_mutator.h32 /// The initial `binary` must be valid according to `target_env`. On each call
34 /// optimization passes (with substitutions) and applies them to the binary.
38 /// @param target_env - target environment for the `binary`.
40 /// @param binary - SPIR-V binary. Must be valid.
41 /// @param validate_after_each_opt - whether to validate the binary after each
48 std::vector<uint32_t> binary,
64 // Target environment for the SPIR-V binary.
67 // The original SPIR-V binary. Useful for debugging.
79 // Whether we need to validate the binary afte
[all...]
H A Dutil.h41 /// @param data - invalid SPIR-V binary.
43 /// @param error_dir - the directory, to which the binary will be printed to.
44 /// If it's empty, the invalid binary and supplemental files will not be
54 /// @param data - the SPIR-V binary that generated the WGSL binary.
56 /// @param wgsl - the invalid WGSL binary.
58 /// @param error_dir - the directory, to which the binary will be printed out.
59 /// If it's empty, the invalid binary and supplemental files will not be
72 /// If it's empty, the invalid binary and supplemental files will not be
76 /// Reads SPIR-V binary fro
[all...]
/third_party/skia/third_party/externals/dawn/src/utils/
H A DWireHelper.cpp59 std::ios_base::out | std::ios_base::binary | std::ios_base::trunc);
/third_party/spirv-tools/test/reduce/
H A Dreduce_test_util.h31 // Assembles the given text and check whether the resulting binary is bit-wise
32 // equal to the given binary.
36 // Assembles the given text and turns the given IR into binary, then checks
41 // Assembles the given IR context and checks whether the resulting binary is
69 // Dumps |binary| to file |filename|. Useful for interactive debugging.
70 void DumpShader(const std::vector<uint32_t>& binary, const char* filename);
/third_party/mesa3d/src/vulkan/runtime/
H A Dvk_queue.c317 /* For emulated timelines, we have a binary vk_sync associated with in vk_queue_submit_final()
318 * each time point and pass the binary vk_sync to the driver. in vk_queue_submit_final()
342 struct vk_sync_binary *binary = in vk_queue_submit_final() local
344 if (binary) { in vk_queue_submit_final()
345 submit->waits[i].sync = &binary->timeline; in vk_queue_submit_final()
346 submit->waits[i].wait_value = binary->next_point; in vk_queue_submit_final()
369 struct vk_sync_binary *binary = in vk_queue_submit_final() local
371 if (binary) { in vk_queue_submit_final()
372 submit->signals[i].sync = &binary->timeline; in vk_queue_submit_final()
373 submit->signals[i].signal_value = ++binary in vk_queue_submit_final()
[all...]
/third_party/skia/third_party/externals/spirv-tools/test/opt/
H A Ddecoration_manager_test.cpp77 // Disassembles |binary| and outputs the result in |text|. If |text| is a
79 spv_result_t Disassemble(const std::vector<uint32_t>& binary, in Disassemble() argument
82 return tools_.Disassemble(binary, text, disassemble_options_) in Disassemble()
91 std::vector<uint32_t> binary = {SpvMagicNumber, 0x10200, 0u, 2u, 0u}; in ToText() local
93 i->ToBinaryWithoutAttachedDebugInsts(&binary); in ToText()
95 Disassemble(binary, &text); in ToText()
100 std::vector<uint32_t> binary; in ModuleToText() local
101 context_->module()->ToBinary(&binary, false); in ModuleToText()
103 Disassemble(binary, &text); in ModuleToText()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/
H A Ddecoration_manager_test.cpp77 // Disassembles |binary| and outputs the result in |text|. If |text| is a
79 spv_result_t Disassemble(const std::vector<uint32_t>& binary, in Disassemble() argument
82 return tools_.Disassemble(binary, text, disassemble_options_) in Disassemble()
91 std::vector<uint32_t> binary = {SpvMagicNumber, 0x10200, 0u, 2u, 0u}; in ToText() local
93 i->ToBinaryWithoutAttachedDebugInsts(&binary); in ToText()
95 Disassemble(binary, &text); in ToText()
100 std::vector<uint32_t> binary; in ModuleToText() local
101 context_->module()->ToBinary(&binary, false); in ModuleToText()
103 Disassemble(binary, &text); in ModuleToText()
/third_party/spirv-tools/test/opt/
H A Ddecoration_manager_test.cpp76 // Disassembles |binary| and outputs the result in |text|. If |text| is a
78 spv_result_t Disassemble(const std::vector<uint32_t>& binary, in Disassemble() argument
81 return tools_.Disassemble(binary, text, disassemble_options_) in Disassemble()
90 std::vector<uint32_t> binary = {spv::MagicNumber, 0x10200, 0u, 2u, 0u}; in ToText() local
92 i->ToBinaryWithoutAttachedDebugInsts(&binary); in ToText()
94 Disassemble(binary, &text); in ToText()
99 std::vector<uint32_t> binary; in ModuleToText() local
100 context_->module()->ToBinary(&binary, false); in ModuleToText()
102 Disassemble(binary, &text); in ModuleToText()
/base/hiviewdfx/hiview/plugins/reliability/leak_detectors/test/
H A Dtest_util.cpp259 ifstream src(srcFile, std::ios::binary); in CopyFile()
260 ofstream dst(dstFile, std::ios::binary); in CopyFile()
/base/powermgr/power_manager/services/native/src/suspend/
H A Dsuspend_source_parser.cpp62 std::ifstream inputStream(targetPath.c_str(), std::ios::in | std::ios::binary); in ParseSources()
99 std::ifstream inputStream(targetPath.c_str(), std::ios::in | std::ios::binary);

Completed in 13 milliseconds

1...<<21222324252627282930>>...48