Home
last modified time | relevance | path

Searched refs:binary (Results 426 - 450 of 1088) sorted by relevance

1...<<11121314151617181920>>...44

/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/json/tests/src/
H A Dunit-cbor.cpp60 bool binary(std::vector<std::uint8_t>& /*unused*/) in binary() function in __anon4147::SaxCountdown
843 // its double-precision float binary value is
857 // its double-precision binary value is:
870 // its double-precision binary value is:
883 // its double-precision binary value is:
896 // its double-precision binary value is:
1418 SECTION("binary")
1428 json j = json::binary(s);
1462 json j = json::binary(s);
1497 json j = json::binary(
[all...]
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/exif_metadata_accessor_test/
H A Dexif_getfilterarea_test.cpp119 fs->open(IMAGE_GET_FILTER_AREA_HEIF_PATH, std::fstream::binary | std::fstream::in); in HWTEST_F()
165 fs->open(IMAGE_GET_FILTER_AREA_PNG_PATH, std::fstream::binary | std::fstream::in); in HWTEST_F()
211 fs->open(IMAGE_GET_FILTER_AREA_JPEG_PATH, std::fstream::binary | std::fstream::in); in HWTEST_F()
257 fs->open(IMAGE_GET_FILTER_AREA_WEBP_PATH, std::fstream::binary | std::fstream::in); in HWTEST_F()
407 fs->open(IMAGE_GET_FILTER_AREA_DNG_PATH, std::fstream::binary | std::fstream::in); in HWTEST_F()
409 std::fstream::binary | std::fstream::out); in HWTEST_F()
/third_party/mesa3d/src/broadcom/vulkan/
H A Dv3dv_pipeline_cache.c477 struct blob binary; in pipeline_cache_upload_shared_data() local
478 blob_init(&binary); in pipeline_cache_upload_shared_data()
479 if (v3dv_pipeline_shared_data_write_to_blob(shared_data, &binary)) { in pipeline_cache_upload_shared_data()
488 disk_cache_put(disk_cache, cache_key, binary.data, binary.size, NULL); in pipeline_cache_upload_shared_data()
491 blob_finish(&binary); in pipeline_cache_upload_shared_data()
/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);
/foundation/graphic/graphic_surface/surface/test/unittest/
H A Dbuffer_utils_test.cpp103 std::ifstream dumpFile(entry.path(), std::ios::binary); in HWTEST_F()
149 std::ifstream dumpFile(entry.path(), std::ios::binary); in HWTEST_F()
/third_party/gn/src/base/files/
H A Dfile_util.cc46 // We open the file in binary format even if they are text files because in ContentsEqual()
50 std::ios::in | std::ios::binary); in ContentsEqual()
52 std::ios::in | std::ios::binary); in ContentsEqual()
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationLoader.java202 UResourceBundle binary = data.get("%%CollationBin"); in loadTailoring()
203 ByteBuffer inBytes = binary.getBinary(); in loadTailoring()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/coll/
H A DCollationLoader.java204 UResourceBundle binary = data.get("%%CollationBin"); in loadTailoring()
205 ByteBuffer inBytes = binary.getBinary(); in loadTailoring()
/third_party/vk-gl-cts/executor/tools/
H A DxeExtractShaderPrograms.cpp90 std::ofstream out(shaderPath.c_str(), std::ifstream::binary|std::ifstream::out); in writeShaderProgram()
185 std::ifstream in (cmdLine.filename.c_str(), std::ifstream::binary|std::ifstream::in); in extractShaderProgramsFromLogFile()
/third_party/skia/third_party/externals/spirv-tools/test/link/
H A Dlinker_fixture.h189 // Disassembles |binary| and outputs the result in |text|. If |text| is a
191 spv_result_t Disassemble(const spvtest::Binary& binary, std::string* text) { in Disassemble() argument
193 return tools_.Disassemble(binary, text, disassemble_options_) in Disassemble()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/link/
H A Dlinker_fixture.h189 // Disassembles |binary| and outputs the result in |text|. If |text| is a
191 spv_result_t Disassemble(const spvtest::Binary& binary, std::string* text) { in Disassemble() argument
193 return tools_.Disassemble(binary, text, disassemble_options_) in Disassemble()
/third_party/typescript/tests/baselines/reference/
H A DplainJSGrammarErrors.js38 set binary(fst, snd) { }
247 set binary(fst, snd) { }
/third_party/spirv-tools/test/opt/loop_optimizations/
H A Dlcssa.cpp34 spv_const_binary_t binary = {bin.data(), bin.size()}; in Validate() local
35 spv_result_t error = spvValidate(spvContext, &binary, &diagnostic); in Validate()
/third_party/spirv-tools/tools/objdump/
H A Dextract_source.cpp136 const std::vector<uint32_t>& binary, in ExtractSourceFromModule()
188 if (!context.Parse(binary, headerParser, instructionParser)) { in ExtractSourceFromModule()
135 ExtractSourceFromModule( const std::vector<uint32_t>& binary, std::unordered_map<std::string, std::string>* output) ExtractSourceFromModule() argument
/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()
/device/soc/rockchip/rk3588/kernel/arch/arm64/boot/
H A DMakefile17 OBJCOPYFLAGS_Image :=-O binary -R .note -R .note.gnu.build-id -R .comment -S

Completed in 21 milliseconds

1...<<11121314151617181920>>...44