| /third_party/skia/third_party/externals/tint/fuzzers/tint_spirv_tools_fuzzer/ |
| H A D | spirv_reduce_mutator.h | 33 /// Mutates SPIR-V binary by running spirv-reduce tool. 35 /// The initial `binary` must be valid according to `target_env`. Applies at 42 /// @param target_env - the target environment for the `binary`. 43 /// @param binary - SPIR-V binary. Must be valid. 54 std::vector<uint32_t> binary, 90 // The SPIR-V binary that is being reduced. 103 // Whether the last call to the `Mutate` method produced the valid binary. 116 // Whether we want to validate all the binary after each reduction. 119 // The original binary tha [all...] |
| /third_party/skia/third_party/externals/angle2/src/common/ |
| H A D | angleutils.cpp | 22 : mOfs(filePathIn, std::ios::binary | std::ios::out), mFilePath(filePathIn) in SaveFileHelper()
|
| /foundation/ai/neural_network_runtime/frameworks/native/neural_network_runtime/ |
| H A D | nncompiled_cache.cpp | 217 std::ofstream cacheModelStream(cacheModelFile, std::ios::binary | std::ios::out | std::ios::trunc); in GenerateCacheModel() 271 std::ofstream cacheInfoStream(cacheInfoPath, std::ios::binary | std::ios::out | std::ios::trunc); in WriteCacheInfo() 291 std::ifstream infoCacheFile(cacheInfoPath.c_str(), std::ios::in | std::ios::binary); in CheckCacheInfo()
|
| /foundation/CastEngine/castengine_wifi_display/tests/demo/rtp/ |
| H A D | rtp_enc_demo.cpp | 145 std::fstream infile(gFileName, std::ios::in | std::ios_base::binary); in ReadH264File() 207 std::fstream infile(gFileName, std::ios::in | std::ios_base::binary); in ReadAacFile() 251 std::fstream infile(gFileName, std::ios::in | std::ios_base::binary); in ReadG711File()
|
| /foundation/multimedia/av_codec/test/nativedemo/audio_demo/ |
| H A D | avcodec_audio_avbuffer_g711mu_encoder_demo.cpp | 140 std::ifstream file(filePath, std::ios::binary | std::ios::ate); in GetFileSize() 156 inputFile_ = std::make_unique<std::ifstream>(INPUT_FILE_PATH, std::ios::binary); in AEncAvbufferG711muDemo() 157 outputFile_ = std::make_unique<std::ofstream>(OUTPUT_FILE_PATH, std::ios::binary); in AEncAvbufferG711muDemo()
|
| H A D | avcodec_audio_avbuffer_aac_encoder_demo.cpp | 136 std::ifstream file(filePath, std::ios::binary | std::ios::ate); in GetFileSize() 151 inputFile_ = std::make_unique<std::ifstream>(INPUT_FILE_PATH, std::ios::binary); in AudioBufferAacEncDemo() 152 outputFile_ = std::make_unique<std::ofstream>(OUTPUT_FILE_PATH, std::ios::binary); in AudioBufferAacEncDemo()
|
| H A D | avcodec_audio_avbuffer_amrwb_encoder_demo.cpp | 141 std::ifstream file(filePath, std::ios::binary | std::ios::ate); in GetFileSize() 157 inputFile_ = std::make_unique<std::ifstream>(INPUT_FILE_PATH, std::ios::binary); in AEncAvbufferAmrWbDemo() 158 outputFile_ = std::make_unique<std::ofstream>(OUTPUT_FILE_PATH, std::ios::binary); in AEncAvbufferAmrWbDemo()
|
| H A D | avcodec_audio_avbuffer_amrnb_encoder_demo.cpp | 141 std::ifstream file(filePath, std::ios::binary | std::ios::ate); in GetFileSize() 157 inputFile_ = std::make_unique<std::ifstream>(INPUT_FILE_PATH, std::ios::binary); in AEncAvbufferAmrNbDemo() 158 outputFile_ = std::make_unique<std::ofstream>(OUTPUT_FILE_PATH, std::ios::binary); in AEncAvbufferAmrNbDemo()
|
| H A D | avcodec_audio_avbuffer_mp3_encoder_demo.cpp | 141 std::ifstream file(filePath, std::ios::binary | std::ios::ate); in GetFileSize() 157 inputFile_ = std::make_unique<std::ifstream>(INPUT_FILE_PATH, std::ios::binary); in AEncAvbufferMp3Demo() 158 outputFile_ = std::make_unique<std::ofstream>(OUTPUT_FILE_PATH, std::ios::binary); in AEncAvbufferMp3Demo()
|
| /foundation/multimedia/av_codec/test/nativedemo/video_demo/ |
| H A D | avcodec_video_decoder_inner_demo.cpp | 49 outFile_->open(name.data(), std::ios::out | std::ios::binary); in TestConsumerListener() 197 inputFile_->open(inputFilePath.data(), std::ios::in | std::ios::binary); in Start() 202 outFile_->open(outputFilePath.data(), std::ios::out | std::ios::binary); in Start()
|
| /foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/ |
| H A D | sqlite_utils.cpp | 146 std::ifstream src(srcFile.c_str(), std::ios::binary); in CopyFile() 151 std::ofstream dst(destFile.c_str(), std::ios::binary); in CopyFile() 279 std::ofstream src(lockFile.c_str(), std::ios::binary); in TryAccessSlaveLock()
|
| /kernel/linux/linux-5.10/arch/m68k/fpsp040/ |
| H A D | binstr.S | 5 | Description: Converts a 64-bit binary integer to bcd. 7 | Input: 64-bit binary integer in d2:d3, desired length (LEN) in 15 | The 64-bit binary is assumed to have a decimal point before
|
| /kernel/linux/linux-5.10/drivers/char/ |
| H A D | dsp56k.c | 321 struct dsp56k_upload __user *binary = argp; in dsp56k_ioctl() local 323 if(get_user(len, &binary->len) < 0) in dsp56k_ioctl() 325 if(get_user(bin, &binary->bin) < 0) in dsp56k_ioctl()
|
| /kernel/linux/linux-6.6/arch/m68k/fpsp040/ |
| H A D | binstr.S | 5 | Description: Converts a 64-bit binary integer to bcd. 7 | Input: 64-bit binary integer in d2:d3, desired length (LEN) in 15 | The 64-bit binary is assumed to have a decimal point before
|
| /kernel/linux/linux-6.6/drivers/char/ |
| H A D | dsp56k.c | 323 struct dsp56k_upload __user *binary = argp; in dsp56k_ioctl() local 325 if(get_user(len, &binary->len) < 0) in dsp56k_ioctl() 327 if(get_user(bin, &binary->bin) < 0) in dsp56k_ioctl()
|
| /third_party/mesa3d/src/gallium/drivers/radeonsi/ |
| H A D | si_shader.h | 29 * that is, for every API shader, there is exactly one shader binary in 38 * - patch shaders at the binary level 65 * one binary on the output. The result is the same as the non-monolithic 862 /* The following data is all that's needed for binary shaders. */ 863 struct si_shader_binary binary; member 962 struct si_shader_binary binary; member 983 void si_shader_binary_clean(struct si_shader_binary *binary);
|
| /third_party/node/deps/v8/third_party/wasm-api/example/ |
| H A D | hostref.cc | 118 // Load binary. in run() 119 std::cout << "Loading binary..." << std::endl; in run() 124 auto binary = wasm::vec<byte_t>::make_uninitialized(file_size); in run() local 125 file.read(binary.get(), file_size); in run() 134 auto module = wasm::Module::make(store, binary); in run()
|
| /third_party/mesa3d/src/nouveau/codegen/ |
| H A D | nv50_ir_target.cpp | 204 INFO("program binary (%u bytes)", codeSize); in printBinary() 390 // the nvc0 driver will print the binary itself together with the header in emitBinary() 450 RelocEntry::apply(uint32_t *binary, const RelocInfo *info) const in apply() argument 465 binary[offset / 4] &= ~mask; in apply() 466 binary[offset / 4] |= value & mask; in apply()
|
| /third_party/ltp/tools/sparse/sparse-src/ |
| H A D | scheck.c | 104 static void binary(Btor *btor, BoolectorSort s, struct instruction *insn) in binary() function 146 binary(btor, s, insn); in binop() 152 binary(btor, s, insn); in icmp()
|
| /third_party/skia/third_party/externals/angle2/src/tests/ |
| H A D | run_perf_tests.py | 63 def get_binary_name(binary): 65 return '.\\%s.exe' % binary 67 return './%s' % binary
|
| /third_party/vk-gl-cts/framework/opengl/ |
| H A D | gluShaderProgram.hpp | 382 ShaderBinaryDataType binary; member 389 ShaderBinary (const ShaderBinaryDataType binary_) : binary(binary_) in ShaderBinary() 393 ShaderBinary (const ShaderBinaryDataType binary_, glu::ShaderType shaderType_) : binary(binary_) in ShaderBinary()
|
| /third_party/mbedtls/tests/data_files/ |
| H A D | Makefile | 1716 # direct binary comparison using e.g. dumpasn1 1899 $(OPENSSL) smime -sign -binary -in pkcs7_data.bin -out $@ -md sha256 -inkey pkcs7-rsa-expired.key -signer pkcs7-rsa-expired.crt -noattr -outform DER -out $@ 1917 $(OPENSSL) smime -sign -md sha256 -nocerts -noattr -in pkcs7_zerolendata.bin -inkey pkcs7-rsa-sha256-1.key -outform DER -binary -signer pkcs7-rsa-sha256-1.crt -out pkcs7_zerolendata_detached.der 1922 $(OPENSSL) smime -sign -binary -in pkcs7_data.bin -out $@ -md sha256 -signer pkcs7-rsa-sha256-1.pem -noattr -outform DER -out $@ 1927 $(OPENSSL) smime -sign -binary -in pkcs7_data.bin -out $@ -md sha1 -signer pkcs7-rsa-sha256-1.pem -noattr -outform DER -out $@ 1932 $(OPENSSL) smime -sign -binary -in pkcs7_data.bin -out $@ -md sha512 -signer pkcs7-rsa-sha256-1.pem -noattr -outform DER -out $@ 1937 $(OPENSSL) smime -sign -binary -in pkcs7_data.bin -out $@ -md sha256 -signer pkcs7-rsa-sha256-1.pem -nocerts -noattr -outform DER -out $@ 1942 $(OPENSSL) smime -sign -binary -in pkcs7_data.bin -out $@ -md sha256 -signer pkcs7-rsa-sha256-1.pem -nocerts -noattr -nodetach -outform DER -out $@ 1947 $(OPENSSL) smime -sign -binary -in pkcs7_data.bin -out $@ -md sha256 -signer pkcs7-rsa-sha256-1.pem -signer pkcs7-rsa-sha256-2.pem -nocerts -noattr -outform DER -out $@ 1952 $(OPENSSL) smime -sign -binary [all...] |
| /third_party/mesa3d/src/gallium/drivers/asahi/ |
| H A D | agx_state.c | 929 struct util_dynarray binary; in agx_update_shader() local 930 util_dynarray_init(&binary, NULL); in agx_update_shader() 948 agx_compile_shader_nir(nir, &key->base, &binary, &compiled->info); in agx_update_shader() 961 if (binary.size) { in agx_update_shader() 964 ALIGN_POT(binary.size, 256) + (3 * packed_varying_sz), in agx_update_shader() 966 memcpy(compiled->bo->ptr.cpu, binary.data, binary.size); in agx_update_shader() 970 unsigned offs = ALIGN_POT(binary.size, 256); in agx_update_shader() 976 compiled->varyings = compiled->bo->ptr.gpu + ALIGN_POT(binary.size, 256); in agx_update_shader() 980 util_dynarray_fini(&binary); in agx_update_shader() [all...] |
| /third_party/mesa3d/src/panfrost/lib/ |
| H A D | pan_blitter.c | 395 b->binary.size, in pan_blitter_get_blend_shaders() 397 memcpy(bin.cpu, b->binary.data, b->binary.size); in pan_blitter_get_blend_shaders() 610 struct util_dynarray binary; in pan_blitter_get_blit_shader() local 612 util_dynarray_init(&binary, NULL); in pan_blitter_get_blit_shader() 622 GENX(pan_shader_compile)(b.shader, &inputs, &binary, &shader->info); in pan_blitter_get_blit_shader() 630 binary.data, binary.size, in pan_blitter_get_blit_shader() 633 util_dynarray_fini(&binary); in pan_blitter_get_blit_shader() 1157 cfg.binary in pan_preload_emit_dcd() [all...] |
| /third_party/pcre2/pcre2/ |
| H A D | RunGrepTest.bat | 249 (pushd %srcdir% & %pcre2grep% -A1 "before the binary zero" ./testdata/grepinput & popd) >>testtrygrep
253 (pushd %srcdir% & %pcre2grep% -B1 "after the binary zero" ./testdata/grepinput & popd) >>testtrygrep
257 (pushd %srcdir% & %pcre2grep% -B1 -o "\w+ the binary zero" ./testdata/grepinput & popd) >>testtrygrep
261 (pushd %srcdir% & %pcre2grep% -B1 -onH "\w+ the binary zero" ./testdata/grepinput & popd) >>testtrygrep
273 (pushd %srcdir% & %pcre2grep% -on -f ./testdata/greplist -e binary ./testdata/grepinput & popd) >>testtrygrep
460 (pushd %srcdir% & %pcre2grep% --binary-files=without-match "dog" ./testdata/grepbinary & popd) >>testtrygrep 2>&1
468 (pushd %srcdir% & %pcre2grep% --binary-files=text "dog" ./testdata/grepbinary & popd) >>testtrygrep 2>&1
506 (pushd %srcdir% & %pcre2grep% -Ho2 --only-matching=1 -o3 "(\w+) binary (\w+)(\.)?" ./testdata/grepinput & popd) >>testtrygrep
510 (pushd %srcdir% & %pcre2grep% -o3 -Ho2 -o12 --only-matching=1 -o3 --colour=always --om-separator="|" "(\w+) binary (\w+)(\.)?" ./testdata/grepinput & popd) >>testtrygrep
589 (pushd %srcdir% & %pcre2grep% -HO "$0:$2$1$3" "(\w+) binary (\ [all...] |