Searched refs:binary (Results 1 – 25 of 55) sorted by relevance
123
| /arkcompiler/runtime_core/ |
| D | .gitattributes | 3 # Denote all image files as binary 4 *.png binary 5 *.jpg binary 6 *.gif binary
|
| D | README.md | 26 …verts an ARK bytecode file in text format (*.pa) into a bytecode file in binary format (*.abc). Fo… 27 …er, further optimize the ARK bytecode to generate optimized bytecode file in binary format (*.abc). 31 ├── disassembler # Disassembler that converts an ARK bytecode file in binary format (*.a… 38 ├── libark_defect_scan_aux # Vulnerability defect scanning tool for ARK bytecode file in binary fo… 40 ├── libpandafile # Source code repository of ARK bytecode files (*.abc) in binary format. 42 ├── panda # CLI tool used to execute ARK bytecode files in binary format(*.abc). 75 The ark\_asm assembler converts the text ARK bytecode file into a bytecode file in binary format. 97 Output file: ARK bytecodes in binary format 101 The ark\_disasm disassembler converts binary ARK bytecodes into readable text ARK bytecodes. 121 Input file: ARK bytecodes in binary format
|
| /arkcompiler/ets_frontend/arkguard/src/generator/ |
| D | DictionaryNameGenerator.ts | 50 let binary: string = this.mTransformNumber.toString(BINARY_RADIX).split('').reverse().join(''); 52 for (let i = 0; i < binary.length; i++) { 53 if (binary[i] === '1') {
|
| /arkcompiler/ets_frontend/ |
| D | .gitattributes | 2 as2panda/dist/* binary 4 as2panda/lib/binaryen.js binary
|
| /arkcompiler/ets_frontend/merge_abc/src/ |
| D | protobufSnapshotGenerator.cpp | 30 std::ios::out | std::ios::trunc | std::ios::binary); in GenerateSnapshot() 44 std::ios::in | std::ios::binary); in GenerateProgram() 62 std::ios::in | std::ios::binary); in GetCacheContext() 91 std::ios::out | std::ios::trunc | std::ios::binary); in UpdateCacheFile()
|
| /arkcompiler/ets_frontend/ts2panda/ |
| D | README.md | 11 * [panda binary dumper](doc/binary_dumper.md) 15 #### dump panda binary
|
| /arkcompiler/ets_frontend/es2panda/ |
| D | README.md | 15 - `--dump-size-stat`: Dump binary size statistics 19 - `--output`: Compiler binary output (.abc)
|
| /arkcompiler/ets_frontend/legacy_bin/ |
| D | prebuilts-readme-legacy.md | 1 # legacy binary构建说明
|
| /arkcompiler/runtime_core/bytecode_optimizer/tools/ |
| D | optimizer_coverage.sh | 21 --binary-dir=*)
|
| /arkcompiler/ets_frontend/test_ecma_bcopt/ |
| D | test_bytecode_optimizer_for_js.txt | 2 # source binary: test_bytecode_optimizer_for_js.abc
|
| /arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
| D | snapshot.cpp | 54 std::fstream writer(realPath.c_str(), std::ios::out | std::ios::binary | std::ios::trunc); in Serialize() 82 std::fstream writer(realPath.c_str(), std::ios::out | std::ios::binary | std::ios::trunc); in Serialize() 109 std::fstream write(realPath.c_str(), std::ios::out | std::ios::binary | std::ios::app); in SerializeBuiltins()
|
| /arkcompiler/ets_runtime/docs/ |
| D | environment-setup-and-compilation.md | 42 The binary files related to ARK are available in the following paths:
|
| D | using-the-toolchain.md | 150 The ark\_asm assembler converts the text ARK bytecode file into a bytecode file in binary format. 200 Output file: ARK bytecodes in binary format 204 The ark\_disasm disassembler converts binary ARK bytecodes into readable text ARK bytecodes. 242 Input file: ARK bytecodes in binary format
|
| /arkcompiler/runtime_core/bytecode_optimizer/cmake/ |
| D | coverage.cmake | 18 …COMMAND bash ${PANDA_ROOT}/bytecode_optimizer/tools/optimizer_coverage.sh --binary-dir=${PANDA_BIN…
|
| /arkcompiler/runtime_core/docs/ |
| D | assembly_format.md | 5 …binary files that can be executed by the Panda virtual machine. Please note that this document doe… 13 * When Panda assembler generates a binary executable file, it is not expected to check for language… 27 * Signed/Unsigned decimal/hexadecimal/binary integers not larger than 64 bits. Hexadecimal literals… 107 | `ctor` | Marks a function as object constructor. It will be renamed in binary file according to… 108 | `cctor` | Marks a function as static constructor. It will be renamed in binary file according to… 494 - Assembler doesn't guarantee that functions, records and their fields will be located in binary fi… 529 # After loading the binary, control will be transferred here
|
| D | cfi_directives.md | 6 In case of **compiler-generated** code compilers emit special **debug symbols** in resulting binary…
|
| /arkcompiler/ets_frontend/ts2panda/src/statement/ |
| D | returnStatement.ts | 56 …pandaGen.binary(stmt, ts.SyntaxKind.EqualsEqualsEqualsToken, getVregisterCache(pandaGen, CacheList…
|
| /arkcompiler/toolchain/test/ |
| D | test_helper.gni | 102 "--qemu-binary-path",
|
| /arkcompiler/ets_runtime/ecmascript/compiler/aot_file/ |
| D | an_file_info.cpp | 37 std::ofstream file(rawPath, std::ofstream::binary); in Save()
|
| D | stub_file_info.cpp | 35 std::ofstream file(realPath.c_str(), std::ofstream::binary); in Save()
|
| /arkcompiler/runtime_core/cmake/ |
| D | Testing.cmake | 63 # If OUTPUT_DIRECTORY is not defined, the binary will be put to bin-gtests
|
| D | HostTools.cmake | 15 # we need to have the assembler binary. If we are not
|
| /arkcompiler/toolchain/build/config/compiler/ |
| D | BUILD.gn | 67 # .comment section taking up binary size. 79 # much even when optimization is disabled to get the binary size down. 285 # Reduce the page size from 65536 in order to reduce binary size slightly
|
| /arkcompiler/toolchain/build/config/aosp/ |
| D | config.gni | 49 # Libc++ library directory. Override to use a custom libc++ binary.
|
| /arkcompiler/ets_runtime/ecmascript/pgo_profiler/ |
| D | pgo_profiler_encoder.cpp | 126 … std::fstream::binary | std::fstream::out | std::fstream::in | std::fstream::trunc); in SaveAndRename()
|
123