/arkcompiler/runtime_core/static_core/scripts/llvm/ |
H A D | build_llvm.sh | 22 VERSION=${VERSION:-"main"} # Specifies build and install directory names: 23 PACKAGE_VERSION=${PACKAGE_VERSION:-${VERSION}} 24 BUILD_SUFFIX=${BUILD_SUFFIX:-""} # llvm-<VERSION>-{debug,release}-{aarch64,x86}<BUILD_SUFFIX> 122 INSTALL_DIR_NAME="llvm-${VERSION}-debug-${TARGET}" 167 INSTALL_DIR_NAME="llvm-${VERSION}-release-${TARGET}" 213 INSTALL_DIR_NAME="llvm-${VERSION}-debug-${TARGET}" 258 INSTALL_DIR_NAME="llvm-${VERSION}-release-${TARGET}" 303 INSTALL_DIR_NAME="llvm-${VERSION}-release-${TARGET}" 342 INSTALL_DIR_NAME="llvm-${VERSION} [all...] |
/arkcompiler/runtime_core/static_core/libpandafile/tests/ |
H A D | file_format_version_test.cpp | 25 versionstr += std::to_string(VERSION[i]); in TEST() 31 EXPECT_EQ(GetVersion(VERSION), versionstr); in TEST()
|
H A D | file_item_container_test.cpp | 130 auto newArr = std::array<uint8_t, File::VERSION_SIZE>(VERSION); in TEST()
|
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/prof_dump/ |
H A D | main.cpp | 25 static const std::string VERSION = "0.0.0.1"; member 130 return VERSION; in GetVersion() 149 LOG_NO_TAG(ERROR) << "Ver: " << VERSION; in Main()
|
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/ |
H A D | vmb.py | 31 __all__ = ['main', 'VERSION'] 33 VERSION = '0.0.3' variable 75 if args.command == Command.VERSION: 76 print(VERSION)
|
H A D | __init__.py | 22 __version__ = VERSION # NOQA
|
H A D | cli.py | 38 VERSION = 'version' variable in Command
|
/arkcompiler/runtime_core/static_core/dprof/libdprof/dprof/ |
H A D | profiling_data.cpp | 44 ipc::protocol::Version tmp {ipc::protocol::VERSION}; in DumpAndResetFeatures() 49 ipc::Message msgVersion(ipc::Message::Id::VERSION, std::move(versionData)); in DumpAndResetFeatures()
|
/arkcompiler/runtime_core/static_core/tests/cts-coverage-tool/lib/ |
H A D | version.rb | 17 VERSION = '0.1.0'
|
/arkcompiler/runtime_core/tests/cts-coverage-tool/lib/ |
H A D | version.rb | 17 VERSION = '0.1.0'
|
/arkcompiler/runtime_core/static_core/tests/cts-coverage-tool/test/ |
H A D | spectrac_test.rb | 22 refute_nil ::Spectrac::VERSION
|
/arkcompiler/runtime_core/tests/cts-coverage-tool/test/ |
H A D | spectrac_test.rb | 22 refute_nil ::Spectrac::VERSION
|
/arkcompiler/runtime_core/static_core/dprof/libdprof/dprof/ipc/ |
H A D | ipc_message_protocol.h | 24 const char VERSION[] = "v1"; member
|
H A D | ipc_message.h | 30 VERSION = 0x00, member in ark::dprof::ipc::Message::Id
|
/arkcompiler/ets_runtime/tools/ap_file_viewer/server/ |
H A D | apdump_server.py | 33 VERSION = 'v1.0.0' variable 148 global VERSION 236 self.send_header("data-version", VERSION)
|
/arkcompiler/runtime_core/static_core/dprof/daemon/ |
H A D | main.cpp | 41 if (msg.GetId() != ipc::Message::Id::VERSION) { in CheckVersion() 50 if (tmp.version != ipc::protocol::VERSION) { in CheckVersion()
|
/arkcompiler/runtime_core/static_core/compiler/aot/ |
H A D | aot_file.h | 36 static constexpr std::array VERSION = {'0', '0', '6', '\0'}; member in ark::compiler::AotFile
|
H A D | aot_file.cpp | 75 if (aotHeader->version != VERSION) { in Open()
|
/arkcompiler/runtime_core/static_core/libpandafile/ |
H A D | file.cpp | 544 if (fileVersion < MIN_VERSION || fileVersion > VERSION) { in CheckHeader() 550 LOG(ERROR, PANDAFILE) << "Maximum supported version is " << VersionToString(VERSION); in CheckHeader()
|
H A D | file_item_container.cpp | 634 std::vector<uint8_t> versionVec(std::begin(VERSION), std::end(VERSION)); in WriteHeader()
|
/arkcompiler/runtime_core/static_core/compiler/aot/aot_builder/ |
H A D | aot_builder.cpp | 123 aotHeader_.version = compiler::AotFile::VERSION; in FillHeader()
|