| /third_party/json/docs/examples/ |
| H A D | is_boolean.cpp | 17 json j_binary = json::binary({1, 2, 3}); in main()
|
| H A D | is_number.cpp | 17 json j_binary = json::binary({1, 2, 3}); in main()
|
| H A D | is_null.cpp | 17 json j_binary = json::binary({1, 2, 3}); in main()
|
| H A D | is_structured.cpp | 17 json j_binary = json::binary({1, 2, 3}); in main()
|
| H A D | is_string.cpp | 17 json j_binary = json::binary({1, 2, 3}); in main()
|
| H A D | is_number_unsigned.cpp | 17 json j_binary = json::binary({1, 2, 3}); in main()
|
| H A D | is_number_integer.cpp | 17 json j_binary = json::binary({1, 2, 3}); in main()
|
| H A D | is_number_float.cpp | 17 json j_binary = json::binary({1, 2, 3}); in main()
|
| H A D | is_primitive.cpp | 17 json j_binary = json::binary({1, 2, 3}); in main()
|
| H A D | is_object.cpp | 17 json j_binary = json::binary({1, 2, 3}); in main()
|
| /third_party/mesa3d/src/panfrost/bifrost/ |
| H A D | bifrost_compile.h | 34 struct util_dynarray *binary,
|
| /third_party/mesa3d/src/panfrost/midgard/ |
| H A D | midgard_compile.h | 35 struct util_dynarray *binary,
|
| /third_party/skia/third_party/externals/spirv-tools/test/reduce/ |
| H A D | reduce_test_util.h | 31 // 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 D | reduce_test_util.h | 31 // 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 D | spirv_fuzz_mutator.h | 35 /// 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 D | spirv_opt_mutator.h | 32 /// 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 D | util.h | 41 /// @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 D | WireHelper.cpp | 59 std::ios_base::out | std::ios_base::binary | std::ios_base::trunc);
|
| /third_party/spirv-tools/test/reduce/ |
| H A D | reduce_test_util.h | 31 // 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 D | vk_queue.c | 317 /* 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 D | decoration_manager_test.cpp | 77 // 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 D | decoration_manager_test.cpp | 77 // 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 D | decoration_manager_test.cpp | 76 // 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 D | test_util.cpp | 259 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 D | suspend_source_parser.cpp | 62 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);
|