| /foundation/multimedia/av_codec/test/nativedemo/audio_demo/ |
| H A D | avcodec_audio_avbuffer_lbvc_encoder_inner_demo.cpp | 55 std::ifstream file(filePath, std::ios::binary | std::ios::ate); in GetFileSize() 105 inputFile_ = std::make_unique<std::ifstream>(INPUT_FILE_PATH, std::ios::binary); in RunCase() 106 outputFile_ = std::make_unique<std::ofstream>(OUTPUT_PCM_FILE_PATH, std::ios::binary); in RunCase()
|
| /third_party/libwebsockets/minimal-examples/ws-client/minimal-ws-client-echo/ |
| H A D | protocol_lws_minimal_client_echo.c | 28 char binary; member 176 pmsg->binary ? LWS_WRITE_BINARY : LWS_WRITE_TEXT, in callback_minimal_client_echo() 222 amsg.binary = (char)lws_frame_is_binary(wsi); in callback_minimal_client_echo()
|
| /third_party/node/lib/ |
| H A D | os.js | 211 // Returns the number of ones in the binary representation of the decimal 249 const binary = NumberParseInt(part, range); 250 const binaryOnes = countBinaryOnes(binary); 253 if ((binary & 1) !== 0) {
|
| /third_party/node/deps/v8/third_party/wasm-api/example/ |
| H A D | memory.cc | 71 // Load binary. in run() 72 std::cout << "Loading binary..." << std::endl; in run() 77 auto binary = wasm::vec<byte_t>::make_uninitialized(file_size); in run() local 78 file.read(binary.get(), file_size); in run() 87 auto module = wasm::Module::make(store, binary); in run()
|
| /third_party/vk-gl-cts/external/vulkancts/framework/vulkan/ |
| H A D | vkPrograms.hpp | 50 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 D | module_test.cpp | 234 // 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 D | shrinker.cpp | 98 // 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 D | shrinker.cpp | 98 // 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 D | module_test.cpp | 234 // 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 D | retrace_restricted_traces.py | 146 binary = os.path.join(args.gn_path, DEFAULT_TEST_SUITE) 148 binary += '.exe' 191 binary,
|
| /third_party/spirv-tools/source/fuzz/ |
| H A D | shrinker.cpp | 98 // 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 D | cfg_test.cpp | 260 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 D | module_test.cpp | 232 // 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/node/deps/v8/tools/ |
| H A D | run_perf.py | 17 "binary": <name of binary to run, default "d8">, 306 def __init__(self, binary = 'd8'): 308 self.binary = binary 353 self.binary = suite.get('binary', parent.binary) 467 if self.binary != 'd8' and '--prof' in extra_flags: 472 if self.binary [all...] |
| /arkcompiler/runtime_core/verifier/tests/ |
| H A D | verify_register_index_test.cpp | 72 std::ifstream base_file(base_file_name, std::ios::binary); in HWTEST_F() 115 std::ifstream base_file(base_file_name, std::ios::binary); in HWTEST_F()
|
| /base/security/appverify/interfaces/innerkits/appverify/test/unittest/src/ |
| H A D | hap_crl_manager_test.cpp | 48 dest.open(destFilePath.c_str(), std::ios::binary | std::ios::out | std::ios::trunc);
in CopyFile() 62 fileStream.open(filePath.c_str(), std::ios::binary | std::ios::out | std::ios::trunc);
in ClearFile() 116 * @tc.expected: step2. binary code of crls is written to file.
in HWTEST_F()
|
| /base/security/security_guard/frameworks/common/utils/src/ |
| H A D | security_guard_utils.cpp | 120 std::ifstream src(srcPath, std::ios::binary);
in CopyFile() 131 std::ofstream dst(dstPath, std::ios::binary);
in CopyFile()
|
| /foundation/communication/netmanager_base/services/netpolicymanager/src/common/ |
| H A D | net_policy_file_event_handler.cpp | 95 std::ifstream oldFile(POLICY_FILE_NAME, std::ios::binary); in Write() 96 std::ofstream newFile(POLICY_FILE_BAK_NAME, std::ios::binary); in Write()
|
| /kernel/linux/linux-5.10/arch/sparc/boot/ |
| H A D | Makefile | 43 OBJCOPYFLAGS_image.bin := -S -O binary -R .note -R .comment 56 -r -b binary $@ -o $@.o
|
| /kernel/linux/linux-6.6/arch/sparc/boot/ |
| H A D | Makefile | 43 OBJCOPYFLAGS_image.bin := -S -O binary -R .note -R .comment 56 -r -b binary $@ -o $@.o
|
| /kernel/linux/linux-5.10/include/linux/ |
| H A D | trace_seq.h | 81 trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary); 104 trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary) in trace_seq_bprintf() argument
|
| /kernel/linux/linux-6.6/include/linux/ |
| H A D | trace_seq.h | 81 trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary); 106 trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary) in trace_seq_bprintf() argument
|
| /third_party/glslang/glslang/MachineIndependent/ |
| H A D | LiveTraverser.h | 6 // 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 D | astc_profile_valgrind.py | 100 Run Valgrind on a single binary. 112 binary = "./bin/astcenc-%s" % encoder 114 binary, "-cl", image, "out.astc", blocksize, quality, "-j", "1"]
|
| /third_party/json/tests/src/ |
| H A D | unit-constructor2.cpp | 74 SECTION("binary") 76 json j = json::binary({1, 2, 3}); 157 SECTION("binary") 159 json j = json::binary({1, 2, 3});
|