Home
last modified time | relevance | path

Searched refs:binary (Results 576 - 600 of 1362) sorted by relevance

1...<<21222324252627282930>>...55

/kernel/linux/linux-6.6/lib/
H A Dseq_buf.c130 * seq_buf_bprintf - Write the printf string from binary arguments
132 * @fmt: The format string for the @binary arguments
133 * @binary: The binary arguments for @fmt.
141 * This function will take the format and the binary array and finish
146 int seq_buf_bprintf(struct seq_buf *s, const char *fmt, const u32 *binary) in seq_buf_bprintf() argument
154 ret = bstr_printf(s->buffer + s->len, len, fmt, binary); in seq_buf_bprintf()
/kernel/linux/linux-6.6/kernel/trace/
H A Dtrace_seq.c162 * trace_seq_bprintf - Write the printf string from binary arguments
164 * @fmt: The format string for the @binary arguments
165 * @binary: The binary arguments for @fmt.
173 * This function will take the format and the binary array and finish
176 void trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary) in trace_seq_bprintf() argument
185 seq_buf_bprintf(&s->seq, fmt, binary); in trace_seq_bprintf()
/kernel/liteos_m/arch/arm/cortex-m3/keil/
H A Dlos_dispatch.S5 ; Redistribution and use in source and binary forms, with or without modification,
11 ; 2. Redistributions in binary form must reproduce the above copyright notice, this list
H A Dlos_atomic.S4 ; Redistribution and use in source and binary forms, with or without modification,
10 ; 2. Redistributions in binary form must reproduce the above copyright notice, this list
/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()
/arkcompiler/runtime_core/verifier/tests/
H A Dutils.cpp25 std::ofstream abc_file(filename, std::ios::out | std::ios::binary); in GenerateModifiedAbc()
/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/src/
H A Dextractor_util.cpp56 fileStream.open(filePath, std::ios_base::out | std::ios_base::binary); in ExtractFileToPath()
/kernel/linux/linux-5.10/arch/microblaze/boot/
H A DMakefile8 OBJCOPYFLAGS := -R .note -R .comment -R .note.gnu.build-id -O binary
/kernel/linux/linux-5.10/arch/xtensa/boot/boot-redboot/
H A DMakefile33 $(Q)$(OBJCOPY) -S -O binary $< $@
/kernel/linux/linux-5.10/arch/alpha/lib/
H A Dstrncat.S44 and $2, 0xf0, $3 # binary search for that set bit
/kernel/linux/linux-5.10/arch/h8300/boot/
H A DMakefile9 OBJCOPYFLAGS_zImage := -O binary -R .note -R .comment -R .stab -R .stabstr -S
/kernel/linux/linux-5.10/arch/openrisc/
H A DMakefile22 OBJCOPYFLAGS := -O binary -R .note -R .comment -S
/kernel/linux/linux-5.10/arch/sh/boot/romimage/
H A DMakefile27 LDFLAGS_piggy.o := -r --format binary --oformat $(ld-bfd) -T

Completed in 14 milliseconds

1...<<21222324252627282930>>...55