diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 658308b39..86ca81c38 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -76,7 +76,7 @@ jobs: ${{ env.cache-name }}- - name: Cache CMake Build - uses: hendrikmuhs/ccache-action@v1.2.14 + uses: hendrikmuhs/ccache-action@v1.2.17 env: cache-name: ${{ runner.os }}-sdl-cache-cmake-build with: @@ -111,7 +111,7 @@ jobs: - name: Setup Qt uses: jurplel/install-qt-action@v4 with: - version: 6.8.2 + version: 6.9.0 host: windows target: desktop arch: win64_msvc2022_64 @@ -130,7 +130,7 @@ jobs: ${{ env.cache-name }}- - name: Cache CMake Build - uses: hendrikmuhs/ccache-action@v1.2.14 + uses: hendrikmuhs/ccache-action@v1.2.17 env: cache-name: ${{ runner.os }}-qt-cache-cmake-build with: @@ -186,7 +186,7 @@ jobs: ${{ env.cache-name }}- - name: Cache CMake Build - uses: hendrikmuhs/ccache-action@v1.2.14 + uses: hendrikmuhs/ccache-action@v1.2.17 env: cache-name: ${{runner.os}}-sdl-cache-cmake-build with: @@ -228,7 +228,7 @@ jobs: - name: Setup Qt uses: jurplel/install-qt-action@v4 with: - version: 6.8.2 + version: 6.9.0 host: mac target: desktop arch: clang_64 @@ -247,7 +247,7 @@ jobs: ${{ env.cache-name }}- - name: Cache CMake Build - uses: hendrikmuhs/ccache-action@v1.2.14 + uses: hendrikmuhs/ccache-action@v1.2.17 env: cache-name: ${{runner.os}}-qt-cache-cmake-build with: @@ -296,7 +296,7 @@ jobs: ${{ env.cache-name }}- - name: Cache CMake Build - uses: hendrikmuhs/ccache-action@v1.2.14 + uses: hendrikmuhs/ccache-action@v1.2.17 env: cache-name: ${{ runner.os }}-sdl-cache-cmake-build with: @@ -352,7 +352,7 @@ jobs: ${{ env.cache-name }}- - name: Cache CMake Build - uses: hendrikmuhs/ccache-action@v1.2.14 + uses: hendrikmuhs/ccache-action@v1.2.17 env: cache-name: ${{ runner.os }}-qt-cache-cmake-build with: @@ -399,7 +399,7 @@ jobs: ${{ env.cache-name }}- - name: Cache CMake Build - uses: hendrikmuhs/ccache-action@v1.2.14 + uses: hendrikmuhs/ccache-action@v1.2.17 env: cache-name: ${{ runner.os }}-sdl-gcc-cache-cmake-build with: @@ -435,7 +435,7 @@ jobs: ${{ env.cache-name }}- - name: Cache CMake Build - uses: hendrikmuhs/ccache-action@v1.2.14 + uses: hendrikmuhs/ccache-action@v1.2.17 env: cache-name: ${{ runner.os }}-qt-gcc-cache-cmake-build with: diff --git a/CMakeLists.txt b/CMakeLists.txt index 95766bc67..b05a175bb 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ set(CMAKE_CXX_STANDARD 23) set(CMAKE_CXX_STANDARD_REQUIRED True) if(APPLE) - enable_language(OBJC) + list(APPEND ADDITIONAL_LANGUAGES OBJC) set(CMAKE_OSX_DEPLOYMENT_TARGET 14) endif() @@ -16,7 +16,7 @@ if (NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE Release) endif() -project(shadPS4 CXX C ASM) +project(shadPS4 CXX C ASM ${ADDITIONAL_LANGUAGES}) # Forcing PIE makes sure that the base address is high enough so that it doesn't clash with the PS4 memory. if(UNIX AND NOT APPLE) @@ -195,6 +195,7 @@ endif() add_subdirectory(externals) include_directories(src) +include_directories(Resources) if(ENABLE_QT_GUI) find_package(Qt6 REQUIRED COMPONENTS Widgets Concurrent LinguistTools Network Multimedia) @@ -397,20 +398,17 @@ set(VIDEOOUT_LIB src/core/libraries/videoout/buffer.h src/core/libraries/videoout/videoout_error.h ) -set(LIBC_SOURCES src/core/libraries/libc_internal/libc_internal.cpp +set(HLE_LIBC_INTERNAL_LIB src/core/libraries/libc_internal/libc_internal.cpp src/core/libraries/libc_internal/libc_internal.h - src/core/libraries/libc_internal/libc_internal_mspace.cpp - src/core/libraries/libc_internal/libc_internal_mspace.h src/core/libraries/libc_internal/libc_internal_io.cpp src/core/libraries/libc_internal/libc_internal_io.h src/core/libraries/libc_internal/libc_internal_memory.cpp src/core/libraries/libc_internal/libc_internal_memory.h src/core/libraries/libc_internal/libc_internal_str.cpp src/core/libraries/libc_internal/libc_internal_str.h - src/core/libraries/libc_internal/libc_internal_stream.cpp - src/core/libraries/libc_internal/libc_internal_stream.h src/core/libraries/libc_internal/libc_internal_math.cpp src/core/libraries/libc_internal/libc_internal_math.h + src/core/libraries/libc_internal/printf.h ) set(IME_LIB src/core/libraries/ime/error_dialog.cpp @@ -665,7 +663,7 @@ set(CORE src/core/aerolib/stubs.cpp ${KERNEL_LIB} ${NETWORK_LIBS} ${SYSTEM_LIBS} - ${LIBC_SOURCES} + ${HLE_LIBC_INTERNAL_LIB} ${PAD_LIB} ${VIDEOOUT_LIB} ${NP_LIBS} @@ -1105,6 +1103,19 @@ add_subdirectory(${HOST_SHADERS_INCLUDE}) add_dependencies(shadps4 host_shaders) target_include_directories(shadps4 PRIVATE ${HOST_SHADERS_INCLUDE}) +# embed resources + +include(CMakeRC) +cmrc_add_resource_library(embedded-resources + ALIAS res::embedded + NAMESPACE res + src/images/bronze.png + src/images/gold.png + src/images/platinum.png + src/images/silver.png) + +target_link_libraries(shadps4 PRIVATE res::embedded) + # ImGui resources add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/src/imgui/renderer) add_dependencies(shadps4 ImGui_Resources) diff --git a/README.md b/README.md index 523eb1d90..9259ab875 100644 --- a/README.md +++ b/README.md @@ -163,7 +163,7 @@ A few noteworthy teams/projects who've helped us along the way are: - **yuzu**: Our shader compiler has been designed with yuzu's Hades compiler as a blueprint. This allowed us to focus on the challenges of emulating a modern AMD GPU while having a high-quality optimizing shader compiler implementation as a base. -- [**hydra**](https://github.com/hydra-emu/hydra): A multisystem, multiplatform emulator (chip-8, GB, NES, N64) from Paris. +- [**felix86**](https://github.com/OFFTKP/felix86): A new x86-64 → RISC-V Linux userspace emulator # License diff --git a/REUSE.toml b/REUSE.toml index 3bc09e328..d8f31c2f2 100644 --- a/REUSE.toml +++ b/REUSE.toml @@ -20,6 +20,10 @@ path = [ "documents/Screenshots/Linux/*", "externals/MoltenVK/MoltenVK_icd.json", "scripts/ps4_names.txt", + "src/images/bronze.png", + "src/images/gold.png", + "src/images/platinum.png", + "src/images/silver.png", "src/images/about_icon.png", "src/images/controller_icon.png", "src/images/discord.png", @@ -103,3 +107,7 @@ path = "externals/gcn/include/**" SPDX-FileCopyrightText = "NONE" SPDX-License-Identifier = "CC0-1.0" +[[annotations]] +path = "cmake/CMakeRC.cmake" +SPDX-FileCopyrightText = "Copyright (c) 2017 vector-of-bool " +SPDX-License-Identifier = "MIT" \ No newline at end of file diff --git a/cmake/CMakeRC.cmake b/cmake/CMakeRC.cmake new file mode 100644 index 000000000..cea12fba7 --- /dev/null +++ b/cmake/CMakeRC.cmake @@ -0,0 +1,666 @@ +# MIT License +# +# Copyright (c) 2017 vector-of-bool +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. + +# This block is executed when generating an intermediate resource file, not when +# running in CMake configure mode +if(_CMRC_GENERATE_MODE) + # Read in the digits + file(READ "${INPUT_FILE}" bytes HEX) + # Format each pair into a character literal. Heuristics seem to favor doing + # the conversion in groups of five for fastest conversion + string(REGEX REPLACE "(..)(..)(..)(..)(..)" "'\\\\x\\1','\\\\x\\2','\\\\x\\3','\\\\x\\4','\\\\x\\5'," chars "${bytes}") + # Since we did this in groups, we have some leftovers to clean up + string(LENGTH "${bytes}" n_bytes2) + math(EXPR n_bytes "${n_bytes2} / 2") + math(EXPR remainder "${n_bytes} % 5") # <-- '5' is the grouping count from above + set(cleanup_re "$") + set(cleanup_sub ) + while(remainder) + set(cleanup_re "(..)${cleanup_re}") + set(cleanup_sub "'\\\\x\\${remainder}',${cleanup_sub}") + math(EXPR remainder "${remainder} - 1") + endwhile() + if(NOT cleanup_re STREQUAL "$") + string(REGEX REPLACE "${cleanup_re}" "${cleanup_sub}" chars "${chars}") + endif() + string(CONFIGURE [[ + namespace { const char file_array[] = { @chars@ 0 }; } + namespace cmrc { namespace @NAMESPACE@ { namespace res_chars { + extern const char* const @SYMBOL@_begin = file_array; + extern const char* const @SYMBOL@_end = file_array + @n_bytes@; + }}} + ]] code) + file(WRITE "${OUTPUT_FILE}" "${code}") + # Exit from the script. Nothing else needs to be processed + return() +endif() + +set(_version 2.0.0) + +cmake_minimum_required(VERSION 3.12) +include(CMakeParseArguments) + +if(COMMAND cmrc_add_resource_library) + if(NOT DEFINED _CMRC_VERSION OR NOT (_version STREQUAL _CMRC_VERSION)) + message(WARNING "More than one CMakeRC version has been included in this project.") + endif() + # CMakeRC has already been included! Don't do anything + return() +endif() + +set(_CMRC_VERSION "${_version}" CACHE INTERNAL "CMakeRC version. Used for checking for conflicts") + +set(_CMRC_SCRIPT "${CMAKE_CURRENT_LIST_FILE}" CACHE INTERNAL "Path to CMakeRC script") + +function(_cmrc_normalize_path var) + set(path "${${var}}") + file(TO_CMAKE_PATH "${path}" path) + while(path MATCHES "//") + string(REPLACE "//" "/" path "${path}") + endwhile() + string(REGEX REPLACE "/+$" "" path "${path}") + set("${var}" "${path}" PARENT_SCOPE) +endfunction() + +get_filename_component(_inc_dir "${CMAKE_BINARY_DIR}/_cmrc/include" ABSOLUTE) +set(CMRC_INCLUDE_DIR "${_inc_dir}" CACHE INTERNAL "Directory for CMakeRC include files") +# Let's generate the primary include file +file(MAKE_DIRECTORY "${CMRC_INCLUDE_DIR}/cmrc") +set(hpp_content [==[ +#ifndef CMRC_CMRC_HPP_INCLUDED +#define CMRC_CMRC_HPP_INCLUDED + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#if !(defined(__EXCEPTIONS) || defined(__cpp_exceptions) || defined(_CPPUNWIND) || defined(CMRC_NO_EXCEPTIONS)) +#define CMRC_NO_EXCEPTIONS 1 +#endif + +namespace cmrc { namespace detail { struct dummy; } } + +#define CMRC_DECLARE(libid) \ + namespace cmrc { namespace detail { \ + struct dummy; \ + static_assert(std::is_same::value, "CMRC_DECLARE() must only appear at the global namespace"); \ + } } \ + namespace cmrc { namespace libid { \ + cmrc::embedded_filesystem get_filesystem(); \ + } } static_assert(true, "") + +namespace cmrc { + +class file { + const char* _begin = nullptr; + const char* _end = nullptr; + +public: + using iterator = const char*; + using const_iterator = iterator; + iterator begin() const noexcept { return _begin; } + iterator cbegin() const noexcept { return _begin; } + iterator end() const noexcept { return _end; } + iterator cend() const noexcept { return _end; } + std::size_t size() const { return static_cast(std::distance(begin(), end())); } + + file() = default; + file(iterator beg, iterator end) noexcept : _begin(beg), _end(end) {} +}; + +class directory_entry; + +namespace detail { + +class directory; +class file_data; + +class file_or_directory { + union _data_t { + class file_data* file_data; + class directory* directory; + } _data; + bool _is_file = true; + +public: + explicit file_or_directory(file_data& f) { + _data.file_data = &f; + } + explicit file_or_directory(directory& d) { + _data.directory = &d; + _is_file = false; + } + bool is_file() const noexcept { + return _is_file; + } + bool is_directory() const noexcept { + return !is_file(); + } + const directory& as_directory() const noexcept { + assert(!is_file()); + return *_data.directory; + } + const file_data& as_file() const noexcept { + assert(is_file()); + return *_data.file_data; + } +}; + +class file_data { +public: + const char* begin_ptr; + const char* end_ptr; + file_data(const file_data&) = delete; + file_data(const char* b, const char* e) : begin_ptr(b), end_ptr(e) {} +}; + +inline std::pair split_path(const std::string& path) { + auto first_sep = path.find("/"); + if (first_sep == path.npos) { + return std::make_pair(path, ""); + } else { + return std::make_pair(path.substr(0, first_sep), path.substr(first_sep + 1)); + } +} + +struct created_subdirectory { + class directory& directory; + class file_or_directory& index_entry; +}; + +class directory { + std::list _files; + std::list _dirs; + std::map _index; + + using base_iterator = std::map::const_iterator; + +public: + + directory() = default; + directory(const directory&) = delete; + + created_subdirectory add_subdir(std::string name) & { + _dirs.emplace_back(); + auto& back = _dirs.back(); + auto& fod = _index.emplace(name, file_or_directory{back}).first->second; + return created_subdirectory{back, fod}; + } + + file_or_directory* add_file(std::string name, const char* begin, const char* end) & { + assert(_index.find(name) == _index.end()); + _files.emplace_back(begin, end); + return &_index.emplace(name, file_or_directory{_files.back()}).first->second; + } + + const file_or_directory* get(const std::string& path) const { + auto pair = split_path(path); + auto child = _index.find(pair.first); + if (child == _index.end()) { + return nullptr; + } + auto& entry = child->second; + if (pair.second.empty()) { + // We're at the end of the path + return &entry; + } + + if (entry.is_file()) { + // We can't traverse into a file. Stop. + return nullptr; + } + // Keep going down + return entry.as_directory().get(pair.second); + } + + class iterator { + base_iterator _base_iter; + base_iterator _end_iter; + public: + using value_type = directory_entry; + using difference_type = std::ptrdiff_t; + using pointer = const value_type*; + using reference = const value_type&; + using iterator_category = std::input_iterator_tag; + + iterator() = default; + explicit iterator(base_iterator iter, base_iterator end) : _base_iter(iter), _end_iter(end) {} + + iterator begin() const noexcept { + return *this; + } + + iterator end() const noexcept { + return iterator(_end_iter, _end_iter); + } + + inline value_type operator*() const noexcept; + + bool operator==(const iterator& rhs) const noexcept { + return _base_iter == rhs._base_iter; + } + + bool operator!=(const iterator& rhs) const noexcept { + return !(*this == rhs); + } + + iterator& operator++() noexcept { + ++_base_iter; + return *this; + } + + iterator operator++(int) noexcept { + auto cp = *this; + ++_base_iter; + return cp; + } + }; + + using const_iterator = iterator; + + iterator begin() const noexcept { + return iterator(_index.begin(), _index.end()); + } + + iterator end() const noexcept { + return iterator(); + } +}; + +inline std::string normalize_path(std::string path) { + while (path.find("/") == 0) { + path.erase(path.begin()); + } + while (!path.empty() && (path.rfind("/") == path.size() - 1)) { + path.pop_back(); + } + auto off = path.npos; + while ((off = path.find("//")) != path.npos) { + path.erase(path.begin() + static_cast(off)); + } + return path; +} + +using index_type = std::map; + +} // detail + +class directory_entry { + std::string _fname; + const detail::file_or_directory* _item; + +public: + directory_entry() = delete; + explicit directory_entry(std::string filename, const detail::file_or_directory& item) + : _fname(filename) + , _item(&item) + {} + + const std::string& filename() const & { + return _fname; + } + std::string filename() const && { + return std::move(_fname); + } + + bool is_file() const { + return _item->is_file(); + } + + bool is_directory() const { + return _item->is_directory(); + } +}; + +directory_entry detail::directory::iterator::operator*() const noexcept { + assert(begin() != end()); + return directory_entry(_base_iter->first, _base_iter->second); +} + +using directory_iterator = detail::directory::iterator; + +class embedded_filesystem { + // Never-null: + const cmrc::detail::index_type* _index; + const detail::file_or_directory* _get(std::string path) const { + path = detail::normalize_path(path); + auto found = _index->find(path); + if (found == _index->end()) { + return nullptr; + } else { + return found->second; + } + } + +public: + explicit embedded_filesystem(const detail::index_type& index) + : _index(&index) + {} + + file open(const std::string& path) const { + auto entry_ptr = _get(path); + if (!entry_ptr || !entry_ptr->is_file()) { +#ifdef CMRC_NO_EXCEPTIONS + fprintf(stderr, "Error no such file or directory: %s\n", path.c_str()); + abort(); +#else + throw std::system_error(make_error_code(std::errc::no_such_file_or_directory), path); +#endif + } + auto& dat = entry_ptr->as_file(); + return file{dat.begin_ptr, dat.end_ptr}; + } + + bool is_file(const std::string& path) const noexcept { + auto entry_ptr = _get(path); + return entry_ptr && entry_ptr->is_file(); + } + + bool is_directory(const std::string& path) const noexcept { + auto entry_ptr = _get(path); + return entry_ptr && entry_ptr->is_directory(); + } + + bool exists(const std::string& path) const noexcept { + return !!_get(path); + } + + directory_iterator iterate_directory(const std::string& path) const { + auto entry_ptr = _get(path); + if (!entry_ptr) { +#ifdef CMRC_NO_EXCEPTIONS + fprintf(stderr, "Error no such file or directory: %s\n", path.c_str()); + abort(); +#else + throw std::system_error(make_error_code(std::errc::no_such_file_or_directory), path); +#endif + } + if (!entry_ptr->is_directory()) { +#ifdef CMRC_NO_EXCEPTIONS + fprintf(stderr, "Error not a directory: %s\n", path.c_str()); + abort(); +#else + throw std::system_error(make_error_code(std::errc::not_a_directory), path); +#endif + } + return entry_ptr->as_directory().begin(); + } +}; + +} + +#endif // CMRC_CMRC_HPP_INCLUDED +]==]) + +set(cmrc_hpp "${CMRC_INCLUDE_DIR}/cmrc/cmrc.hpp" CACHE INTERNAL "") +set(_generate 1) +if(EXISTS "${cmrc_hpp}") + file(READ "${cmrc_hpp}" _current) + if(_current STREQUAL hpp_content) + set(_generate 0) + endif() +endif() +file(GENERATE OUTPUT "${cmrc_hpp}" CONTENT "${hpp_content}" CONDITION ${_generate}) + +add_library(cmrc-base INTERFACE) +target_include_directories(cmrc-base INTERFACE $) +# Signal a basic C++11 feature to require C++11. +target_compile_features(cmrc-base INTERFACE cxx_nullptr) +set_property(TARGET cmrc-base PROPERTY INTERFACE_CXX_EXTENSIONS OFF) +add_library(cmrc::base ALIAS cmrc-base) + +function(cmrc_add_resource_library name) + set(args ALIAS NAMESPACE TYPE) + cmake_parse_arguments(ARG "" "${args}" "" "${ARGN}") + # Generate the identifier for the resource library's namespace + set(ns_re "[a-zA-Z_][a-zA-Z0-9_]*") + if(NOT DEFINED ARG_NAMESPACE) + # Check that the library name is also a valid namespace + if(NOT name MATCHES "${ns_re}") + message(SEND_ERROR "Library name is not a valid namespace. Specify the NAMESPACE argument") + endif() + set(ARG_NAMESPACE "${name}") + else() + if(NOT ARG_NAMESPACE MATCHES "${ns_re}") + message(SEND_ERROR "NAMESPACE for ${name} is not a valid C++ namespace identifier (${ARG_NAMESPACE})") + endif() + endif() + set(libname "${name}") + # Check that type is either "STATIC" or "OBJECT", or default to "STATIC" if + # not set + if(NOT DEFINED ARG_TYPE) + set(ARG_TYPE STATIC) + elseif(NOT "${ARG_TYPE}" MATCHES "^(STATIC|OBJECT)$") + message(SEND_ERROR "${ARG_TYPE} is not a valid TYPE (STATIC and OBJECT are acceptable)") + set(ARG_TYPE STATIC) + endif() + # Generate a library with the compiled in character arrays. + string(CONFIGURE [=[ + #include + #include + #include + + namespace cmrc { + namespace @ARG_NAMESPACE@ { + + namespace res_chars { + // These are the files which are available in this resource library + $, + > + } + + namespace { + + const cmrc::detail::index_type& + get_root_index() { + static cmrc::detail::directory root_directory_; + static cmrc::detail::file_or_directory root_directory_fod{root_directory_}; + static cmrc::detail::index_type root_index; + root_index.emplace("", &root_directory_fod); + struct dir_inl { + class cmrc::detail::directory& directory; + }; + dir_inl root_directory_dir{root_directory_}; + (void)root_directory_dir; + $, + > + $, + > + return root_index; + } + + } + + cmrc::embedded_filesystem get_filesystem() { + static auto& index = get_root_index(); + return cmrc::embedded_filesystem{index}; + } + + } // @ARG_NAMESPACE@ + } // cmrc + ]=] cpp_content @ONLY) + get_filename_component(libdir "${CMAKE_CURRENT_BINARY_DIR}/__cmrc_${name}" ABSOLUTE) + get_filename_component(lib_tmp_cpp "${libdir}/lib_.cpp" ABSOLUTE) + string(REPLACE "\n " "\n" cpp_content "${cpp_content}") + file(GENERATE OUTPUT "${lib_tmp_cpp}" CONTENT "${cpp_content}") + get_filename_component(libcpp "${libdir}/lib.cpp" ABSOLUTE) + add_custom_command(OUTPUT "${libcpp}" + DEPENDS "${lib_tmp_cpp}" "${cmrc_hpp}" + COMMAND ${CMAKE_COMMAND} -E copy_if_different "${lib_tmp_cpp}" "${libcpp}" + COMMENT "Generating ${name} resource loader" + ) + # Generate the actual static library. Each source file is just a single file + # with a character array compiled in containing the contents of the + # corresponding resource file. + add_library(${name} ${ARG_TYPE} ${libcpp}) + set_property(TARGET ${name} PROPERTY CMRC_LIBDIR "${libdir}") + set_property(TARGET ${name} PROPERTY CMRC_NAMESPACE "${ARG_NAMESPACE}") + target_link_libraries(${name} PUBLIC cmrc::base) + set_property(TARGET ${name} PROPERTY CMRC_IS_RESOURCE_LIBRARY TRUE) + if(ARG_ALIAS) + add_library("${ARG_ALIAS}" ALIAS ${name}) + endif() + cmrc_add_resources(${name} ${ARG_UNPARSED_ARGUMENTS}) +endfunction() + +function(_cmrc_register_dirs name dirpath) + if(dirpath STREQUAL "") + return() + endif() + # Skip this dir if we have already registered it + get_target_property(registered "${name}" _CMRC_REGISTERED_DIRS) + if(dirpath IN_LIST registered) + return() + endif() + # Register the parent directory first + get_filename_component(parent "${dirpath}" DIRECTORY) + if(NOT parent STREQUAL "") + _cmrc_register_dirs("${name}" "${parent}") + endif() + # Now generate the registration + set_property(TARGET "${name}" APPEND PROPERTY _CMRC_REGISTERED_DIRS "${dirpath}") + _cm_encode_fpath(sym "${dirpath}") + if(parent STREQUAL "") + set(parent_sym root_directory) + else() + _cm_encode_fpath(parent_sym "${parent}") + endif() + get_filename_component(leaf "${dirpath}" NAME) + set_property( + TARGET "${name}" + APPEND PROPERTY CMRC_MAKE_DIRS + "static auto ${sym}_dir = ${parent_sym}_dir.directory.add_subdir(\"${leaf}\")\;" + "root_index.emplace(\"${dirpath}\", &${sym}_dir.index_entry)\;" + ) +endfunction() + +function(cmrc_add_resources name) + get_target_property(is_reslib ${name} CMRC_IS_RESOURCE_LIBRARY) + if(NOT TARGET ${name} OR NOT is_reslib) + message(SEND_ERROR "cmrc_add_resources called on target '${name}' which is not an existing resource library") + return() + endif() + + set(options) + set(args WHENCE PREFIX) + set(list_args) + cmake_parse_arguments(ARG "${options}" "${args}" "${list_args}" "${ARGN}") + + if(NOT ARG_WHENCE) + set(ARG_WHENCE ${CMAKE_CURRENT_SOURCE_DIR}) + endif() + _cmrc_normalize_path(ARG_WHENCE) + get_filename_component(ARG_WHENCE "${ARG_WHENCE}" ABSOLUTE) + + # Generate the identifier for the resource library's namespace + get_target_property(lib_ns "${name}" CMRC_NAMESPACE) + + get_target_property(libdir ${name} CMRC_LIBDIR) + get_target_property(target_dir ${name} SOURCE_DIR) + file(RELATIVE_PATH reldir "${target_dir}" "${CMAKE_CURRENT_SOURCE_DIR}") + if(reldir MATCHES "^\\.\\.") + message(SEND_ERROR "Cannot call cmrc_add_resources in a parent directory from the resource library target") + return() + endif() + + foreach(input IN LISTS ARG_UNPARSED_ARGUMENTS) + _cmrc_normalize_path(input) + get_filename_component(abs_in "${input}" ABSOLUTE) + # Generate a filename based on the input filename that we can put in + # the intermediate directory. + file(RELATIVE_PATH relpath "${ARG_WHENCE}" "${abs_in}") + if(relpath MATCHES "^\\.\\.") + # For now we just error on files that exist outside of the soure dir. + message(SEND_ERROR "Cannot add file '${input}': File must be in a subdirectory of ${ARG_WHENCE}") + continue() + endif() + if(DEFINED ARG_PREFIX) + _cmrc_normalize_path(ARG_PREFIX) + endif() + if(ARG_PREFIX AND NOT ARG_PREFIX MATCHES "/$") + set(ARG_PREFIX "${ARG_PREFIX}/") + endif() + get_filename_component(dirpath "${ARG_PREFIX}${relpath}" DIRECTORY) + _cmrc_register_dirs("${name}" "${dirpath}") + get_filename_component(abs_out "${libdir}/intermediate/${ARG_PREFIX}${relpath}.cpp" ABSOLUTE) + # Generate a symbol name relpath the file's character array + _cm_encode_fpath(sym "${relpath}") + # Get the symbol name for the parent directory + if(dirpath STREQUAL "") + set(parent_sym root_directory) + else() + _cm_encode_fpath(parent_sym "${dirpath}") + endif() + # Generate the rule for the intermediate source file + _cmrc_generate_intermediate_cpp(${lib_ns} ${sym} "${abs_out}" "${abs_in}") + target_sources(${name} PRIVATE "${abs_out}") + set_property(TARGET ${name} APPEND PROPERTY CMRC_EXTERN_DECLS + "// Pointers to ${input}" + "extern const char* const ${sym}_begin\;" + "extern const char* const ${sym}_end\;" + ) + get_filename_component(leaf "${relpath}" NAME) + set_property( + TARGET ${name} + APPEND PROPERTY CMRC_MAKE_FILES + "root_index.emplace(" + " \"${ARG_PREFIX}${relpath}\"," + " ${parent_sym}_dir.directory.add_file(" + " \"${leaf}\"," + " res_chars::${sym}_begin," + " res_chars::${sym}_end" + " )" + ")\;" + ) + endforeach() +endfunction() + +function(_cmrc_generate_intermediate_cpp lib_ns symbol outfile infile) + add_custom_command( + # This is the file we will generate + OUTPUT "${outfile}" + # These are the primary files that affect the output + DEPENDS "${infile}" "${_CMRC_SCRIPT}" + COMMAND + "${CMAKE_COMMAND}" + -D_CMRC_GENERATE_MODE=TRUE + -DNAMESPACE=${lib_ns} + -DSYMBOL=${symbol} + "-DINPUT_FILE=${infile}" + "-DOUTPUT_FILE=${outfile}" + -P "${_CMRC_SCRIPT}" + COMMENT "Generating intermediate file for ${infile}" + ) +endfunction() + +function(_cm_encode_fpath var fpath) + string(MAKE_C_IDENTIFIER "${fpath}" ident) + string(MD5 hash "${fpath}") + string(SUBSTRING "${hash}" 0 4 hash) + set(${var} f_${hash}_${ident} PARENT_SCOPE) +endfunction() diff --git a/documents/building-linux.md b/documents/building-linux.md index 4ca953af6..18ddab0c6 100644 --- a/documents/building-linux.md +++ b/documents/building-linux.md @@ -36,7 +36,7 @@ sudo dnf install clang git cmake libatomic alsa-lib-devel \ ```bash sudo pacman -S base-devel clang git cmake sndio jack2 openal \ - qt6-base qt6-declarative qt6-multimedia sdl2 \ + qt6-base qt6-declarative qt6-multimedia qt6-tools sdl2 \ vulkan-validation-layers libpng ``` diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt index 4ce5636d8..bb434677d 100644 --- a/externals/CMakeLists.txt +++ b/externals/CMakeLists.txt @@ -18,8 +18,6 @@ endif() # Boost if (NOT TARGET Boost::headers) - set(BOOST_ROOT "${CMAKE_SOURCE_DIR}/externals/ext-boost" CACHE STRING "") - set(Boost_NO_SYSTEM_PATHS ON CACHE BOOL "") add_subdirectory(ext-boost) endif() @@ -77,6 +75,7 @@ endif() # SDL3 if (NOT TARGET SDL3::SDL3) + set(SDL_TEST_LIBRARY OFF) set(SDL_PIPEWIRE OFF) add_subdirectory(sdl3) endif() @@ -131,6 +130,14 @@ endif() # Toml11 if (NOT TARGET toml11::toml11) add_subdirectory(toml11) + + if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang") + if (CMAKE_CXX_COMPILER_FRONTEND_VARIANT STREQUAL "MSVC") + get_target_property(_toml11_compile_options toml11 INTERFACE_COMPILE_OPTIONS) + list(REMOVE_ITEM _toml11_compile_options "/Zc:preprocessor") + set_target_properties(toml11 PROPERTIES INTERFACE_COMPILE_OPTIONS ${_toml11_compile_options}) + endif() + endif() endif() # xxHash diff --git a/externals/LibAtrac9 b/externals/LibAtrac9 index 9640129dc..ec8899dad 160000 --- a/externals/LibAtrac9 +++ b/externals/LibAtrac9 @@ -1 +1 @@ -Subproject commit 9640129dc6f2afbca6ceeca3019856e8653a5fb2 +Subproject commit ec8899dadf393f655f2871a94e0fe4b3d6220c9a diff --git a/externals/MoltenVK/MoltenVK b/externals/MoltenVK/MoltenVK index 0c090001c..2048427e5 160000 --- a/externals/MoltenVK/MoltenVK +++ b/externals/MoltenVK/MoltenVK @@ -1 +1 @@ -Subproject commit 0c090001cb42997031cfe43914340e2639944972 +Subproject commit 2048427e50f9eb20f2b8f98d316ecaee398c9b91 diff --git a/externals/MoltenVK/SPIRV-Cross b/externals/MoltenVK/SPIRV-Cross index 1a7b7ef6d..2c32b6bf8 160000 --- a/externals/MoltenVK/SPIRV-Cross +++ b/externals/MoltenVK/SPIRV-Cross @@ -1 +1 @@ -Subproject commit 1a7b7ef6de02cf6767e42b10ddad217c45e90d47 +Subproject commit 2c32b6bf86f3c4a5539aa1f0bacbd59fe61759cf diff --git a/externals/gcn/CMakeLists.txt b/externals/gcn/CMakeLists.txt index 592f28d0d..f5c612be1 100644 --- a/externals/gcn/CMakeLists.txt +++ b/externals/gcn/CMakeLists.txt @@ -3,6 +3,10 @@ project(gcn LANGUAGES CXX) -add_library(gcn dummy.cpp) +add_library(gcn INTERFACE) +target_sources(gcn PRIVATE + "include/gcn/si_ci_vi_merged_offset.h" + "include/gcn/si_ci_vi_merged_pm4_it_opcodes.h" +) target_include_directories(gcn INTERFACE include) diff --git a/externals/gcn/dummy.cpp b/externals/gcn/dummy.cpp deleted file mode 100644 index 4fd1bb62d..000000000 --- a/externals/gcn/dummy.cpp +++ /dev/null @@ -1,2 +0,0 @@ -// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project -// SPDX-License-Identifier: GPL-2.0-or-later diff --git a/src/common/config.cpp b/src/common/config.cpp index 32c5e670b..0b720c5b4 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -31,10 +31,7 @@ std::filesystem::path find_fs_path_or(const basic_value& v, const K& ky, namespace Config { -static bool isHDRAllowed = false; static bool isNeo = false; -static bool isFullscreen = false; -static std::string fullscreenMode = "borderless"; static bool playBGM = false; static bool isTrophyPopupDisabled = false; static int BGMvolume = 50; @@ -69,6 +66,7 @@ static bool vkHostMarkers = false; static bool vkGuestMarkers = false; static bool rdocEnable = false; static bool isFpsColor = true; +static bool isSeparateLogFilesEnabled = false; static s16 cursorState = HideCursorState::Idle; static int cursorHideTimeout = 5; // 5 seconds (default) static bool useUnifiedInputConfig = true; @@ -102,6 +100,9 @@ std::vector m_recent_files; std::string emulator_language = "en_US"; static int backgroundImageOpacity = 50; static bool showBackgroundImage = true; +static bool isFullscreen = false; +static std::string fullscreenMode = "Windowed"; +static bool isHDRAllowed = false; // Language u32 m_language = 1; // english @@ -451,6 +452,10 @@ void setLogFilter(const std::string& type) { logFilter = type; } +void setSeparateLogFilesEnabled(bool enabled) { + isSeparateLogFilesEnabled = enabled; +} + void setUserName(const std::string& type) { userName = type; } @@ -656,6 +661,10 @@ u32 GetLanguage() { return m_language; } +bool getSeparateLogFilesEnabled() { + return isSeparateLogFilesEnabled; +} + int getBackgroundImageOpacity() { return backgroundImageOpacity; } @@ -694,10 +703,7 @@ void load(const std::filesystem::path& path) { if (data.contains("General")) { const toml::value& general = data.at("General"); - isHDRAllowed = toml::find_or(general, "allowHDR", false); isNeo = toml::find_or(general, "isPS4Pro", false); - isFullscreen = toml::find_or(general, "Fullscreen", false); - fullscreenMode = toml::find_or(general, "FullscreenMode", "borderless"); playBGM = toml::find_or(general, "playBGM", false); isTrophyPopupDisabled = toml::find_or(general, "isTrophyPopupDisabled", false); BGMvolume = toml::find_or(general, "BGMvolume", 50); @@ -742,6 +748,9 @@ void load(const std::filesystem::path& path) { shouldDumpShaders = toml::find_or(gpu, "dumpShaders", false); shouldPatchShaders = toml::find_or(gpu, "patchShaders", true); vblankDivider = toml::find_or(gpu, "vblankDivider", 1); + isFullscreen = toml::find_or(gpu, "Fullscreen", false); + fullscreenMode = toml::find_or(gpu, "FullscreenMode", "Windowed"); + isHDRAllowed = toml::find_or(gpu, "allowHDR", false); } if (data.contains("Vulkan")) { @@ -761,6 +770,7 @@ void load(const std::filesystem::path& path) { const toml::value& debug = data.at("Debug"); isDebugDump = toml::find_or(debug, "DebugDump", false); + isSeparateLogFilesEnabled = toml::find_or(debug, "isSeparateLogFilesEnabled", false); isShaderDebug = toml::find_or(debug, "CollectShader", false); isFpsColor = toml::find_or(debug, "FPSColor", true); } @@ -824,7 +834,7 @@ void load(const std::filesystem::path& path) { } void save(const std::filesystem::path& path) { - toml::value data; + toml::ordered_value data; std::error_code error; if (std::filesystem::exists(path, error)) { @@ -832,7 +842,8 @@ void save(const std::filesystem::path& path) { std::ifstream ifs; ifs.exceptions(std::ifstream::failbit | std::ifstream::badbit); ifs.open(path, std::ios_base::binary); - data = toml::parse(ifs, std::string{fmt::UTF(path.filename().u8string()).data}); + data = toml::parse( + ifs, std::string{fmt::UTF(path.filename().u8string()).data}); } catch (const std::exception& ex) { fmt::print("Exception trying to parse config file. Exception: {}\n", ex.what()); return; @@ -844,10 +855,7 @@ void save(const std::filesystem::path& path) { fmt::print("Saving new configuration file {}\n", fmt::UTF(path.u8string())); } - data["General"]["allowHDR"] = isHDRAllowed; data["General"]["isPS4Pro"] = isNeo; - data["General"]["Fullscreen"] = isFullscreen; - data["General"]["FullscreenMode"] = fullscreenMode; data["General"]["isTrophyPopupDisabled"] = isTrophyPopupDisabled; data["General"]["playBGM"] = playBGM; data["General"]["BGMvolume"] = BGMvolume; @@ -877,6 +885,9 @@ void save(const std::filesystem::path& path) { data["GPU"]["dumpShaders"] = shouldDumpShaders; data["GPU"]["patchShaders"] = shouldPatchShaders; data["GPU"]["vblankDivider"] = vblankDivider; + data["GPU"]["Fullscreen"] = isFullscreen; + data["GPU"]["FullscreenMode"] = fullscreenMode; + data["GPU"]["allowHDR"] = isHDRAllowed; data["Vulkan"]["gpuId"] = gpuId; data["Vulkan"]["validation"] = vkValidation; data["Vulkan"]["validation_sync"] = vkValidationSync; @@ -887,6 +898,7 @@ void save(const std::filesystem::path& path) { data["Vulkan"]["rdocEnable"] = rdocEnable; data["Debug"]["DebugDump"] = isDebugDump; data["Debug"]["CollectShader"] = isShaderDebug; + data["Debug"]["isSeparateLogFilesEnabled"] = isSeparateLogFilesEnabled; data["Debug"]["FPSColor"] = isFpsColor; data["Keys"]["TrophyKey"] = trophyKey; @@ -913,7 +925,7 @@ void save(const std::filesystem::path& path) { } void saveMainWindow(const std::filesystem::path& path) { - toml::value data; + toml::ordered_value data; std::error_code error; if (std::filesystem::exists(path, error)) { @@ -921,7 +933,8 @@ void saveMainWindow(const std::filesystem::path& path) { std::ifstream ifs; ifs.exceptions(std::ifstream::failbit | std::ifstream::badbit); ifs.open(path, std::ios_base::binary); - data = toml::parse(ifs, std::string{fmt::UTF(path.filename().u8string()).data}); + data = toml::parse( + ifs, std::string{fmt::UTF(path.filename().u8string()).data}); } catch (const std::exception& ex) { fmt::print("Exception trying to parse config file. Exception: {}\n", ex.what()); return; diff --git a/src/common/config.h b/src/common/config.h index 7b9bc789b..abf8da8aa 100644 --- a/src/common/config.h +++ b/src/common/config.h @@ -111,7 +111,8 @@ void setIsMotionControlsEnabled(bool use); void setLogType(const std::string& type); void setLogFilter(const std::string& type); - +void setSeparateLogFilesEnabled(bool enabled); +bool getSeparateLogFilesEnabled(); void setVkValidation(bool enable); void setVkSyncValidation(bool enable); void setRdocEnabled(bool enable); diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index 7802977f5..c16a5399a 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -139,8 +139,9 @@ public: std::filesystem::create_directory(log_dir); Filter filter; filter.ParseFilterString(Config::getLogFilter()); - instance = std::unique_ptr(new Impl(log_dir / LOG_FILE, filter), - Deleter); + const auto& log_file_path = log_file.empty() ? LOG_FILE : log_file; + instance = std::unique_ptr( + new Impl(log_dir / log_file_path, filter), Deleter); initialization_in_progress_suppress_logging = false; } diff --git a/src/common/memory_patcher.cpp b/src/common/memory_patcher.cpp index 0a74a45a5..2a8b26acb 100644 --- a/src/common/memory_patcher.cpp +++ b/src/common/memory_patcher.cpp @@ -148,7 +148,6 @@ void OnGameLoaded() { std::string targetStr = ""; std::string sizeStr = ""; if (type == "mask_jump32") { - std::string patchValue = patchLineIt->attribute("Value").value(); targetStr = patchLineIt->attribute("Target").value(); sizeStr = patchLineIt->attribute("Size").value(); } else { @@ -301,8 +300,7 @@ void OnGameLoaded() { QString targetStr; QString sizeStr; if (type == "mask_jump32") { - QString valueAttributeStr = lineObject["Value"].toString(); - targetStr = lineObject["Value"].toString(); + targetStr = lineObject["Target"].toString(); sizeStr = lineObject["Size"].toString(); } else { patchValue = QString::fromStdString(convertValueToHex( diff --git a/src/core/cpu_patches.cpp b/src/core/cpu_patches.cpp index 65cd38b02..21acf1a7b 100644 --- a/src/core/cpu_patches.cpp +++ b/src/core/cpu_patches.cpp @@ -225,9 +225,9 @@ static void SaveContext(Xbyak::CodeGenerator& c, bool save_flags = false) { for (int reg = Xbyak::Operand::RAX; reg <= Xbyak::Operand::R15; reg++) { c.push(Xbyak::Reg64(reg)); } - for (int reg = 0; reg <= 7; reg++) { - c.lea(rsp, ptr[rsp - 32]); - c.vmovdqu(ptr[rsp], Xbyak::Ymm(reg)); + c.lea(rsp, ptr[rsp - 32 * 16]); + for (int reg = 0; reg <= 15; reg++) { + c.vmovdqu(ptr[rsp + 32 * reg], Xbyak::Ymm(reg)); } if (save_flags) { c.pushfq(); @@ -241,12 +241,12 @@ static void RestoreContext(Xbyak::CodeGenerator& c, const Xbyak::Operand& dst, if (restore_flags) { c.popfq(); } - for (int reg = 7; reg >= 0; reg--) { + for (int reg = 15; reg >= 0; reg--) { if ((!dst.isXMM() && !dst.isYMM()) || dst.getIdx() != reg) { - c.vmovdqu(Xbyak::Ymm(reg), ptr[rsp]); + c.vmovdqu(Xbyak::Ymm(reg), ptr[rsp + 32 * reg]); } - c.lea(rsp, ptr[rsp + 32]); } + c.lea(rsp, ptr[rsp + 32 * 16]); for (int reg = Xbyak::Operand::R15; reg >= Xbyak::Operand::RAX; reg--) { if (!dst.isREG() || dst.getIdx() != reg) { c.pop(Xbyak::Reg64(reg)); @@ -264,16 +264,37 @@ static void GenerateANDN(const ZydisDecodedOperand* operands, Xbyak::CodeGenerat const auto src1 = ZydisToXbyakRegisterOperand(operands[1]); const auto src2 = ZydisToXbyakOperand(operands[2]); - const auto scratch = AllocateScratchRegister({&dst, &src1, src2.get()}, dst.getBit()); + // Check if src2 is a memory operand or a register different to dst. + // In those cases, we don't need to use a temporary register and are free to modify dst. + // In cases where dst and src2 are the same register, a temporary needs to be used to avoid + // modifying src2. + bool src2_uses_dst = false; + if (src2->isMEM()) { + const auto base = src2->getAddress().getRegExp().getBase().getIdx(); + const auto index = src2->getAddress().getRegExp().getIndex().getIdx(); + src2_uses_dst = base == dst.getIdx() || index == dst.getIdx(); + } else { + ASSERT(src2->isREG()); + src2_uses_dst = src2->getReg() == dst; + } - SaveRegisters(c, {scratch}); + if (!src2_uses_dst) { + if (dst != src1) + c.mov(dst, src1); + c.not_(dst); + c.and_(dst, *src2); + } else { + const auto scratch = AllocateScratchRegister({&dst, &src1, src2.get()}, dst.getBit()); - c.mov(scratch, src1); - c.not_(scratch); - c.and_(scratch, *src2); - c.mov(dst, scratch); + SaveRegisters(c, {scratch}); - RestoreRegisters(c, {scratch}); + c.mov(scratch, src1); + c.not_(scratch); + c.and_(scratch, *src2); + c.mov(dst, scratch); + + RestoreRegisters(c, {scratch}); + } } static void GenerateBEXTR(const ZydisDecodedOperand* operands, Xbyak::CodeGenerator& c) { diff --git a/src/core/libraries/ajm/ajm_instance.cpp b/src/core/libraries/ajm/ajm_instance.cpp index 8af105c77..01b1d2b21 100644 --- a/src/core/libraries/ajm/ajm_instance.cpp +++ b/src/core/libraries/ajm/ajm_instance.cpp @@ -66,6 +66,7 @@ void AjmInstance::ExecuteJob(AjmJob& job) { LOG_TRACE(Lib_Ajm, "Initializing instance {}", job.instance_id); auto& params = job.input.init_params.value(); m_codec->Initialize(¶ms, sizeof(params)); + is_initialized = true; } if (job.input.resample_parameters.has_value()) { LOG_ERROR(Lib_Ajm, "Unimplemented: resample parameters"); @@ -89,6 +90,10 @@ void AjmInstance::ExecuteJob(AjmJob& job) { } } + if (!is_initialized) { + return; + } + if (!job.input.buffer.empty() && !job.output.buffers.empty()) { std::span in_buf(job.input.buffer); SparseOutputBuffer out_buf(job.output.buffers); diff --git a/src/core/libraries/ajm/ajm_instance.h b/src/core/libraries/ajm/ajm_instance.h index 9d0f6b9f3..e02ac6ffb 100644 --- a/src/core/libraries/ajm/ajm_instance.h +++ b/src/core/libraries/ajm/ajm_instance.h @@ -96,6 +96,7 @@ private: AjmSidebandResampleParameters m_resample_parameters{}; u32 m_total_samples{}; std::unique_ptr m_codec; + bool is_initialized = false; }; } // namespace Libraries::Ajm diff --git a/src/core/libraries/app_content/app_content.cpp b/src/core/libraries/app_content/app_content.cpp index 1223022c5..fad270e2b 100644 --- a/src/core/libraries/app_content/app_content.cpp +++ b/src/core/libraries/app_content/app_content.cpp @@ -323,7 +323,7 @@ int PS4_SYSV_ABI sceAppContentTemporaryDataMount2(OrbisAppContentTemporaryDataOp return ORBIS_APP_CONTENT_ERROR_PARAMETER; } static constexpr std::string_view TmpMount = "/temp0"; - TmpMount.copy(mountPoint->data, sizeof(mountPoint->data)); + TmpMount.copy(mountPoint->data, TmpMount.size()); LOG_INFO(Lib_AppContent, "sceAppContentTemporaryDataMount2: option = {}, mountPoint = {}", option, mountPoint->data); return ORBIS_OK; diff --git a/src/core/libraries/libc_internal/libc_internal.cpp b/src/core/libraries/libc_internal/libc_internal.cpp index a34128586..0b374c5a2 100644 --- a/src/core/libraries/libc_internal/libc_internal.cpp +++ b/src/core/libraries/libc_internal/libc_internal.cpp @@ -1,16253 +1,24 @@ // SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later -#include -#include -#include - +#include #include "common/assert.h" #include "common/logging/log.h" #include "core/libraries/error_codes.h" -#include "core/libraries/libc_internal/libc_internal_io.h" -#include "core/libraries/libc_internal/libc_internal_memory.h" -#include "core/libraries/libc_internal/libc_internal_mspace.h" -#include "core/libraries/libc_internal/libc_internal_str.h" -#include "core/libraries/libc_internal/libc_internal_stream.h" #include "core/libraries/libs.h" #include "libc_internal.h" +#include "libc_internal_io.h" +#include "libc_internal_math.h" +#include "libc_internal_memory.h" +#include "libc_internal_str.h" +#include "printf.h" namespace Libraries::LibcInternal { -s32 PS4_SYSV_ABI internal_sceLibcHeapGetTraceInfo() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___absvdi2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___absvsi2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___absvti2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___adddf3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___addsf3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___addvdi3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___addvsi3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___addvti3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___ashldi3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___ashlti3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___ashrdi3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___ashrti3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_compare_exchange() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_compare_exchange_1() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_compare_exchange_2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_compare_exchange_4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_compare_exchange_8() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_compare_exchange_n() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_exchange() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_exchange_1() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_exchange_2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_exchange_4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_exchange_8() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_exchange_n() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_fetch_add_1() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_fetch_add_2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_fetch_add_4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_fetch_add_8() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_fetch_and_1() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_fetch_and_2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_fetch_and_4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_fetch_and_8() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_fetch_or_1() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_fetch_or_2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_fetch_or_4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_fetch_or_8() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_fetch_sub_1() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_fetch_sub_2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_fetch_sub_4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_fetch_sub_8() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_fetch_xor_1() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_fetch_xor_2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_fetch_xor_4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_fetch_xor_8() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_is_lock_free() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_load() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_load_1() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_load_2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_load_4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_load_8() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_load_n() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_store() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_store_1() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_store_2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_store_4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_store_8() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___atomic_store_n() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cleanup() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___clzdi2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___clzsi2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___clzti2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cmpdi2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cmpti2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___ctzdi2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___ctzsi2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___ctzti2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cxa_allocate_dependent_exception() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cxa_allocate_exception() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cxa_atexit(void (*func)(), void* arg, void* dso_handle) { - LOG_ERROR(Lib_LibcInternal, "(TEST) called"); // todo idek what I'm doing with this - std::atexit(func); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cxa_bad_cast() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cxa_bad_typeid() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cxa_begin_catch() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cxa_call_unexpected() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cxa_current_exception_type() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cxa_current_primary_exception() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cxa_decrement_exception_refcount() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cxa_demangle() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cxa_end_catch() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cxa_finalize() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cxa_free_dependent_exception() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cxa_free_exception() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cxa_get_exception_ptr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cxa_get_globals() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cxa_get_globals_fast() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cxa_guard_abort() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cxa_guard_acquire() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cxa_guard_release() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cxa_increment_exception_refcount() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cxa_pure_virtual() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cxa_rethrow() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cxa_rethrow_primary_exception() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___cxa_throw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___divdc3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___divdf3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___divdi3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___divmoddi4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___divmodsi4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___divsc3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___divsf3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___divsi3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___divti3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___divxc3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___dynamic_cast() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___eqdf2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___eqsf2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___extendsfdf2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___fe_dfl_env() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___fedisableexcept() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___feenableexcept() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___fflush() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___ffsdi2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___ffsti2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___fixdfdi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___fixdfsi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___fixdfti() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___fixsfdi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___fixsfsi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___fixsfti() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___fixunsdfdi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___fixunsdfsi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___fixunsdfti() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___fixunssfdi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___fixunssfsi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___fixunssfti() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___fixunsxfdi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___fixunsxfsi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___fixunsxfti() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___fixxfdi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___fixxfti() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___floatdidf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___floatdisf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___floatdixf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___floatsidf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___floatsisf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___floattidf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___floattisf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___floattixf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___floatundidf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___floatundisf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___floatundixf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___floatunsidf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___floatunsisf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___floatuntidf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___floatuntisf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___floatuntixf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___fpclassifyd() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___fpclassifyf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___fpclassifyl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___gedf2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___gesf2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___gtdf2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___gtsf2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___gxx_personality_v0() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___inet_addr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___inet_aton() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___inet_ntoa() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___inet_ntoa_r() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___isfinite() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___isfinitef() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___isfinitel() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___isinf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___isinff() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___isinfl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___isnan() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___isnanf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___isnanl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___isnormal() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___isnormalf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___isnormall() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___isthreaded() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___kernel_cos() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___kernel_cosdf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___kernel_rem_pio2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___kernel_sin() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___kernel_sindf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___ledf2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___lesf2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___longjmp() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___lshrdi3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___lshrti3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___ltdf2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___ltsf2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___mb_cur_max() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___mb_sb_limit() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___moddi3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___modsi3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___modti3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___muldc3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___muldf3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___muldi3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___mulodi4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___mulosi4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___muloti4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___mulsc3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___mulsf3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___multi3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___mulvdi3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___mulvsi3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___mulvti3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___mulxc3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___nedf2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___negdf2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___negdi2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___negsf2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___negti2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___negvdi2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___negvsi2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___negvti2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___nesf2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___opendir2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___paritydi2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___paritysi2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___parityti2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___popcountdi2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___popcountsi2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___popcountti2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___powidf2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___powisf2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___powixf2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___signbit() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___signbitf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___signbitl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___srefill() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___srget() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___stderrp() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___stdinp() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___stdoutp() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___subdf3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___subsf3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___subvdi3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___subvsi3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___subvti3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___swbuf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___sync_fetch_and_add_16() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___sync_fetch_and_and_16() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___sync_fetch_and_or_16() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___sync_fetch_and_sub_16() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___sync_fetch_and_xor_16() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___sync_lock_test_and_set_16() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___truncdfsf2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___ucmpdi2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___ucmpti2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___udivdi3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___udivmoddi4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___udivmodsi4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___udivmodti4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___udivsi3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___udivti3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___umoddi3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___umodsi3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___umodti3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___unorddf2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal___unordsf2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Assert() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atan() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_compare_exchange_strong() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_compare_exchange_strong_1() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_compare_exchange_strong_2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_compare_exchange_strong_4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_compare_exchange_strong_8() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_compare_exchange_weak() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_compare_exchange_weak_1() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_compare_exchange_weak_2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_compare_exchange_weak_4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_compare_exchange_weak_8() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_copy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_exchange() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_exchange_1() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_exchange_2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_exchange_4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_exchange_8() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_fetch_add_1() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_fetch_add_2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_fetch_add_4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_fetch_add_8() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_fetch_and_1() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_fetch_and_2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_fetch_and_4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_fetch_and_8() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_fetch_or_1() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_fetch_or_2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_fetch_or_4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_fetch_or_8() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_fetch_sub_1() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_fetch_sub_2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_fetch_sub_4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_fetch_sub_8() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_fetch_xor_1() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_fetch_xor_2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_fetch_xor_4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_fetch_xor_8() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_flag_clear() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_flag_test_and_set() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_is_lock_free_1() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_is_lock_free_2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_is_lock_free_4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_is_lock_free_8() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_load_1() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_load_2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_load_4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_load_8() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_signal_fence() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_store_1() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_store_2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_store_4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_store_8() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atomic_thread_fence() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atqexit() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Atthreadexit() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Btowc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Call_once() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Call_onceEx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Clocale() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Closreg() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Cnd_broadcast() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Cnd_destroy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Cnd_do_broadcast_at_thread_exit() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Cnd_init() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Cnd_init_with_name() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Cnd_register_at_thread_exit() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Cnd_signal() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Cnd_timedwait() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Cnd_unregister_at_thread_exit() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Cnd_wait() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Cosh() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Costate() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__CTinfo() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Ctype() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__CurrentRuneLocale() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__CWcsxfrm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Daysto() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Dbl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Dclass() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__DefaultRuneLocale() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Deletegloballocale() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Denorm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Dint() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Divide() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Dnorm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Do_call() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Dscale() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Dsign() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Dtento() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Dtest() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Dunscale() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Eps() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Erf_one() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Erf_small() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Erfc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__err() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Errno() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Exit() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Exp() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Fac_tidy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Fail_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FAtan() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FCosh() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FDclass() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FDenorm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FDint() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FDivide() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FDnorm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FDscale() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FDsign() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FDtento() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FDtest() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FDunscale() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FEps() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Feraise() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FErf_one() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FErf_small() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FErfc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Fetch_add_8() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Fetch_and_8() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Fetch_and_seq_cst_1() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Fetch_and_seq_cst_2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Fetch_and_seq_cst_4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Fetch_or_8() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Fetch_or_seq_cst_1() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Fetch_or_seq_cst_2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Fetch_or_seq_cst_4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Fetch_xor_8() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Fetch_xor_seq_cst_1() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Fetch_xor_seq_cst_2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Fetch_xor_seq_cst_4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FExp() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FFpcomp() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FGamma_big() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Fgpos() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FHypot() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Files() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FInf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FLog() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FLogpoly() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Flt() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Fltrounds() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FNan() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Fofind() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Fofree() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Fopen() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Foprep() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Fpcomp() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FPlsw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FPmsw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FPoly() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FPow() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FQuad() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FQuadph() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FRecip() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FRint() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Frprep() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FRteps() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FSin() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FSincos() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FSinh() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FSnan() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Fspos() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FTan() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FTgamma() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Fwprep() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FXbig() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FXp_addh() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FXp_addx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FXp_getw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FXp_invx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FXp_ldexpx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FXp_movx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FXp_mulh() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FXp_mulx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FXp_setn() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FXp_setw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FXp_sqrtx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FXp_subx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__FZero() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Gamma_big() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Genld() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Gentime() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Getcloc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Getctyptab() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Getdst() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Geterrno() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Getfld() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Getfloat() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Getgloballocale() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Getint() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Getmbcurmax() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Getpcostate() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Getpctype() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Getpmbstate() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__getprogname() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Getptimes() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Getptolower() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Getptoupper() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Getpwcostate() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Getpwcstate() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Getpwctrtab() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Getpwctytab() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Gettime() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Getzone() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Hugeval() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Hypot() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Inf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__init_env() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__init_tls() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Isdst() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Iswctype() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LAtan() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LCosh() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Ldbl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LDclass() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LDenorm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LDint() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LDivide() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LDnorm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LDscale() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LDsign() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LDtento() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LDtest() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Ldtob() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LDunscale() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LEps() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LErf_one() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LErf_small() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LErfc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LExp() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LFpcomp() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LGamma_big() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LHypot() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LInf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Litob() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LLog() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LLogpoly() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LNan() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Locale() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Lock_shared_ptr_spin_lock() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Lock_spin_lock() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Lockfilelock() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Locksyslock() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Locsum() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Loctab() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Locterm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Locvar() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Log() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Logpoly() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LPlsw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LPmsw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LPoly() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LPow() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LQuad() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LQuadph() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LRecip() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LRint() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LRteps() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LSin() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LSincos() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LSinh() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LSnan() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LTan() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LTgamma() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LXbig() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LXp_addh() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LXp_addx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LXp_getw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LXp_invx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LXp_ldexpx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LXp_movx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LXp_mulh() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LXp_mulx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LXp_setn() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LXp_setw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LXp_sqrtx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LXp_subx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__LZero() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Makeloc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Makestab() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Makewct() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Mbcurmax() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Mbstate() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Mbtowc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Mbtowcx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Mtx_current_owns() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Mtx_destroy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Mtx_init() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Mtx_init_with_name() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Mtx_lock() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Mtx_timedlock() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Mtx_trylock() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Mtx_unlock() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Mtxdst() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Mtxinit() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Mtxlock() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Mtxunlock() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Nan() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__new_setup() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Nnl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__PathLocale() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__PJP_C_Copyright() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__PJP_CPP_Copyright() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Plsw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Pmsw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Poly() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Pow() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Putfld() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Putstr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Puttxt() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Quad() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Quadph() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Randseed() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__readdir_unlocked() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Readloc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Recip() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__reclaim_telldir() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Restore_state() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Rint() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Rteps() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__rtld_addr_phdr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__rtld_atfork_post() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__rtld_atfork_pre() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__rtld_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__rtld_get_stack_prot() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__rtld_thread_init() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Save_state() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__SceLibcDebugOut() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__SceLibcTelemetoryOut() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__seekdir() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Setgloballocale() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Shared_ptr_flag() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Sin() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Sincos() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Sinh() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Skip() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Snan() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Stderr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Stdin() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Stdout() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Tan() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Tgamma() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Thrd_abort() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Thrd_create() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Thrd_current() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Thrd_detach() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Thrd_equal() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Thrd_exit() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Thrd_id() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Thrd_join() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Thrd_lt() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Thrd_sleep() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Thrd_start() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Thrd_start_with_attr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Thrd_start_with_name() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Thrd_start_with_name_attr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Thrd_yield() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__thread_autoinit_dummy_decl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__thread_autoinit_dummy_decl_stub() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__thread_init() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__thread_init_stub() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Times() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Tls_setup__Costate() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Tls_setup__Ctype() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Tls_setup__Errno() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Tls_setup__Locale() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Tls_setup__Mbcurmax() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Tls_setup__Mbstate() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Tls_setup__Times() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Tls_setup__Tolotab() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Tls_setup__Touptab() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Tls_setup__WCostate() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Tls_setup__Wcstate() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Tls_setup__Wctrans() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Tls_setup__Wctype() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Tolotab() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Touptab() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Towctrans() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Tss_create() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Tss_delete() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Tss_get() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Tss_set() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Ttotm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Tzoff() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Unlock_shared_ptr_spin_lock() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Unlock_spin_lock() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Unlockfilelock() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Unlocksyslock() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Unwind_Backtrace() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Unwind_GetIP() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Unwind_Resume() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Unwind_Resume_or_Rethrow() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Vacopy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__warn() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__WCostate() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Wcscollx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Wcsftime() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Wcstate() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Wcsxfrmx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Wctob() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Wctomb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Wctombx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Wctrans() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Wctype() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__WFrprep() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__WFwprep() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__WGenld() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__WGetfld() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__WGetfloat() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__WGetint() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__WGetstr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__WLdtob() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__WLitob() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__WPutfld() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__WPutstr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__WPuttxt() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__WStod() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__WStodx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__WStof() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__WStoflt() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__WStofx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__WStold() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__WStoldx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__WStoll() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__WStopfx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__WStoul() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__WStoull() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__WStoxflt() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Xbig() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Xp_addh() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Xp_addx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Xp_getw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Xp_invx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Xp_ldexpx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Xp_movx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Xp_mulh() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Xp_mulx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Xp_setn() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Xp_setw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Xp_sqrtx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Xp_subx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Xtime_diff_to_ts() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Xtime_get_ticks() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Xtime_to_ts() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZdaPvm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZdaPvmRKSt9nothrow_t() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZdaPvmSt11align_val_t() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZdaPvRKSt9nothrow_t() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZdaPvS_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZdaPvSt11align_val_t() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZdaPvSt11align_val_tRKSt9nothrow_t() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZdlPv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZdlPvm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZdlPvmRKSt9nothrow_t() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZdlPvmSt11align_val_t() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZdlPvRKSt9nothrow_t() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZdlPvS_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZdlPvSt11align_val_t() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZdlPvSt11align_val_tRKSt9nothrow_t() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Zero() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZGVNSt10moneypunctIcLb0EE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZGVNSt10moneypunctIcLb1EE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZGVNSt10moneypunctIwLb0EE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZGVNSt10moneypunctIwLb1EE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZGVNSt14_Error_objectsIiE14_System_objectE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZGVNSt14_Error_objectsIiE15_Generic_objectE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZGVNSt20_Future_error_objectIiE14_Future_objectE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZGVNSt7codecvtIcc9_MbstatetE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZGVNSt7collateIcE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZGVNSt7collateIwE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZGVNSt8messagesIcE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZGVNSt8messagesIwE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZGVNSt8numpunctIcE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZGVNSt8numpunctIwE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZGVZNSt13basic_filebufIcSt11char_traitsIcEE5_InitEP7__sFILENS2_7_InitflEE7_Stinit() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZGVZNSt13basic_filebufIwSt11char_traitsIwEE5_InitEP7__sFILENS2_7_InitflEE7_Stinit() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv116__enum_type_infoD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv116__enum_type_infoD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv116__enum_type_infoD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv117__array_type_infoD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv117__array_type_infoD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv117__array_type_infoD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv117__class_type_infoD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv117__class_type_infoD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv117__class_type_infoD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv117__pbase_type_infoD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv117__pbase_type_infoD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv117__pbase_type_infoD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv119__pointer_type_infoD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv119__pointer_type_infoD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv119__pointer_type_infoD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv120__function_type_infoD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv120__function_type_infoD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv120__function_type_infoD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv120__si_class_type_infoD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv120__si_class_type_infoD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv120__si_class_type_infoD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv121__vmi_class_type_infoD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv121__vmi_class_type_infoD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv121__vmi_class_type_infoD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv123__fundamental_type_infoD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv123__fundamental_type_infoD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv123__fundamental_type_infoD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv129__pointer_to_member_type_infoD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv129__pointer_to_member_type_infoD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN10__cxxabiv129__pointer_to_member_type_infoD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN6Dinkum7codecvt10_Cvt_checkEmm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN6Dinkum7threads10lock_errorD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN6Dinkum7threads10lock_errorD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN6Dinkum7threads17_Throw_lock_errorEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN6Dinkum7threads21_Throw_resource_errorEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN6Dinkum7threads21thread_resource_errorD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZN6Dinkum7threads21thread_resource_errorD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Znam() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZnamRKSt9nothrow_t() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZnamSt11align_val_t() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZnamSt11align_val_tRKSt9nothrow_t() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSbIwSt11char_traitsIwESaIwEE5_XlenEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSbIwSt11char_traitsIwESaIwEE5_XranEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSs5_XlenEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSs5_XranEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt10bad_typeid4whatEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt10bad_typeid8_DoraiseEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt11logic_error4whatEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt11logic_error8_DoraiseEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt12bad_weak_ptr4whatEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt12codecvt_base11do_encodingEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt12codecvt_base13do_max_lengthEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt12future_error4whatEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt12future_error8_DoraiseEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt12system_error8_DoraiseEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt13bad_exception8_DoraiseEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt13runtime_error4whatEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt14error_category10equivalentEiRKSt15error_condition() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt14error_category10equivalentERKSt10error_codei() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt14error_category23default_error_conditionEi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt17bad_function_call4whatEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt18bad_variant_access4whatEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt22_Future_error_category4nameEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt22_Future_error_category7messageEi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt22_System_error_category23default_error_conditionEi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt22_System_error_category4nameEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt22_System_error_category7messageEi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt23_Generic_error_category4nameEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt23_Generic_error_category7messageEi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt5ctypeIcE10do_tolowerEc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt5ctypeIcE10do_tolowerEPcPKc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt5ctypeIcE10do_toupperEc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt5ctypeIcE10do_toupperEPcPKc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt5ctypeIcE8do_widenEc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt5ctypeIcE8do_widenEPKcS2_Pc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt5ctypeIcE9do_narrowEcc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt5ctypeIcE9do_narrowEPKcS2_cPc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt5ctypeIwE10do_scan_isEsPKwS2_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt5ctypeIwE10do_tolowerEPwPKw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt5ctypeIwE10do_tolowerEw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt5ctypeIwE10do_toupperEPwPKw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt5ctypeIwE10do_toupperEw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt5ctypeIwE11do_scan_notEsPKwS2_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt5ctypeIwE5do_isEPKwS2_Ps() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt5ctypeIwE5do_isEsw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt5ctypeIwE8do_widenEc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt5ctypeIwE8do_widenEPKcS2_Pw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt5ctypeIwE9do_narrowEPKwS2_cPc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt5ctypeIwE9do_narrowEwc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7_MpunctIcE11do_groupingEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7_MpunctIcE13do_neg_formatEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7_MpunctIcE13do_pos_formatEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7_MpunctIcE14do_curr_symbolEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7_MpunctIcE14do_frac_digitsEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7_MpunctIcE16do_decimal_pointEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7_MpunctIcE16do_negative_signEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7_MpunctIcE16do_positive_signEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7_MpunctIcE16do_thousands_sepEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7_MpunctIwE11do_groupingEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7_MpunctIwE13do_neg_formatEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7_MpunctIwE13do_pos_formatEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7_MpunctIwE14do_curr_symbolEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7_MpunctIwE14do_frac_digitsEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7_MpunctIwE16do_decimal_pointEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7_MpunctIwE16do_negative_signEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7_MpunctIwE16do_positive_signEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7_MpunctIwE16do_thousands_sepEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIcc9_MbstatetE10do_unshiftERS0_PcS3_RS3_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIcc9_MbstatetE16do_always_noconvEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIcc9_MbstatetE2inERS0_PKcS4_RS4_PcS6_RS6_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIcc9_MbstatetE3outERS0_PKcS4_RS4_PcS6_RS6_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIcc9_MbstatetE5do_inERS0_PKcS4_RS4_PcS6_RS6_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIcc9_MbstatetE6do_outERS0_PKcS4_RS4_PcS6_RS6_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIcc9_MbstatetE6lengthERS0_PKcS4_m() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIcc9_MbstatetE7unshiftERS0_PcS3_RS3_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIcc9_MbstatetE9do_lengthERS0_PKcS4_m() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIDic9_MbstatetE10do_unshiftERS0_PcS3_RS3_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIDic9_MbstatetE11do_encodingEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIDic9_MbstatetE13do_max_lengthEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIDic9_MbstatetE16do_always_noconvEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIDic9_MbstatetE5do_inERS0_PKcS4_RS4_PDiS6_RS6_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIDic9_MbstatetE6do_outERS0_PKDiS4_RS4_PcS6_RS6_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIDic9_MbstatetE9do_lengthERS0_PKcS4_m() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIDsc9_MbstatetE10do_unshiftERS0_PcS3_RS3_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIDsc9_MbstatetE11do_encodingEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIDsc9_MbstatetE13do_max_lengthEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIDsc9_MbstatetE16do_always_noconvEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIDsc9_MbstatetE5do_inERS0_PKcS4_RS4_PDsS6_RS6_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIDsc9_MbstatetE6do_outERS0_PKDsS4_RS4_PcS6_RS6_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIDsc9_MbstatetE9do_lengthERS0_PKcS4_m() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIwc9_MbstatetE10do_unshiftERS0_PcS3_RS3_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIwc9_MbstatetE11do_encodingEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIwc9_MbstatetE13do_max_lengthEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIwc9_MbstatetE16do_always_noconvEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIwc9_MbstatetE5do_inERS0_PKcS4_RS4_PwS6_RS6_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIwc9_MbstatetE6do_outERS0_PKwS4_RS4_PcS6_RS6_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7codecvtIwc9_MbstatetE9do_lengthERS0_PKcS4_m() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7collateIcE10do_compareEPKcS2_S2_S2_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7collateIcE12do_transformEPKcS2_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7collateIcE4hashEPKcS2_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7collateIcE7compareEPKcS2_S2_S2_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7collateIcE7do_hashEPKcS2_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7collateIcE9transformEPKcS2_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7collateIwE10do_compareEPKwS2_S2_S2_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7collateIwE12do_transformEPKwS2_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7collateIwE4hashEPKwS2_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7collateIwE7compareEPKwS2_S2_S2_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7collateIwE7do_hashEPKwS2_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt7collateIwE9transformEPKwS2_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8bad_cast4whatEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8bad_cast8_DoraiseEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8ios_base7failure8_DoraiseEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8messagesIcE3getEiiiRKSs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8messagesIcE4openERKSsRKSt6locale() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8messagesIcE5closeEi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8messagesIcE6do_getEiiiRKSs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8messagesIcE7do_openERKSsRKSt6locale() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8messagesIcE8do_closeEi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8messagesIwE3getEiiiRKSbIwSt11char_traitsIwESaIwEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8messagesIwE4openERKSsRKSt6locale() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8messagesIwE5closeEi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8messagesIwE6do_getEiiiRKSbIwSt11char_traitsIwESaIwEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8messagesIwE7do_openERKSsRKSt6locale() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8messagesIwE8do_closeEi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8numpunctIcE11do_groupingEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8numpunctIcE11do_truenameEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8numpunctIcE12do_falsenameEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8numpunctIcE13decimal_pointEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8numpunctIcE13thousands_sepEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8numpunctIcE16do_decimal_pointEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8numpunctIcE16do_thousands_sepEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8numpunctIcE8groupingEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8numpunctIcE8truenameEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8numpunctIcE9falsenameEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8numpunctIwE11do_groupingEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8numpunctIwE11do_truenameEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8numpunctIwE12do_falsenameEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8numpunctIwE13decimal_pointEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8numpunctIwE13thousands_sepEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8numpunctIwE16do_decimal_pointEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8numpunctIwE16do_thousands_sepEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8numpunctIwE8groupingEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8numpunctIwE8truenameEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt8numpunctIwE9falsenameEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt9bad_alloc4whatEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt9bad_alloc8_DoraiseEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt9exception4whatEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt9exception6_RaiseEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt9exception8_DoraiseEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSbIwSt11char_traitsIwESaIwEE5_CopyEmm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSbIwSt11char_traitsIwESaIwEE5eraseEmm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSbIwSt11char_traitsIwESaIwEE6appendEmw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSbIwSt11char_traitsIwESaIwEE6appendERKS2_mm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSbIwSt11char_traitsIwESaIwEE6assignEmw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSbIwSt11char_traitsIwESaIwEE6assignEPKwm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSbIwSt11char_traitsIwESaIwEE6assignERKS2_mm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSbIwSt11char_traitsIwESaIwEE6insertEmmw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSiD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSiD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSo6sentryC2ERSo() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSo6sentryD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSoD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSoD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSs5_CopyEmm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSs5eraseEmm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSs6appendEmc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSs6appendERKSsmm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSs6assignEmc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSs6assignEPKcm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSs6assignERKSsmm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSs6insertEmmc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10bad_typeidD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10bad_typeidD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10bad_typeidD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10filesystem10_Close_dirEPv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10filesystem10_Copy_fileEPKcS1_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10filesystem10_File_sizeEPKc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10filesystem11_EquivalentEPKcS1_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10filesystem11_Remove_dirEPKc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10filesystem12_Current_getERA260_c() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10filesystem12_Current_setEPKc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10filesystem16_Last_write_timeEPKc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10filesystem18_Xfilesystem_errorEPKcRKNS_4pathES4_St10error_code() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10filesystem18_Xfilesystem_errorEPKcRKNS_4pathESt10error_code() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10filesystem18_Xfilesystem_errorEPKcSt10error_code() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10filesystem20_Set_last_write_timeEPKcl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10filesystem5_StatEPKcPNS_5permsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10filesystem6_ChmodEPKcNS_5permsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10filesystem6_LstatEPKcPNS_5permsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10filesystem7_RenameEPKcS1_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10filesystem7_ResizeEPKcm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10filesystem7_UnlinkEPKc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10filesystem8_StatvfsEPKcRNS_10space_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10filesystem9_Make_dirEPKcS1_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10filesystem9_Open_dirERA260_cPKcRiRNS_9file_typeE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10filesystem9_Read_dirERA260_cPvRNS_9file_typeE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIcLb0EE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIcLb0EE4intlE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIcLb0EE7_GetcatEPPKNSt6locale5facetEPKS1_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIcLb0EEC1Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIcLb0EEC1EPKcm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIcLb0EEC1ERKSt8_Locinfomb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIcLb0EEC2Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIcLb0EEC2EPKcm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIcLb0EEC2ERKSt8_Locinfomb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIcLb0EED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIcLb0EED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIcLb0EED2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIcLb1EE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIcLb1EE4intlE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIcLb1EE7_GetcatEPPKNSt6locale5facetEPKS1_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIcLb1EEC1Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIcLb1EEC1EPKcm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIcLb1EEC1ERKSt8_Locinfomb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIcLb1EEC2Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIcLb1EEC2EPKcm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIcLb1EEC2ERKSt8_Locinfomb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIcLb1EED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIcLb1EED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIcLb1EED2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIwLb0EE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIwLb0EE4intlE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIwLb0EE7_GetcatEPPKNSt6locale5facetEPKS1_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIwLb0EEC1Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIwLb0EEC1EPKcm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIwLb0EEC1ERKSt8_Locinfomb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIwLb0EEC2Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIwLb0EEC2EPKcm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIwLb0EEC2ERKSt8_Locinfomb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIwLb0EED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIwLb0EED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIwLb0EED2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIwLb1EE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIwLb1EE4intlE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIwLb1EE7_GetcatEPPKNSt6locale5facetEPKS1_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIwLb1EEC1Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIwLb1EEC1EPKcm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIwLb1EEC1ERKSt8_Locinfomb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIwLb1EEC2Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIwLb1EEC2EPKcm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIwLb1EEC2ERKSt8_Locinfomb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIwLb1EED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIwLb1EED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt10moneypunctIwLb1EED2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt11logic_errorD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt11logic_errorD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt11logic_errorD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt11range_errorD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt11range_errorD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt11range_errorD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt11regex_errorD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt11regex_errorD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt11regex_errorD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12bad_weak_ptrD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12bad_weak_ptrD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12bad_weak_ptrD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12domain_errorD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12domain_errorD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12domain_errorD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12future_errorD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12future_errorD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12future_errorD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12length_errorD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12length_errorD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12length_errorD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12out_of_rangeD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12out_of_rangeD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12out_of_rangeD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12placeholders2_1E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12placeholders2_2E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12placeholders2_3E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12placeholders2_4E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12placeholders2_5E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12placeholders2_6E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12placeholders2_7E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12placeholders2_8E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12placeholders2_9E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12placeholders3_10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12placeholders3_11E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12placeholders3_12E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12placeholders3_13E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12placeholders3_14E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12placeholders3_15E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12placeholders3_16E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12placeholders3_17E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12placeholders3_18E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12placeholders3_19E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12placeholders3_20E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12system_errorC2ESt10error_codePKc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12system_errorD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12system_errorD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt12system_errorD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13_Num_int_base10is_boundedE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13_Num_int_base10is_integerE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13_Num_int_base14is_specializedE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13_Num_int_base5radixE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13_Num_int_base8is_exactE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13_Num_int_base9is_moduloE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13_Regex_traitsIcE6_NamesE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13_Regex_traitsIwE6_NamesE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13bad_exceptionD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13bad_exceptionD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13bad_exceptionD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_filebufIcSt11char_traitsIcEE4syncEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_filebufIcSt11char_traitsIcEE5_LockEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_filebufIcSt11char_traitsIcEE5imbueERKSt6locale() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_filebufIcSt11char_traitsIcEE5uflowEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_filebufIcSt11char_traitsIcEE6setbufEPci() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_filebufIcSt11char_traitsIcEE7_UnlockEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt13basic_filebufIcSt11char_traitsIcEE7seekoffElNSt5_IosbIiE8_SeekdirENS4_9_OpenmodeE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt13basic_filebufIcSt11char_traitsIcEE7seekposESt4fposI9_MbstatetENSt5_IosbIiE9_OpenmodeE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_filebufIcSt11char_traitsIcEE8overflowEi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_filebufIcSt11char_traitsIcEE9_EndwriteEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_filebufIcSt11char_traitsIcEE9pbackfailEi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_filebufIcSt11char_traitsIcEE9underflowEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_filebufIcSt11char_traitsIcEED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_filebufIcSt11char_traitsIcEED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_filebufIcSt11char_traitsIcEED2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_filebufIwSt11char_traitsIwEE4syncEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_filebufIwSt11char_traitsIwEE5_LockEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_filebufIwSt11char_traitsIwEE5imbueERKSt6locale() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_filebufIwSt11char_traitsIwEE5uflowEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_filebufIwSt11char_traitsIwEE6setbufEPwi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_filebufIwSt11char_traitsIwEE7_UnlockEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt13basic_filebufIwSt11char_traitsIwEE7seekoffElNSt5_IosbIiE8_SeekdirENS4_9_OpenmodeE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt13basic_filebufIwSt11char_traitsIwEE7seekposESt4fposI9_MbstatetENSt5_IosbIiE9_OpenmodeE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_filebufIwSt11char_traitsIwEE8overflowEi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_filebufIwSt11char_traitsIwEE9_EndwriteEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_filebufIwSt11char_traitsIwEE9pbackfailEi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_filebufIwSt11char_traitsIwEE9underflowEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_filebufIwSt11char_traitsIwEED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_filebufIwSt11char_traitsIwEED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_filebufIwSt11char_traitsIwEED2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13runtime_errorD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13runtime_errorD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13runtime_errorD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14_Error_objectsIiE14_System_objectE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14_Error_objectsIiE15_Generic_objectE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14_Num_ldbl_base10has_denormE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14_Num_ldbl_base10is_boundedE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14_Num_ldbl_base10is_integerE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14_Num_ldbl_base11round_styleE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14_Num_ldbl_base12has_infinityE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14_Num_ldbl_base13has_quiet_NaNE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14_Num_ldbl_base14is_specializedE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14_Num_ldbl_base15has_denorm_lossE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14_Num_ldbl_base15tinyness_beforeE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14_Num_ldbl_base17has_signaling_NaNE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14_Num_ldbl_base5radixE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14_Num_ldbl_base5trapsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14_Num_ldbl_base8is_exactE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14_Num_ldbl_base9is_iec559E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14_Num_ldbl_base9is_moduloE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14_Num_ldbl_base9is_signedE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14error_categoryD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIaE6digitsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIaE8digits10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIaE9is_signedE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIbE6digitsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIbE8digits10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIbE9is_moduloE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIbE9is_signedE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIcE6digitsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIcE8digits10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIcE9is_signedE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIdE12max_digits10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIdE12max_exponentE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIdE12min_exponentE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIdE14max_exponent10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIdE14min_exponent10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIdE6digitsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIdE8digits10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIDiE6digitsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIDiE8digits10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIDiE9is_signedE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIDsE6digitsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIDsE8digits10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIDsE9is_signedE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIeE12max_digits10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIeE12max_exponentE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIeE12min_exponentE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIeE14max_exponent10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIeE14min_exponent10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIeE6digitsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIeE8digits10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIfE12max_digits10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIfE12max_exponentE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIfE12min_exponentE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIfE14max_exponent10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIfE14min_exponent10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIfE6digitsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIfE8digits10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIhE6digitsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIhE8digits10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIhE9is_signedE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIiE6digitsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIiE8digits10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIiE9is_signedE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIjE6digitsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIjE8digits10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIjE9is_signedE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIlE6digitsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIlE8digits10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIlE9is_signedE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsImE6digitsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsImE8digits10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsImE9is_signedE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIsE6digitsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIsE8digits10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIsE9is_signedE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsItE6digitsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsItE8digits10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsItE9is_signedE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIwE6digitsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIwE8digits10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIwE9is_signedE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIxE6digitsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIxE8digits10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIxE9is_signedE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIyE6digitsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIyE8digits10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14numeric_limitsIyE9is_signedE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14overflow_errorD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14overflow_errorD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14overflow_errorD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt15_Num_float_base10has_denormE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt15_Num_float_base10is_boundedE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt15_Num_float_base10is_integerE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt15_Num_float_base11round_styleE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt15_Num_float_base12has_infinityE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt15_Num_float_base13has_quiet_NaNE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt15_Num_float_base14is_specializedE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt15_Num_float_base15has_denorm_lossE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt15_Num_float_base15tinyness_beforeE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt15_Num_float_base17has_signaling_NaNE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt15_Num_float_base5radixE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt15_Num_float_base5trapsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt15_Num_float_base8is_exactE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt15_Num_float_base9is_iec559E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt15_Num_float_base9is_moduloE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt15_Num_float_base9is_signedE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt15underflow_errorD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt15underflow_errorD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt15underflow_errorD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt16invalid_argumentD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt16invalid_argumentD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt16invalid_argumentD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt16nested_exceptionD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt16nested_exceptionD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt16nested_exceptionD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt17bad_function_callD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt17bad_function_callD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt17bad_function_callD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt18bad_variant_accessD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt18bad_variant_accessD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt20_Future_error_objectIiE14_Future_objectE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt20bad_array_new_lengthD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt20bad_array_new_lengthD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt20bad_array_new_lengthD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt22_Future_error_categoryD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt22_Future_error_categoryD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt22_System_error_categoryD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt22_System_error_categoryD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt23_Generic_error_categoryD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt23_Generic_error_categoryD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt3pmr19new_delete_resourceEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt3pmr20get_default_resourceEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt3pmr20null_memory_resourceEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt3pmr20set_default_resourceEPNS_15memory_resourceE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt4_Pad7_LaunchEPKcPP12pthread_attrPP7pthread() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt4_Pad7_LaunchEPKcPP7pthread() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt4_Pad7_LaunchEPP12pthread_attrPP7pthread() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt4_Pad7_LaunchEPP7pthread() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt4_Pad8_ReleaseEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt4_PadC2EPKc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt4_PadC2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt4_PadD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt4_PadD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt5ctypeIcE10table_sizeE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt5ctypeIcE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt5ctypeIcED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt5ctypeIcED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt5ctypeIwE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt5ctypeIwED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt5ctypeIwED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6_Mutex5_LockEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6_Mutex7_UnlockEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6_MutexC1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6_MutexC2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6_MutexD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6_MutexD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6_Winit9_Init_cntE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6_WinitC1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); // GRR - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6_WinitC2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6_WinitD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6_WinitD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6chrono12steady_clock12is_monotonicE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6chrono12steady_clock9is_steadyE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6chrono12system_clock12is_monotonicE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6chrono12system_clock9is_steadyE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6locale16_GetgloballocaleEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6locale16_SetgloballocaleEPv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6locale2id7_Id_cntE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6locale5_InitEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6locale5emptyEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6locale5facet7_DecrefEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6locale5facet7_IncrefEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6locale5facet9_RegisterEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6locale6globalERKS_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6locale7_Locimp7_AddfacEPNS_5facetEm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6locale7_Locimp8_ClocptrE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6locale7_Locimp8_MakelocERKSt8_LocinfoiPS0_PKS_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6locale7_Locimp9_MakewlocERKSt8_LocinfoiPS0_PKS_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6locale7_Locimp9_MakexlocERKSt8_LocinfoiPS0_PKS_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6locale7_LocimpC1Eb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6locale7_LocimpC1ERKS0_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6locale7_LocimpC2Eb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6locale7_LocimpC2ERKS0_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6locale7_LocimpD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6locale7_LocimpD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6locale7_LocimpD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6locale7classicEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6localeD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt6thread20hardware_concurrencyEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7_MpunctIcE5_InitERKSt8_Locinfob() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7_MpunctIcEC2Emb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7_MpunctIcEC2EPKcmbb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7_MpunctIcED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7_MpunctIcED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7_MpunctIwE5_InitERKSt8_Locinfob() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7_MpunctIwEC2Emb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7_MpunctIwEC2EPKcmbb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7_MpunctIwED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7_MpunctIwED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7codecvtIcc9_MbstatetE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7codecvtIcc9_MbstatetE5_InitERKSt8_Locinfo() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7codecvtIcc9_MbstatetE7_GetcatEPPKNSt6locale5facetEPKS2_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7codecvtIcc9_MbstatetEC1Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7codecvtIcc9_MbstatetEC1ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7codecvtIcc9_MbstatetEC2Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7codecvtIcc9_MbstatetEC2ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7codecvtIcc9_MbstatetED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7codecvtIcc9_MbstatetED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7codecvtIcc9_MbstatetED2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7codecvtIDic9_MbstatetE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7codecvtIDic9_MbstatetED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7codecvtIDic9_MbstatetED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7codecvtIDsc9_MbstatetE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7codecvtIDsc9_MbstatetED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7codecvtIDsc9_MbstatetED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7codecvtIwc9_MbstatetE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7codecvtIwc9_MbstatetED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7codecvtIwc9_MbstatetED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7collateIcE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7collateIcE5_InitERKSt8_Locinfo() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7collateIcE7_GetcatEPPKNSt6locale5facetEPKS1_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7collateIcEC1Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7collateIcEC1EPKcm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7collateIcEC1ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7collateIcEC2Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7collateIcEC2EPKcm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7collateIcEC2ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7collateIcED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7collateIcED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7collateIcED2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7collateIwE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7collateIwE5_InitERKSt8_Locinfo() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7collateIwE7_GetcatEPPKNSt6locale5facetEPKS1_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7collateIwEC1Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7collateIwEC1EPKcm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7collateIwEC1ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7collateIwEC2Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7collateIwEC2EPKcm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7collateIwEC2ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7collateIwED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7collateIwED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7collateIwED2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8_Locinfo8_AddcatsEiPKc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8_LocinfoC1EiPKc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8_LocinfoC1EPKc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8_LocinfoC1ERKSs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8_LocinfoC2EiPKc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8_LocinfoC2EPKc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8_LocinfoC2ERKSs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8_LocinfoD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8_LocinfoD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8bad_castD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8bad_castD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8bad_castD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8ios_base4Init9_Init_cntE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8ios_base4InitC1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); // alien isolation - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8ios_base4InitC2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); // GRR - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8ios_base4InitD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8ios_base4InitD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8ios_base5_SyncE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8ios_base5clearENSt5_IosbIiE8_IostateEb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8ios_base6_IndexE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8ios_base7_AddstdEPS_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8ios_base7failureD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8ios_base7failureD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8ios_base7failureD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8ios_baseD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8ios_baseD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8ios_baseD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8messagesIcE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8messagesIcE5_InitERKSt8_Locinfo() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8messagesIcE7_GetcatEPPKNSt6locale5facetEPKS1_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8messagesIcEC1Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8messagesIcEC1EPKcm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8messagesIcEC1ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8messagesIcEC2Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8messagesIcEC2EPKcm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8messagesIcEC2ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8messagesIcED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8messagesIcED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8messagesIcED2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8messagesIwE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8messagesIwE5_InitERKSt8_Locinfo() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8messagesIwE7_GetcatEPPKNSt6locale5facetEPKS1_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8messagesIwEC1Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8messagesIwEC1EPKcm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8messagesIwEC1ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8messagesIwEC2Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8messagesIwEC2EPKcm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8messagesIwEC2ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8messagesIwED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8messagesIwED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8messagesIwED2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8numpunctIcE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8numpunctIcE5_InitERKSt8_Locinfob() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8numpunctIcE5_TidyEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8numpunctIcE7_GetcatEPPKNSt6locale5facetEPKS1_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8numpunctIcEC1Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8numpunctIcEC1EPKcmb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8numpunctIcEC1ERKSt8_Locinfomb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8numpunctIcEC2Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8numpunctIcEC2EPKcmb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8numpunctIcEC2ERKSt8_Locinfomb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8numpunctIcED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8numpunctIcED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8numpunctIcED2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8numpunctIwE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8numpunctIwE5_InitERKSt8_Locinfob() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8numpunctIwE5_TidyEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8numpunctIwE7_GetcatEPPKNSt6locale5facetEPKS1_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8numpunctIwEC1Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8numpunctIwEC1EPKcmb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8numpunctIwEC1ERKSt8_Locinfomb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8numpunctIwEC2Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8numpunctIwEC2EPKcmb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8numpunctIwEC2ERKSt8_Locinfomb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8numpunctIwED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8numpunctIwED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8numpunctIwED2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9_Num_base10has_denormE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9_Num_base10is_boundedE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9_Num_base10is_integerE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9_Num_base11round_styleE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9_Num_base12has_infinityE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9_Num_base12max_digits10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9_Num_base12max_exponentE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9_Num_base12min_exponentE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9_Num_base13has_quiet_NaNE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9_Num_base14is_specializedE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9_Num_base14max_exponent10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9_Num_base14min_exponent10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9_Num_base15has_denorm_lossE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9_Num_base15tinyness_beforeE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9_Num_base17has_signaling_NaNE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9_Num_base5radixE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9_Num_base5trapsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9_Num_base6digitsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9_Num_base8digits10E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9_Num_base8is_exactE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9_Num_base9is_iec559E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9_Num_base9is_moduloE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9_Num_base9is_signedE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9bad_allocD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9bad_allocD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9bad_allocD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9exception18_Set_raise_handlerEPFvRKS_E() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9exceptionD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9exceptionD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9exceptionD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9type_infoD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9type_infoD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9type_infoD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZnwmRKSt9nothrow_t() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZnwmSt11align_val_t() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZnwmSt11align_val_tRKSt9nothrow_t() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt10_Rng_abortPKc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt10adopt_lock() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt10defer_lock() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt10unexpectedv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt11_Xbad_allocv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt11setiosflagsNSt5_IosbIiE9_FmtflagsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt11try_to_lock() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt12setprecisioni() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt13_Cl_charnames() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt13_Execute_onceRSt9once_flagPFiPvS1_PS1_ES1_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt13_Syserror_mapi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt13_Xregex_errorNSt15regex_constants10error_typeE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt13get_terminatev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt13resetiosflagsNSt5_IosbIiE9_FmtflagsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt13set_terminatePFvvE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt14_Atomic_assertPKcS0_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt14_Cl_wcharnames() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt14_Debug_messagePKcS0_j() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt14_Raise_handler() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt14_Random_devicev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt14_Throw_C_errori() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt14_Xlength_errorPKc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt14_Xout_of_rangePKc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt14get_unexpectedv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt14set_unexpectedPFvvE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt15_sceLibcLocinfoPKc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt15_Xruntime_errorPKc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt15future_categoryv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt15get_new_handlerv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt15set_new_handlerPFvvE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt15system_categoryv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt16_Throw_Cpp_errori() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt16_Xoverflow_errorPKc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt16generic_categoryv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt17_Future_error_mapi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt18_String_cpp_unused() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt18_Xinvalid_argumentPKc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt18uncaught_exceptionv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt19_Throw_future_errorRKSt10error_code() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt19_Xbad_function_callv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt21_sceLibcClassicLocale() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt22_Get_future_error_whati() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt22_Random_device_entropyv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt25_Rethrow_future_exceptionSt13exception_ptr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt3cin() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt4_Fpz() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt4cerr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt4clog() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt4cout() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt4setwi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt4wcin() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt5wcerr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt5wclog() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt5wcout() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt6_ThrowRKSt9exception() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt6ignore() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt7_BADOFF() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt7_FiopenPKcNSt5_IosbIiE9_OpenmodeEi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt7_FiopenPKwNSt5_IosbIiE9_OpenmodeEi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt7_MP_AddPyy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt7_MP_GetPy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt7_MP_MulPyyy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt7_MP_RemPyy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt7nothrow() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt7setbasei() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt8_XLgammad() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt8_XLgammae() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt8_XLgammaf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt9_LStrcollIcEiPKT_S2_S2_S2_PKSt8_Collvec() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt9_LStrcollIwEiPKT_S2_S2_S2_PKSt8_Collvec() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt9_LStrxfrmIcEmPT_S1_PKS0_S3_PKSt8_Collvec() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt9_LStrxfrmIwEmPT_S1_PKS0_S3_PKSt8_Collvec() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt9terminatev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIa() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTId() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIDh() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIDi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIDn() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIDs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIe() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIh() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIj() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIn() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIN10__cxxabiv116__enum_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIN10__cxxabiv117__array_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIN10__cxxabiv117__class_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIN10__cxxabiv117__pbase_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIN10__cxxabiv119__pointer_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIN10__cxxabiv120__function_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIN10__cxxabiv120__si_class_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIN10__cxxabiv121__vmi_class_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIN10__cxxabiv123__fundamental_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIN10__cxxabiv129__pointer_to_member_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIN6Dinkum7threads10lock_errorE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIN6Dinkum7threads21thread_resource_errorE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTINSt6locale5facetE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTINSt6locale7_LocimpE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTINSt8ios_base7failureE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIo() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPa() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPd() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPDh() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPDi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPDn() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPDs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPe() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPh() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPj() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPKa() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPKb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPKc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPKd() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPKDh() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPKDi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPKDn() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPKDs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPKe() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPKf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPKh() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPKi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPKj() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPKl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPKm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPKn() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPKo() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPKs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPKt() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPKv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPKw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPKx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPKy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPn() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPo() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPt() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIPy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISo() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt10bad_typeid() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt10ctype_base() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt10money_base() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt10moneypunctIcLb0EE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt10moneypunctIcLb1EE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt10moneypunctIwLb0EE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt10moneypunctIwLb1EE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt11_Facet_base() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt11logic_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt11range_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt11regex_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt12bad_weak_ptr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt12codecvt_base() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt12domain_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt12future_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt12length_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt12out_of_range() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt12system_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt13bad_exception() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt13basic_filebufIcSt11char_traitsIcEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt13basic_filebufIwSt11char_traitsIwEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt13messages_base() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt13runtime_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt14error_category() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt14overflow_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt15underflow_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt16invalid_argument() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt16nested_exception() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt17bad_function_call() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt18bad_variant_access() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt20bad_array_new_length() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt22_Future_error_category() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt22_System_error_category() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt23_Generic_error_category() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt4_Pad() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt5_IosbIiE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt5ctypeIcE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt5ctypeIwE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt7_MpunctIcE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt7_MpunctIwE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt7codecvtIcc9_MbstatetE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt7codecvtIDic9_MbstatetE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt7codecvtIDsc9_MbstatetE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt7codecvtIwc9_MbstatetE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt7collateIcE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt7collateIwE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt8bad_cast() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt8ios_base() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt8messagesIcE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt8messagesIwE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt8numpunctIcE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt8numpunctIwE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt9bad_alloc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt9basic_iosIcSt11char_traitsIcEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt9basic_iosIwSt11char_traitsIwEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt9exception() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt9time_base() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt9type_info() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIt() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTIy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSa() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSd() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSDi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSDn() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSDs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSe() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSh() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSj() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSN10__cxxabiv116__enum_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSN10__cxxabiv117__array_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSN10__cxxabiv117__class_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSN10__cxxabiv117__pbase_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSN10__cxxabiv119__pointer_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSN10__cxxabiv120__function_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSN10__cxxabiv120__si_class_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSN10__cxxabiv121__vmi_class_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSN10__cxxabiv123__fundamental_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSN10__cxxabiv129__pointer_to_member_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSN6Dinkum7threads10lock_errorE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSN6Dinkum7threads21thread_resource_errorE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSNSt6locale5facetE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSNSt6locale7_LocimpE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSNSt8ios_base7failureE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPa() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPd() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPDi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPDn() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPDs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPe() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPh() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPj() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPKa() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPKb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPKc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPKd() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPKDi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPKDn() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPKDs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPKe() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPKf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPKh() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPKi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPKj() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPKl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPKm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPKs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPKt() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPKv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPKw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPKx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPKy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPt() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSPy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSo() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt10bad_typeid() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt10ctype_base() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt10money_base() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt10moneypunctIcLb0EE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt10moneypunctIcLb1EE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt10moneypunctIwLb0EE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt10moneypunctIwLb1EE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt11_Facet_base() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt11logic_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt11range_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt11regex_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt12bad_weak_ptr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt12codecvt_base() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt12domain_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt12future_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt12length_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt12out_of_range() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt12system_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt13bad_exception() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt13basic_filebufIcSt11char_traitsIcEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt13basic_filebufIwSt11char_traitsIwEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt13messages_base() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt13runtime_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt14error_category() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt14overflow_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt15underflow_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt16invalid_argument() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt16nested_exception() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt17bad_function_call() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt18bad_variant_access() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt20bad_array_new_length() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt22_Future_error_category() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt22_System_error_category() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt23_Generic_error_category() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt4_Pad() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt5_IosbIiE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt5ctypeIcE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt5ctypeIwE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt7_MpunctIcE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt7_MpunctIwE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt7codecvtIcc9_MbstatetE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt7codecvtIDic9_MbstatetE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt7codecvtIDsc9_MbstatetE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt7codecvtIwc9_MbstatetE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt7collateIcE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt7collateIwE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt8bad_cast() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt8ios_base() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt8messagesIcE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt8messagesIwE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt8numpunctIcE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt8numpunctIwE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt9bad_alloc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt9basic_iosIcSt11char_traitsIcEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt9basic_iosIwSt11char_traitsIwEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt9exception() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt9time_base() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt9type_info() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSt() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTv0_n24_NSiD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTv0_n24_NSiD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTv0_n24_NSoD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTv0_n24_NSoD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVN10__cxxabiv116__enum_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVN10__cxxabiv117__array_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVN10__cxxabiv117__class_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVN10__cxxabiv117__pbase_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVN10__cxxabiv119__pointer_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVN10__cxxabiv120__function_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVN10__cxxabiv120__si_class_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVN10__cxxabiv121__vmi_class_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVN10__cxxabiv123__fundamental_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVN10__cxxabiv129__pointer_to_member_type_infoE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVN6Dinkum7threads10lock_errorE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVN6Dinkum7threads21thread_resource_errorE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVNSt6locale7_LocimpE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVNSt8ios_base7failureE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSo() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt10bad_typeid() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt10moneypunctIcLb0EE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt10moneypunctIcLb1EE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt10moneypunctIwLb0EE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt10moneypunctIwLb1EE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt11logic_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt11range_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt11regex_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt12bad_weak_ptr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt12domain_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt12future_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt12length_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt12out_of_range() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt12system_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt13bad_exception() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt13basic_filebufIcSt11char_traitsIcEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt13basic_filebufIwSt11char_traitsIwEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt13runtime_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt14error_category() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt14overflow_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt15underflow_error() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt16invalid_argument() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt16nested_exception() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt17bad_function_call() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt18bad_variant_access() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt20bad_array_new_length() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt22_Future_error_category() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt22_System_error_category() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt23_Generic_error_category() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt4_Pad() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt5ctypeIcE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt5ctypeIwE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt7_MpunctIcE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt7_MpunctIwE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt7codecvtIcc9_MbstatetE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt7codecvtIDic9_MbstatetE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt7codecvtIDsc9_MbstatetE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt7codecvtIwc9_MbstatetE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt7collateIcE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt7collateIwE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt8bad_cast() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt8ios_base() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt8messagesIcE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt8messagesIwE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt8numpunctIcE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt8numpunctIwE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt9bad_alloc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt9exception() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt9type_info() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZZNSt13basic_filebufIcSt11char_traitsIcEE5_InitEP7__sFILENS2_7_InitflEE7_Stinit() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZZNSt13basic_filebufIwSt11char_traitsIwEE5_InitEP7__sFILENS2_7_InitflEE7_Stinit() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_abort() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_abort_handler_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_alarm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_aligned_alloc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_asctime() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_asctime_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_at_quick_exit() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_atexit() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_atof() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_atoi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_atol() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_atoll() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_basename() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_basename_r() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_bcmp() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_bcopy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_bsearch() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_bsearch_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_btowc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_bzero() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_c16rtomb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_c32rtomb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_calloc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_cbrt() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_cbrtf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_cbrtl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_clearerr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_clearerr_unlocked() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_clock() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_clock_1700() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_closedir() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_copysign() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_copysignf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_copysignl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_ctime() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_ctime_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_daemon() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_daylight() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_devname() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_devname_r() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_difftime() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_dirname() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_div() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_drand48() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_drem() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_dremf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_erand48() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_erf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_erfc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_erfcf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_erfcl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_erff() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_erfl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_err() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_err_set_exit() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_err_set_file() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_errc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_errx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_exit() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fclose() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fcloseall() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fdim() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fdimf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fdiml() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fdopen() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fdopendir() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_feclearexcept() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fedisableexcept() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_feenableexcept() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fegetenv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fegetexcept() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fegetexceptflag() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fegetround() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fegettrapenable() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_feholdexcept() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_feof() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_feof_unlocked() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_feraiseexcept() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_ferror() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_ferror_unlocked() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fesetenv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fesetexceptflag() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fesetround() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fesettrapenable() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fetestexcept() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_feupdateenv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fflush() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fgetc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fgetln() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fgetpos() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fgets() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fgetwc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fgetws() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fileno() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fileno_unlocked() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_finite() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_finitef() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_flockfile() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_flsl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fma() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fmaf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fmal() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fopen() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fopen_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fpurge() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fputc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fputs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fputwc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fputws() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fread() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_freeifaddrs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_freopen() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_freopen_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fseek() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fseeko() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fsetpos() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fstatvfs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_ftell() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_ftello() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_ftrylockfile() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_funlockfile() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fwide() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fwrite() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_gamma() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_gamma_r() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_gammaf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_gammaf_r() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_getc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_getc_unlocked() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_getchar() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_getchar_unlocked() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_getcwd() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_getenv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_gethostname() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_getifaddrs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_getopt() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_getopt_long() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_getopt_long_only() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_getprogname() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_gets() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_gets_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_getw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_getwc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_getwchar() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_gmtime(time_t* timer) { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_gmtime_s(time_t* timer, u64 flags) { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_hypot() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_hypot3() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_hypot3f() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_hypot3l() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_hypotf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_hypotl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_ignore_handler_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_index() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_inet_addr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_inet_aton() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_inet_ntoa() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_inet_ntoa_r() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_initstate() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_isalnum() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_isalpha() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_isblank() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_iscntrl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_isdigit() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_isgraph() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_isprint() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_ispunct() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_isspace() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_iswalnum() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_iswalpha() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_iswblank() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_iswcntrl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_iswctype() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_iswdigit() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_iswgraph() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_iswlower() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_iswprint() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_iswpunct() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_iswspace() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_iswupper() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_iswxdigit() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_isxdigit() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_j0() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_j0f() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_j1() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_j1f() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_jn() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_jnf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_jrand48() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_labs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_lcong48() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_ldexp() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_ldexpf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_ldexpl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_ldiv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_lgamma() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_lgamma_r() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_lgammaf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_lgammaf_r() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_lgammal() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_llabs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_lldiv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_llrint() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_llrintf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_llrintl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_llround() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_llroundf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_llroundl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_localeconv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_localtime() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_localtime_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_longjmp() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_lrand48() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_lrint() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_lrintf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_lrintl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_makecontext() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_mblen() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_mbrlen() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_mbrtoc16() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_mbrtoc32() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_mbrtowc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_mbsinit() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_mbsrtowcs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_mbsrtowcs_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_mbstowcs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_mbstowcs_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_mbtowc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_mergesort() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_mktime() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_modf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_modff() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_modfl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_mrand48() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_nearbyint() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_nearbyintf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_nearbyintl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_Need_sceLibcInternal() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_nextafter() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_nextafterf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_nextafterl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_nexttoward() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_nexttowardf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_nexttowardl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_nrand48() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_opendir() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_optarg() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_opterr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_optind() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_optopt() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_optreset() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_perror() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_posix_spawn() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_posix_spawn_file_actions_addclose() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_posix_spawn_file_actions_adddup2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_posix_spawn_file_actions_addopen() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_posix_spawn_file_actions_destroy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_posix_spawn_file_actions_init() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_posix_spawnattr_destroy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_posix_spawnattr_getflags() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_posix_spawnattr_getpgroup() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_posix_spawnattr_getschedparam() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_posix_spawnattr_getschedpolicy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_posix_spawnattr_getsigdefault() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_posix_spawnattr_getsigmask() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_posix_spawnattr_init() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_posix_spawnattr_setflags() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_posix_spawnattr_setpgroup() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_posix_spawnattr_setschedparam() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_posix_spawnattr_setschedpolicy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_posix_spawnattr_setsigdefault() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_posix_spawnattr_setsigmask() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_posix_spawnp() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_psignal() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_putc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_putc_unlocked() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_putchar() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_putchar_unlocked() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_putenv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_puts() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_putw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_putwc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_putwchar() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_qsort() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_qsort_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_quick_exit() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_rand() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_rand_r() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_random() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_readdir() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_readdir_r() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_realpath() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_remainderf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_remainderl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_remove() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_remquo() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_remquof() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_remquol() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_rewind() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_rewinddir() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_rindex() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_rint() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_rintf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_rintl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_round() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_roundf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_roundl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_scalb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_scalbf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_scalbln() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_scalblnf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_scalblnl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_scalbn() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_scalbnf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_scalbnl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_sceLibcDebugOut() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_sceLibcHeapGetAddressRanges() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_sceLibcHeapMutexCalloc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_sceLibcHeapMutexFree() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_sceLibcHeapSetAddressRangeCallback() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_sceLibcHeapSetTraceMarker() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_sceLibcHeapUnsetTraceMarker() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_sceLibcInternalMemoryGetWakeAddr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_sceLibcInternalMemoryMutexEnable() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_sceLibcInternalSetMallocCallback() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_sceLibcOnce() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_seed48() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_seekdir() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_set_constraint_handler_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_setbuf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_setenv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_setjmp(std::jmp_buf buf) { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_setlocale() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_setstate() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_setvbuf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_sigblock() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_siginterrupt() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_signalcontext() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_signgam() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_significand() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_significandf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_sigsetmask() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_sigvec() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_srand48() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_srandom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_srandomdev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_statvfs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_stderr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_stdin() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_stdout() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_stpcpy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_sys_nsig() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_sys_siglist() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_sys_signame() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_syslog() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_telldir() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_tgamma() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_tgammaf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_tgammal() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_time() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_timezone() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_tolower() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_toupper() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_towctrans() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_towlower() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_towupper() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_trunc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_truncf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_truncl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_tzname() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_tzset() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_ungetc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_ungetwc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_unsetenv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_utime() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_verr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_verrc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_verrx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vsyslog() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vwarn() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vwarnc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vwarnx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_warn() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_warnc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_warnx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcrtomb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcrtomb_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcscat() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcscat_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcschr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcscmp() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcscoll() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcscpy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcscpy_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcscspn() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcsftime() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcslen() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcsncat() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcsncat_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcsncmp() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcsncpy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcsncpy_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcsnlen_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcspbrk() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcsrchr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcsrtombs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcsrtombs_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcsspn() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcstod() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcstof() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcstoimax() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcstok() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcstok_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcstol() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcstold() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcstoll() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcstombs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcstombs_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcstoul() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcstoull() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcstoumax() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcsxfrm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wctob() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wctomb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wctomb_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wctrans() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wctype() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_xtime_get() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_y0() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_y0f() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_y1() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_y1f() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_yn() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_ynf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_Func_186EB8E3525D6240() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_Func_419F5881393ECAB1() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_Func_6C6B8377791654A4() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_Func_7FD2D5C8DF0ACBC8() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_Func_C14A89D29B148C3A() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - void RegisterlibSceLibcInternal(Core::Loader::SymbolsResolver* sym) { - RegisterlibSceLibcInternalMspace(sym); - RegisterlibSceLibcInternalIo(sym); - RegisterlibSceLibcInternalMemory(sym); + RegisterlibSceLibcInternalMath(sym); RegisterlibSceLibcInternalStr(sym); - RegisterlibSceLibcInternalStream(sym); - - LIB_FUNCTION("NWtTN10cJzE", "libSceLibcInternalExt", 1, "libSceLibcInternal", 1, 1, - internal_sceLibcHeapGetTraceInfo); - LIB_FUNCTION("ys1W6EwuVw4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___absvdi2); - LIB_FUNCTION("2HED9ow7Zjc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___absvsi2); - LIB_FUNCTION("v9XNTmsmz+M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___absvti2); - LIB_FUNCTION("3CAYAjL-BLs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___adddf3); - LIB_FUNCTION("mhIInD5nz8I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___addsf3); - LIB_FUNCTION("8gG-+co6LfM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___addvdi3); - LIB_FUNCTION("gsnW-FWQqZo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___addvsi3); - LIB_FUNCTION("IjlonFkCFDs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___addvti3); - LIB_FUNCTION("CS91br93fag", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___ashldi3); - LIB_FUNCTION("ECUHmdEfhic", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___ashlti3); - LIB_FUNCTION("fSZ+gbf8Ekc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___ashrdi3); - LIB_FUNCTION("7+0ouwmGDww", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___ashrti3); - LIB_FUNCTION("ClfCoK1Zeb4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_compare_exchange); - LIB_FUNCTION("ZwapHUAcijE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_compare_exchange_1); - LIB_FUNCTION("MwiKdf6QFvI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_compare_exchange_2); - LIB_FUNCTION("lku-VgKK0RE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_compare_exchange_4); - LIB_FUNCTION("tnlAgPCKyTk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_compare_exchange_8); - LIB_FUNCTION("hsn2TaF3poY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_compare_exchange_n); - LIB_FUNCTION("5i8mTQeo9hs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_exchange); - LIB_FUNCTION("z8lecpCHpqU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_exchange_1); - LIB_FUNCTION("HDvFM0iZYXo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_exchange_2); - LIB_FUNCTION("yit-Idli5gU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_exchange_4); - LIB_FUNCTION("UOz27kgch8k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_exchange_8); - LIB_FUNCTION("oCH4efUlxZ0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_exchange_n); - LIB_FUNCTION("Qb86Y5QldaE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_fetch_add_1); - LIB_FUNCTION("wEImmi0YYQM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_fetch_add_2); - LIB_FUNCTION("U8pDVMfBDUY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_fetch_add_4); - LIB_FUNCTION("SqcnaljoFBw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_fetch_add_8); - LIB_FUNCTION("Q3-0HGD3Y48", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_fetch_and_1); - LIB_FUNCTION("A71XWS1kKqA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_fetch_and_2); - LIB_FUNCTION("E-XEmpL9i1A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_fetch_and_4); - LIB_FUNCTION("xMksIr3nXug", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_fetch_and_8); - LIB_FUNCTION("LvLuiirFk8U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_fetch_or_1); - LIB_FUNCTION("aSNAf0kxC+Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_fetch_or_2); - LIB_FUNCTION("AFRS4-8aOSo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_fetch_or_4); - LIB_FUNCTION("5ZKavcBG7eM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_fetch_or_8); - LIB_FUNCTION("HWBJOsgJBT8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_fetch_sub_1); - LIB_FUNCTION("yvhjR7PTRgc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_fetch_sub_2); - LIB_FUNCTION("-mUC21i8WBQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_fetch_sub_4); - LIB_FUNCTION("K+k1HlhjyuA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_fetch_sub_8); - LIB_FUNCTION("aWc+LyHD1vk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_fetch_xor_1); - LIB_FUNCTION("PZoM-Yn6g2Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_fetch_xor_2); - LIB_FUNCTION("pPdYDr1KDsI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_fetch_xor_4); - LIB_FUNCTION("Dw3ieb2rMmU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_fetch_xor_8); - LIB_FUNCTION("JZWEhLSIMoQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_is_lock_free); - LIB_FUNCTION("+iy+BecyFVw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_load); - LIB_FUNCTION("cWgvLiSJSOQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_load_1); - LIB_FUNCTION("ufqiLmjiBeM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_load_2); - LIB_FUNCTION("F+m2tOMgeTo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_load_4); - LIB_FUNCTION("8KwflkOtvZ8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_load_8); - LIB_FUNCTION("Q6oqEnefZQ8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_load_n); - LIB_FUNCTION("sV6ry-Fd-TM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_store); - LIB_FUNCTION("ZF6hpsTZ2m8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_store_1); - LIB_FUNCTION("-JjkEief9No", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_store_2); - LIB_FUNCTION("4tDF0D+qdWk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_store_4); - LIB_FUNCTION("DEQmHCl-EGU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_store_8); - LIB_FUNCTION("GdwuPYbVpP4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___atomic_store_n); - LIB_FUNCTION("XGNIEdRyYPo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cleanup); - LIB_FUNCTION("gCf7+aGEhnU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___clzdi2); - LIB_FUNCTION("ptL8XWgpGS4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___clzsi2); - LIB_FUNCTION("jPywoVsPVR8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___clzti2); - LIB_FUNCTION("OvbYtSGnzFk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cmpdi2); - LIB_FUNCTION("u2kPEkUHfsg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cmpti2); - LIB_FUNCTION("yDPuV0SXp7g", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___ctzdi2); - LIB_FUNCTION("2NvhgiBTcVE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___ctzsi2); - LIB_FUNCTION("olBDzD1rX2Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___ctzti2); - LIB_FUNCTION("IJKVjsmxxWI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cxa_allocate_dependent_exception); - LIB_FUNCTION("cfAXurvfl5o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cxa_allocate_exception); - LIB_FUNCTION("tsvEmnenz48", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cxa_atexit); - LIB_FUNCTION("pBxafllkvt0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cxa_bad_cast); - LIB_FUNCTION("xcc6DTcL8QA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cxa_bad_typeid); - LIB_FUNCTION("3cUUypQzMiI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cxa_begin_catch); - LIB_FUNCTION("usKbuvy2hQg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cxa_call_unexpected); - LIB_FUNCTION("BxPeH9TTcs4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cxa_current_exception_type); - LIB_FUNCTION("RY8mQlhg7mI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cxa_current_primary_exception); - LIB_FUNCTION("MQFPAqQPt1s", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cxa_decrement_exception_refcount); - LIB_FUNCTION("zMCYAqNRllc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cxa_demangle); - LIB_FUNCTION("lX+4FNUklF0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cxa_end_catch); - LIB_FUNCTION("H2e8t5ScQGc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cxa_finalize); - LIB_FUNCTION("kBxt5LwtLA4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cxa_free_dependent_exception); - LIB_FUNCTION("nOIEswYD4Ig", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cxa_free_exception); - LIB_FUNCTION("Y6Sl4Xw7gfA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cxa_get_exception_ptr); - LIB_FUNCTION("3rJJb81CDM4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cxa_get_globals); - LIB_FUNCTION("uCRed7SvX5E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cxa_get_globals_fast); - LIB_FUNCTION("2emaaluWzUw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cxa_guard_abort); - LIB_FUNCTION("3GPpjQdAMTw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cxa_guard_acquire); - LIB_FUNCTION("9rAeANT2tyE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cxa_guard_release); - LIB_FUNCTION("PsrRUg671K0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cxa_increment_exception_refcount); - LIB_FUNCTION("zr094EQ39Ww", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cxa_pure_virtual); - LIB_FUNCTION("ZL9FV4mJXxo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cxa_rethrow); - LIB_FUNCTION("qKQiNX91IGo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cxa_rethrow_primary_exception); - LIB_FUNCTION("vkuuLfhnSZI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___cxa_throw); - LIB_FUNCTION("eTP9Mz4KkY4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___divdc3); - LIB_FUNCTION("mdGgLADsq8A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___divdf3); - LIB_FUNCTION("9daYeu+0Y-A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___divdi3); - LIB_FUNCTION("1rs4-h7Fq9U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___divmoddi4); - LIB_FUNCTION("rtBENmz8Iwc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___divmodsi4); - LIB_FUNCTION("dcaiFCKtoDg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___divsc3); - LIB_FUNCTION("nufufTB4jcI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___divsf3); - LIB_FUNCTION("zdJ3GXAcI9M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___divsi3); - LIB_FUNCTION("XU4yLKvcDh0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___divti3); - LIB_FUNCTION("SNdBm+sNfM4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___divxc3); - LIB_FUNCTION("hMAe+TWS9mQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___dynamic_cast); - LIB_FUNCTION("8F52nf7VDS8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___eqdf2); - LIB_FUNCTION("LmXIpdHppBM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___eqsf2); - LIB_FUNCTION("6zU++1tayjA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___extendsfdf2); - LIB_FUNCTION("CVoT4wFYleE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___fe_dfl_env); - LIB_FUNCTION("1IB0U3rUtBw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___fedisableexcept); - LIB_FUNCTION("NDOLSTFT1ns", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___feenableexcept); - LIB_FUNCTION("E1iwBYkG3CM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___fflush); - LIB_FUNCTION("r3tNGoVJ2YA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___ffsdi2); - LIB_FUNCTION("b54DvYZEHj4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___ffsti2); - LIB_FUNCTION("q9SHp+5SOOQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___fixdfdi); - LIB_FUNCTION("saNCRNfjeeg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___fixdfsi); - LIB_FUNCTION("cY4yCWdcTXE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___fixdfti); - LIB_FUNCTION("0eoyU-FoNyk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___fixsfdi); - LIB_FUNCTION("3qQmz11yFaA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___fixsfsi); - LIB_FUNCTION("IHq2IaY4UGg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___fixsfti); - LIB_FUNCTION("h8nbSvw0s+M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___fixunsdfdi); - LIB_FUNCTION("6WwFtNvnDag", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___fixunsdfsi); - LIB_FUNCTION("rLuypv9iADw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___fixunsdfti); - LIB_FUNCTION("Qa6HUR3h1k4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___fixunssfdi); - LIB_FUNCTION("NcZqFTG-RBs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___fixunssfsi); - LIB_FUNCTION("mCESRUqZ+mw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___fixunssfti); - LIB_FUNCTION("DG8dDx9ZV70", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___fixunsxfdi); - LIB_FUNCTION("dtMu9zCDn3s", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___fixunsxfsi); - LIB_FUNCTION("l0qC0BR1F44", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___fixunsxfti); - LIB_FUNCTION("31g+YJf1fHk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___fixxfdi); - LIB_FUNCTION("usQDRS-1HZ8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___fixxfti); - LIB_FUNCTION("BMVIEbwpP+8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___floatdidf); - LIB_FUNCTION("2SSK3UFPqgQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___floatdisf); - LIB_FUNCTION("MVPtIf3MtL8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___floatdixf); - LIB_FUNCTION("X7A21ChFXPQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___floatsidf); - LIB_FUNCTION("rdht7pwpNfM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___floatsisf); - LIB_FUNCTION("EtpM9Qdy8D4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___floattidf); - LIB_FUNCTION("VlDpPYOXL58", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___floattisf); - LIB_FUNCTION("dJvVWc2jOP4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___floattixf); - LIB_FUNCTION("1RNxpXpVWs4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___floatundidf); - LIB_FUNCTION("9tnIVFbvOrw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___floatundisf); - LIB_FUNCTION("3A9RVSwG8B0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___floatundixf); - LIB_FUNCTION("OdvMJCV7Oxo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___floatunsidf); - LIB_FUNCTION("RC3VBr2l94o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___floatunsisf); - LIB_FUNCTION("ibs6jIR0Bw0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___floatuntidf); - LIB_FUNCTION("KLfd8g4xp+c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___floatuntisf); - LIB_FUNCTION("OdzLUcBLhb4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___floatuntixf); - LIB_FUNCTION("qlWiRfOJx1A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___fpclassifyd); - LIB_FUNCTION("z7aCCd9hMsI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___fpclassifyf); - LIB_FUNCTION("zwV79ZJ9qAU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___fpclassifyl); - LIB_FUNCTION("hXA24GbAPBk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___gedf2); - LIB_FUNCTION("mdLGxBXl6nk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___gesf2); - LIB_FUNCTION("1PvImz6yb4M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___gtdf2); - LIB_FUNCTION("ICY0Px6zjjo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___gtsf2); - LIB_FUNCTION("XwLA5cTHjt4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___gxx_personality_v0); - LIB_FUNCTION("7p7kTAJcuGg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___inet_addr); - LIB_FUNCTION("a7ToDPsIQrc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___inet_aton); - LIB_FUNCTION("6i5aLrxRhG0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___inet_ntoa); - LIB_FUNCTION("H2QD+kNpa+U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___inet_ntoa_r); - LIB_FUNCTION("dhK16CKwhQg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___isfinite); - LIB_FUNCTION("Q8pvJimUWis", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___isfinitef); - LIB_FUNCTION("3-zCDXatSU4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___isfinitel); - LIB_FUNCTION("V02oFv+-JzA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___isinf); - LIB_FUNCTION("rDMyAf1Jhug", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___isinff); - LIB_FUNCTION("gLGmR9aan4c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___isinfl); - LIB_FUNCTION("GfxAp9Xyiqs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___isnan); - LIB_FUNCTION("lA94ZgT+vMM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___isnanf); - LIB_FUNCTION("YBRHNH4+dDo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___isnanl); - LIB_FUNCTION("fGPRa6T+Cu8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___isnormal); - LIB_FUNCTION("WkYnBHFsmW4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___isnormalf); - LIB_FUNCTION("S3nFV6TR1Dw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___isnormall); - LIB_FUNCTION("q1OvUam0BJU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___isthreaded); - LIB_FUNCTION("-m7FIvSBbMM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___kernel_cos); - LIB_FUNCTION("7ruwcMCJVGI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___kernel_cosdf); - LIB_FUNCTION("GLNDoAYNlLQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___kernel_rem_pio2); - LIB_FUNCTION("zpy7LnTL5p0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___kernel_sin); - LIB_FUNCTION("2Lvc7KWtErs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___kernel_sindf); - LIB_FUNCTION("F78ECICRxho", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___ledf2); - LIB_FUNCTION("hbiV9vHqTgo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___lesf2); - LIB_FUNCTION("9mKjVppFsL0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___longjmp); - LIB_FUNCTION("18E1gOH7cmk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___lshrdi3); - LIB_FUNCTION("1iRAqEqEL0Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___lshrti3); - LIB_FUNCTION("tcBJa2sYx0w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___ltdf2); - LIB_FUNCTION("259y57ZdZ3I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___ltsf2); - LIB_FUNCTION("77pL1FoD4I4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___mb_cur_max); - LIB_FUNCTION("fGYLBr2COwA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___mb_sb_limit); - LIB_FUNCTION("gQFVRFgFi48", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___moddi3); - LIB_FUNCTION("k0vARyJi9oU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___modsi3); - LIB_FUNCTION("J8JRHcUKWP4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___modti3); - LIB_FUNCTION("D4Hf-0ik5xU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___muldc3); - LIB_FUNCTION("O+Bv-zodKLw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___muldf3); - LIB_FUNCTION("Hf8hPlDoVsw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___muldi3); - LIB_FUNCTION("wVbBBrqhwdw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___mulodi4); - LIB_FUNCTION("DDxNvs1a9jM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___mulosi4); - LIB_FUNCTION("+X-5yNFPbDw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___muloti4); - LIB_FUNCTION("y+E+IUZYVmU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___mulsc3); - LIB_FUNCTION("BXmn6hA5o0M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___mulsf3); - LIB_FUNCTION("zhAIFVIN1Ds", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___multi3); - LIB_FUNCTION("Uyfpss5cZDE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___mulvdi3); - LIB_FUNCTION("tFgzEdfmEjI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___mulvsi3); - LIB_FUNCTION("6gc1Q7uu244", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___mulvti3); - LIB_FUNCTION("gZWsDrmeBsg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___mulxc3); - LIB_FUNCTION("ocyIiJnJW24", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___nedf2); - LIB_FUNCTION("tWI4Ej9k9BY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___negdf2); - LIB_FUNCTION("Rj4qy44yYUw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___negdi2); - LIB_FUNCTION("4f+Q5Ka3Ex0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___negsf2); - LIB_FUNCTION("Zofiv1PMmR4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___negti2); - LIB_FUNCTION("fh54IRxGBUQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___negvdi2); - LIB_FUNCTION("7xnsvjuqtZQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___negvsi2); - LIB_FUNCTION("QW-f9vYgI7g", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___negvti2); - LIB_FUNCTION("OWZ3ZLkgye8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___nesf2); - LIB_FUNCTION("KOy7MeQ7OAU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___opendir2); - LIB_FUNCTION("RDeUB6JGi1U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___paritydi2); - LIB_FUNCTION("9xUnIQ53Ao4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___paritysi2); - LIB_FUNCTION("vBP4ytNRXm0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___parityti2); - LIB_FUNCTION("m4S+lkRvTVY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___popcountdi2); - LIB_FUNCTION("IBn9qjWnXIw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___popcountsi2); - LIB_FUNCTION("l1wz5R6cIxE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___popcountti2); - LIB_FUNCTION("H+8UBOwfScI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___powidf2); - LIB_FUNCTION("EiMkgQsOfU0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___powisf2); - LIB_FUNCTION("DSI7bz2Jt-I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___powixf2); - LIB_FUNCTION("Rw4J-22tu1U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___signbit); - LIB_FUNCTION("CjQROLB88a4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___signbitf); - LIB_FUNCTION("Cj81LPErPCc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___signbitl); - LIB_FUNCTION("fIskTFX9p68", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___srefill); - LIB_FUNCTION("yDnwZsMnX0Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___srget); - LIB_FUNCTION("as8Od-tH1BI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___stderrp); - LIB_FUNCTION("bgAcsbcEznc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___stdinp); - LIB_FUNCTION("zqJhBxAKfsc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___stdoutp); - LIB_FUNCTION("HLDcfGUMNWY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___subdf3); - LIB_FUNCTION("FeyelHfQPzo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___subsf3); - LIB_FUNCTION("+kvyBGa+5VI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___subvdi3); - LIB_FUNCTION("y8j-jP6bHW4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___subvsi3); - LIB_FUNCTION("cbyLM5qrvHs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___subvti3); - LIB_FUNCTION("TP6INgQ6N4o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___swbuf); - LIB_FUNCTION("+WLgzxv5xYA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___sync_fetch_and_add_16); - LIB_FUNCTION("XmAquprnaGM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___sync_fetch_and_and_16); - LIB_FUNCTION("GE4I2XAd4G4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___sync_fetch_and_or_16); - LIB_FUNCTION("Z2I0BWPANGY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___sync_fetch_and_sub_16); - LIB_FUNCTION("d5Q-h2wF+-E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___sync_fetch_and_xor_16); - LIB_FUNCTION("ufZdCzu8nME", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___sync_lock_test_and_set_16); - LIB_FUNCTION("2M9VZGYPHLI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___truncdfsf2); - LIB_FUNCTION("SZk+FxWXdAs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___ucmpdi2); - LIB_FUNCTION("dLmvQfG8am4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___ucmpti2); - LIB_FUNCTION("tX8ED4uIAsQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___udivdi3); - LIB_FUNCTION("EWWEBA+Ldw8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___udivmoddi4); - LIB_FUNCTION("PPdIvXwUQwA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___udivmodsi4); - LIB_FUNCTION("lcNk3Ar5rUQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___udivmodti4); - LIB_FUNCTION("PxP1PFdu9OQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___udivsi3); - LIB_FUNCTION("802pFCwC9w0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___udivti3); - LIB_FUNCTION("+wj27DzRPpo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___umoddi3); - LIB_FUNCTION("p4vYrlsVpDE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___umodsi3); - LIB_FUNCTION("ELSr5qm4K1M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___umodti3); - LIB_FUNCTION("EDvkw0WaiOw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___unorddf2); - LIB_FUNCTION("z0OhwgG3Bik", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___unordsf2); - LIB_FUNCTION("-QgqOT5u2Vk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Assert); - LIB_FUNCTION("FHErahnajkw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atan); - LIB_FUNCTION("kBpWlgVZLm4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_compare_exchange_strong); - LIB_FUNCTION("SwJ-E2FImAo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_compare_exchange_strong_1); - LIB_FUNCTION("qXkZo1LGnfk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_compare_exchange_strong_2); - LIB_FUNCTION("s+LfDF7LKxM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_compare_exchange_strong_4); - LIB_FUNCTION("SZrEVfvcHuA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_compare_exchange_strong_8); - LIB_FUNCTION("FOe7cAuBjh8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_compare_exchange_weak); - LIB_FUNCTION("rBbtKToRRq4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_compare_exchange_weak_1); - LIB_FUNCTION("sDOFamOKWBI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_compare_exchange_weak_2); - LIB_FUNCTION("0AgCOypbQ90", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_compare_exchange_weak_4); - LIB_FUNCTION("bNFLV9DJxdc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_compare_exchange_weak_8); - LIB_FUNCTION("frx6Ge5+Uco", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_copy); - LIB_FUNCTION("qvTpLUKwq7Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_exchange); - LIB_FUNCTION("KHJflcH9s84", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_exchange_1); - LIB_FUNCTION("TbuLWpWuJmc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_exchange_2); - LIB_FUNCTION("-EgDt569OVo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_exchange_4); - LIB_FUNCTION("+xoGf-x7nJA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_exchange_8); - LIB_FUNCTION("cO0ldEk3Uko", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_fetch_add_1); - LIB_FUNCTION("9kSWQ8RGtVw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_fetch_add_2); - LIB_FUNCTION("iPBqs+YUUFw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_fetch_add_4); - LIB_FUNCTION("QVsk3fWNbp0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_fetch_add_8); - LIB_FUNCTION("UVDWssRNEPM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_fetch_and_1); - LIB_FUNCTION("PnfhEsZ-5uk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_fetch_and_2); - LIB_FUNCTION("Pn2dnvUmbRA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_fetch_and_4); - LIB_FUNCTION("O6LEoHo2qSQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_fetch_and_8); - LIB_FUNCTION("K49mqeyzLSk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_fetch_or_1); - LIB_FUNCTION("SVIiJg5eppY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_fetch_or_2); - LIB_FUNCTION("R5X1i1zcapI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_fetch_or_4); - LIB_FUNCTION("++In3PHBZfw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_fetch_or_8); - LIB_FUNCTION("-Zfr0ZQheg4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_fetch_sub_1); - LIB_FUNCTION("ovtwh8IO3HE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_fetch_sub_2); - LIB_FUNCTION("2HnmKiLmV6s", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_fetch_sub_4); - LIB_FUNCTION("T8lH8xXEwIw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_fetch_sub_8); - LIB_FUNCTION("Z9gbzf7fkMU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_fetch_xor_1); - LIB_FUNCTION("rpl4rhpUhfg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_fetch_xor_2); - LIB_FUNCTION("-GVEj2QODEI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_fetch_xor_4); - LIB_FUNCTION("XKenFBsoh1c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_fetch_xor_8); - LIB_FUNCTION("4CVc6G8JrvQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_flag_clear); - LIB_FUNCTION("Ou6QdDy1f7g", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_flag_test_and_set); - LIB_FUNCTION("RBPhCcRhyGI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_is_lock_free_1); - LIB_FUNCTION("QhORYaNkS+U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_is_lock_free_2); - LIB_FUNCTION("cRYyxdZo1YQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_is_lock_free_4); - LIB_FUNCTION("-3ZujD7JX9c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_is_lock_free_8); - LIB_FUNCTION("XAqAE803zMg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_load_1); - LIB_FUNCTION("aYVETR3B8wk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_load_2); - LIB_FUNCTION("cjZEuzHkgng", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_load_4); - LIB_FUNCTION("ea-rVHyM3es", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_load_8); - LIB_FUNCTION("HfKQ6ZD53sM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_signal_fence); - LIB_FUNCTION("VRX+Ul1oSgE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_store_1); - LIB_FUNCTION("6WR6sFxcd40", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_store_2); - LIB_FUNCTION("HMRMLOwOFIQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_store_4); - LIB_FUNCTION("2uKxXHAKynI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_store_8); - LIB_FUNCTION("-7vr7t-uto8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atomic_thread_fence); - LIB_FUNCTION("M6nCy6H8Hs4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atqexit); - LIB_FUNCTION("IHiK3lL7CvI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Atthreadexit); - LIB_FUNCTION("aMucxariNg8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Btowc); - LIB_FUNCTION("fttiF7rDdak", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Call_once); - LIB_FUNCTION("G1kDk+5L6dU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Call_onceEx); - LIB_FUNCTION("myTyhGbuDBw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Clocale); - LIB_FUNCTION("mgNGxmJltOY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Closreg); - LIB_FUNCTION("VsP3daJgmVA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Cnd_broadcast); - LIB_FUNCTION("7yMFgcS8EPA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Cnd_destroy); - LIB_FUNCTION("vyLotuB6AS4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Cnd_do_broadcast_at_thread_exit); - LIB_FUNCTION("SreZybSRWpU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Cnd_init); - LIB_FUNCTION("2B+V3qCqz4s", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Cnd_init_with_name); - LIB_FUNCTION("DV2AdZFFEh8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Cnd_register_at_thread_exit); - LIB_FUNCTION("0uuqgRz9qfo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Cnd_signal); - LIB_FUNCTION("McaImWKXong", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Cnd_timedwait); - LIB_FUNCTION("wpuIiVoCWcM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Cnd_unregister_at_thread_exit); - LIB_FUNCTION("vEaqE-7IZYc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Cnd_wait); - LIB_FUNCTION("KeOZ19X8-Ug", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Cosh); - LIB_FUNCTION("gguxDbgbG74", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Costate); - LIB_FUNCTION("YUKO57czb+0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__CTinfo); - LIB_FUNCTION("eul2MC3gaYs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Ctype); - LIB_FUNCTION("chlN6g6UbGo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__CurrentRuneLocale); - LIB_FUNCTION("6aEXAPYpaEA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__CWcsxfrm); - LIB_FUNCTION("ZlsoRa7pcuI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Daysto); - LIB_FUNCTION("e+hi-tOrDZU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal__Dbl); - LIB_FUNCTION("+5OuLYpRB28", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Dclass); - LIB_FUNCTION("lWGF8NHv880", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__DefaultRuneLocale); - LIB_FUNCTION("H0FQnSWp1es", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Deletegloballocale); - LIB_FUNCTION("COSADmn1ROg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Denorm); - LIB_FUNCTION("-vyIrREaQ0g", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Dint); - LIB_FUNCTION("VGhcd0QwhhY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Divide); - LIB_FUNCTION("NApYynEzlco", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Dnorm); - LIB_FUNCTION("4QwxZ3U0OK0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Do_call); - LIB_FUNCTION("FMU7jRhYCRU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Dscale); - LIB_FUNCTION("zvl6nrvd0sE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Dsign); - LIB_FUNCTION("vCQLavj-3CM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Dtento); - LIB_FUNCTION("b-xTWRgI1qw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Dtest); - LIB_FUNCTION("4Wt5uzHO98o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Dunscale); - LIB_FUNCTION("E4SYYdwWV28", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal__Eps); - LIB_FUNCTION("HmdaOhdCr88", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Erf_one); - LIB_FUNCTION("DJXyKhVrAD8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Erf_small); - LIB_FUNCTION("aQURHgjHo-w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Erfc); - LIB_FUNCTION("UhKI6z9WWuo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal__err); - LIB_FUNCTION("u4FNPlIIAtw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Errno); - LIB_FUNCTION("wZi5ly2guNw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Exit); - LIB_FUNCTION("yL91YD-WTBc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal__Exp); - LIB_FUNCTION("chzmnjxxVtk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Fac_tidy); - LIB_FUNCTION("D+fkILS7EK0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Fail_s); - LIB_FUNCTION("us3bDnDzd70", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FAtan); - LIB_FUNCTION("PdnFCFqKGqA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FCosh); - LIB_FUNCTION("LSp+r7-JWwc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FDclass); - LIB_FUNCTION("JG1MkIFKnT8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FDenorm); - LIB_FUNCTION("HcpmBnY1RGE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FDint); - LIB_FUNCTION("fuzzBVdpRG0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FDivide); - LIB_FUNCTION("0NwCmZv7XcU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FDnorm); - LIB_FUNCTION("SSvY6pTRAgk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FDscale); - LIB_FUNCTION("6ei1eQn2WIc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FDsign); - LIB_FUNCTION("SoNnx4Ejxw8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FDtento); - LIB_FUNCTION("mnufPlYbnN0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FDtest); - LIB_FUNCTION("41SqJvOe8lA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FDunscale); - LIB_FUNCTION("OviE3yVSuTU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FEps); - LIB_FUNCTION("z1EfxK6E0ts", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Feraise); - LIB_FUNCTION("dST+OsSWbno", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FErf_one); - LIB_FUNCTION("qEvDssa4tOE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FErf_small); - LIB_FUNCTION("qwR1gtp-WS0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FErfc); - LIB_FUNCTION("JbQw6W62UwI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Fetch_add_8); - LIB_FUNCTION("pxFnS1okTFE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Fetch_and_8); - LIB_FUNCTION("zQQIrnpCoFA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Fetch_and_seq_cst_1); - LIB_FUNCTION("xROUuk7ItMM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Fetch_and_seq_cst_2); - LIB_FUNCTION("jQuruQuMlyo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Fetch_and_seq_cst_4); - LIB_FUNCTION("ixWEOmOBavk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Fetch_or_8); - LIB_FUNCTION("2+6K-2tWaok", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Fetch_or_seq_cst_1); - LIB_FUNCTION("-egu08GJ0lw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Fetch_or_seq_cst_2); - LIB_FUNCTION("gI9un1H-fZk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Fetch_or_seq_cst_4); - LIB_FUNCTION("YhaOeniKcoA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Fetch_xor_8); - LIB_FUNCTION("E2YhT7m79kM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Fetch_xor_seq_cst_1); - LIB_FUNCTION("fgXJvOSrqfg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Fetch_xor_seq_cst_2); - LIB_FUNCTION("cqcY17uV3dI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Fetch_xor_seq_cst_4); - LIB_FUNCTION("-3pU5y1utmI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FExp); - LIB_FUNCTION("EBkab3s8Jto", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FFpcomp); - LIB_FUNCTION("cNGg-Y7JQQw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FGamma_big); - LIB_FUNCTION("dYJJbxnyb74", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Fgpos); - LIB_FUNCTION("DS03EjPDtFo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FHypot); - LIB_FUNCTION("qG50MWOiS-Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Files); - LIB_FUNCTION("QWCTbYI14dA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FInf); - LIB_FUNCTION("jjjRS7l1MPM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FLog); - LIB_FUNCTION("OAE3YU396YQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FLogpoly); - LIB_FUNCTION("+SeQg8c1WC0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal__Flt); - LIB_FUNCTION("Jo9ON-AX9eU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Fltrounds); - LIB_FUNCTION("VVgqI3B2bfk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FNan); - LIB_FUNCTION("xGT4Mc55ViQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Fofind); - LIB_FUNCTION("jVDuvE3s5Bs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Fofree); - LIB_FUNCTION("sQL8D-jio7U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Fopen); - LIB_FUNCTION("dREVnZkAKRE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Foprep); - LIB_FUNCTION("vhPKxN6zs+A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Fpcomp); - LIB_FUNCTION("cfpRP3h9F6o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FPlsw); - LIB_FUNCTION("IdWhZ0SM7JA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FPmsw); - LIB_FUNCTION("5AN3vhTZ7f8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FPoly); - LIB_FUNCTION("A98W3Iad6xE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FPow); - LIB_FUNCTION("y9Ur6T0A0p8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FQuad); - LIB_FUNCTION("PDQbEFcV4h0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FQuadph); - LIB_FUNCTION("lP9zfrhtpBc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FRecip); - LIB_FUNCTION("TLvAYmLtdVw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FRint); - LIB_FUNCTION("9s3P+LCvWP8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Frprep); - LIB_FUNCTION("XwRd4IpNEss", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FRteps); - LIB_FUNCTION("fQ+SWrQUQBg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FSincos); - LIB_FUNCTION("O4L+0oCN9zA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FSinh); - LIB_FUNCTION("UCjpTas5O3E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FSnan); - LIB_FUNCTION("A+Y3xfrWLLo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Fspos); - LIB_FUNCTION("iBrTJkDlQv8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FTan); - LIB_FUNCTION("odPHnVL-rFg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FTgamma); - LIB_FUNCTION("4F9pQjbh8R8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Fwprep); - LIB_FUNCTION("3uW2ESAzsKo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FXbig); - LIB_FUNCTION("1EyHxzcz6AM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FXp_addh); - LIB_FUNCTION("1b+IhPTX0nk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FXp_addx); - LIB_FUNCTION("e1y7KVAySrY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FXp_getw); - LIB_FUNCTION("OVqW4uElSrc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FXp_invx); - LIB_FUNCTION("7GgGIxmwA6I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FXp_ldexpx); - LIB_FUNCTION("DVZmEd0ipSg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FXp_movx); - LIB_FUNCTION("W+lrIwAQVUk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FXp_mulh); - LIB_FUNCTION("o1B4dkvesMc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FXp_mulx); - LIB_FUNCTION("ikHTMeh60B0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FXp_setn); - LIB_FUNCTION("5zWUVRtR8xg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FXp_setw); - LIB_FUNCTION("pNWIpeE5Wv4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FXp_sqrtx); - LIB_FUNCTION("HD9vSXqj6zI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FXp_subx); - LIB_FUNCTION("LrXu7E+GLDY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FZero); - LIB_FUNCTION("7FjitE7KKm4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Gamma_big); - LIB_FUNCTION("vakoyx9nkqo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Genld); - LIB_FUNCTION("bRN9BzEkm4o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Gentime); - LIB_FUNCTION("2MfMa3456FI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Getcloc); - LIB_FUNCTION("i1N28hWcD-4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Getctyptab); - LIB_FUNCTION("Jcu0Wl1-XbE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Getdst); - LIB_FUNCTION("M1xC101lsIU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Geterrno); - LIB_FUNCTION("bItEABINEm0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Getfld); - LIB_FUNCTION("7iFNNuNyXxw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Getfloat); - LIB_FUNCTION("8Jr4cvRM6EM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Getgloballocale); - LIB_FUNCTION("PWmDp8ZTS9k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Getint); - LIB_FUNCTION("U52BlHBvYvE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Getmbcurmax); - LIB_FUNCTION("bF4eWOM5ouo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Getpcostate); - LIB_FUNCTION("sUP1hBaouOw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Getpctype); - LIB_FUNCTION("QxqK-IdpumU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Getpmbstate); - LIB_FUNCTION("iI6kGxgXzcU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__getprogname); - LIB_FUNCTION("8xXiEPby8h8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Getptimes); - LIB_FUNCTION("1uJgoVq3bQU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Getptolower); - LIB_FUNCTION("rcQCUr0EaRU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Getptoupper); - LIB_FUNCTION("hzsdjKbFD7g", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Getpwcostate); - LIB_FUNCTION("zS94yyJRSUs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Getpwcstate); - LIB_FUNCTION("RLdcWoBjmT4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Getpwctrtab); - LIB_FUNCTION("uF8hDs1CqWI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Getpwctytab); - LIB_FUNCTION("g8ozp2Zrsj8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Gettime); - LIB_FUNCTION("Wz9CvcF5jn4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Getzone); - LIB_FUNCTION("ac102y6Rjjc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Hugeval); - LIB_FUNCTION("wUa+oPQvFZ0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Hypot); - LIB_FUNCTION("HIhqigNaOns", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal__Inf); - LIB_FUNCTION("bzQExy189ZI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__init_env); - LIB_FUNCTION("6NCOqr3cD74", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__init_tls); - LIB_FUNCTION("Sb26PiOiFtE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Isdst); - LIB_FUNCTION("CyXs2l-1kNA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Iswctype); - LIB_FUNCTION("2Aw366Jn07s", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LAtan); - LIB_FUNCTION("moDSeLQGJFQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LCosh); - LIB_FUNCTION("43u-nm1hQc8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Ldbl); - LIB_FUNCTION("hdcGjNpcr4w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LDclass); - LIB_FUNCTION("O7zxyNnSDDA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LDenorm); - LIB_FUNCTION("alNWe8glQH4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LDint); - LIB_FUNCTION("HPGLb8Qo6as", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LDivide); - LIB_FUNCTION("ldbrWsQk+2A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LDnorm); - LIB_FUNCTION("s-Ml8NxBKf4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LDscale); - LIB_FUNCTION("islhay8zGWo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LDsign); - LIB_FUNCTION("PEU-SAfo5+0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LDtento); - LIB_FUNCTION("A+1YXWOGpuo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LDtest); - LIB_FUNCTION("3BbBNPjfkYI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Ldtob); - LIB_FUNCTION("ArZF2KISb5k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LDunscale); - LIB_FUNCTION("DzkYNChIvmw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LEps); - LIB_FUNCTION("urrv9v-Ge6g", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LErf_one); - LIB_FUNCTION("MHyK+d+72V0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LErf_small); - LIB_FUNCTION("PG4HVe4X+Oc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LErfc); - LIB_FUNCTION("se3uU7lRMHY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LExp); - LIB_FUNCTION("-BwLPxElT7U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LFpcomp); - LIB_FUNCTION("-svZFUiG3T4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LGamma_big); - LIB_FUNCTION("IRUFZywbTT0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LHypot); - LIB_FUNCTION("2h3jY75zMkI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LInf); - LIB_FUNCTION("+GxvfSLhoAo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Litob); - LIB_FUNCTION("4iFgTDd9NFs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LLog); - LIB_FUNCTION("niPixjs0l2w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LLogpoly); - LIB_FUNCTION("zqASRvZg6d0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LNan); - LIB_FUNCTION("JHvEnCQLPQI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Locale); - LIB_FUNCTION("fRWufXAccuI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Lock_shared_ptr_spin_lock); - LIB_FUNCTION("Cv-8x++GS9A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Lock_spin_lock); - LIB_FUNCTION("vZkmJmvqueY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Lockfilelock); - LIB_FUNCTION("kALvdgEv5ME", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Locksyslock); - LIB_FUNCTION("sYz-SxY8H6M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Locsum); - LIB_FUNCTION("rvNWRuHY6AQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Loctab); - LIB_FUNCTION("4ifo9QGrO5w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Locterm); - LIB_FUNCTION("ElU3kEY8q+I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Locvar); - LIB_FUNCTION("zXCi78bYrEI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal__Log); - LIB_FUNCTION("bqcStLRGIXw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Logpoly); - LIB_FUNCTION("W-T-amhWrkA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LPlsw); - LIB_FUNCTION("gso5X06CFkI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LPmsw); - LIB_FUNCTION("c6Qa0P3XKYQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LPoly); - LIB_FUNCTION("3Z8jD-HTKr8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LPow); - LIB_FUNCTION("fXCPTDS0tD0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LQuad); - LIB_FUNCTION("CbRhl+RoYEM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LQuadph); - LIB_FUNCTION("XrXTtRA7U08", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LRecip); - LIB_FUNCTION("fJmOr59K8QY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LRint); - LIB_FUNCTION("gobJundphD0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LRteps); - LIB_FUNCTION("m-Bu5Tzr82A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LSin); - LIB_FUNCTION("g3dK2qlzwnM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LSincos); - LIB_FUNCTION("ZWy6IcBqs1c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LSinh); - LIB_FUNCTION("rQ-70s51wrc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LSnan); - LIB_FUNCTION("mM4OblD9xWM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LTan); - LIB_FUNCTION("jq4Srfnz9K8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LTgamma); - LIB_FUNCTION("WSaroeRDE5Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LXbig); - LIB_FUNCTION("QEr-PxGUoic", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LXp_addh); - LIB_FUNCTION("BuP7bDPGEcQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LXp_addx); - LIB_FUNCTION("TnublTBYXTI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LXp_getw); - LIB_FUNCTION("FAreWopdBvE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LXp_invx); - LIB_FUNCTION("7O-vjsHecbY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LXp_ldexpx); - LIB_FUNCTION("wlEdSSqaz+E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LXp_movx); - LIB_FUNCTION("riets0BFHMY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LXp_mulh); - LIB_FUNCTION("LbLiLA2biaI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LXp_mulx); - LIB_FUNCTION("hjDoZ6qbkmQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LXp_setn); - LIB_FUNCTION("kHVXc-AWbMU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LXp_setw); - LIB_FUNCTION("IPjwywTNR8w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LXp_sqrtx); - LIB_FUNCTION("YCVxOE0lHOI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LXp_subx); - LIB_FUNCTION("A-cEjaZBDwA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__LZero); - LIB_FUNCTION("tTDqwhYbUUo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Makeloc); - LIB_FUNCTION("AnTtuRUE1cE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Makestab); - LIB_FUNCTION("QalEczzSNqc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Makewct); - LIB_FUNCTION("pCWh67X1PHU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Mbcurmax); - LIB_FUNCTION("wKsLxRq5+fg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Mbstate); - LIB_FUNCTION("sij3OtJpHFc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Mbtowc); - LIB_FUNCTION("-9SIhUr4Iuo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Mbtowcx); - LIB_FUNCTION("VYQwFs4CC4Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Mtx_current_owns); - LIB_FUNCTION("5Lf51jvohTQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Mtx_destroy); - LIB_FUNCTION("YaHc3GS7y7g", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Mtx_init); - LIB_FUNCTION("tgioGpKtmbE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Mtx_init_with_name); - LIB_FUNCTION("iS4aWbUonl0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Mtx_lock); - LIB_FUNCTION("hPzYSd5Nasc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Mtx_timedlock); - LIB_FUNCTION("k6pGNMwJB08", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Mtx_trylock); - LIB_FUNCTION("gTuXQwP9rrs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Mtx_unlock); - LIB_FUNCTION("LaPaA6mYA38", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Mtxdst); - LIB_FUNCTION("z7STeF6abuU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Mtxinit); - LIB_FUNCTION("pE4Ot3CffW0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Mtxlock); - LIB_FUNCTION("cMwgSSmpE5o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Mtxunlock); - LIB_FUNCTION("8e2KBTO08Po", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal__Nan); - LIB_FUNCTION("KNNNbyRieqQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__new_setup); - LIB_FUNCTION("Ss3108pBuZY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal__Nnl); - LIB_FUNCTION("TMhLRjcQMw8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__PathLocale); - LIB_FUNCTION("OnHQSrOHTks", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__PJP_C_Copyright); - LIB_FUNCTION("Cqpti4y-D3E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__PJP_CPP_Copyright); - LIB_FUNCTION("1hGmBh83dL8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Plsw); - LIB_FUNCTION("hrv1BgM68kU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Pmsw); - LIB_FUNCTION("aINUE2xbhZ4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Poly); - LIB_FUNCTION("ECh+p-LRG6Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal__Pow); - LIB_FUNCTION("rnxaQ+2hSMI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Putfld); - LIB_FUNCTION("Fot-m6M2oKE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Putstr); - LIB_FUNCTION("ijAqq39g4dI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Puttxt); - LIB_FUNCTION("TQPr-IeNIS0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Quad); - LIB_FUNCTION("VecRKuKdXdo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Quadph); - LIB_FUNCTION("5qtcuXWt5Xc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Randseed); - LIB_FUNCTION("-u3XfqNumMU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__readdir_unlocked); - LIB_FUNCTION("MxZ4Lc35Rig", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Readloc); - LIB_FUNCTION("YLEc5sPn1Rg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Recip); - LIB_FUNCTION("7ZFy2m9rc5A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__reclaim_telldir); - LIB_FUNCTION("77uWF3Z2q90", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Restore_state); - LIB_FUNCTION("TzxDRcns9e4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Rint); - LIB_FUNCTION("W8tdMlttt3o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Rteps); - LIB_FUNCTION("5FoE+V3Aj0c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__rtld_addr_phdr); - LIB_FUNCTION("R2QKo3hBLkw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__rtld_atfork_post); - LIB_FUNCTION("i-7v8+UGglc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__rtld_atfork_pre); - LIB_FUNCTION("dmHEVUqDYGw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__rtld_error); - LIB_FUNCTION("AdYYKgtPlqg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__rtld_get_stack_prot); - LIB_FUNCTION("gRw4XrztJ4Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__rtld_thread_init); - LIB_FUNCTION("0ITXuJOqrSk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Save_state); - LIB_FUNCTION("vhETq-NiqJA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__SceLibcDebugOut); - LIB_FUNCTION("-hOAbTf3Cqc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__SceLibcTelemetoryOut); - LIB_FUNCTION("Do3zPpsXj1o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__seekdir); - LIB_FUNCTION("bEk+WGOU90I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Setgloballocale); - LIB_FUNCTION("KDFy-aPxHVE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Shared_ptr_flag); - LIB_FUNCTION("j9SGTLclro8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Sincos); - LIB_FUNCTION("MU25eqxSDTw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Sinh); - LIB_FUNCTION("Jp6dZm7545A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Skip); - LIB_FUNCTION("fmHLr9P3dOk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Snan); - LIB_FUNCTION("H8AprKeZtNg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Stderr); - LIB_FUNCTION("1TDo-ImqkJc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Stdin); - LIB_FUNCTION("2sWzhYqFH4E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Stdout); - LIB_FUNCTION("szUft0jERdo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal__Tan); - LIB_FUNCTION("z-OrNOmb6kk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Tgamma); - LIB_FUNCTION("JOV1XY47eQA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Thrd_abort); - LIB_FUNCTION("SkRR6WxCTcE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Thrd_create); - LIB_FUNCTION("n2-b3O8qvqk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Thrd_current); - LIB_FUNCTION("L7f7zYwBvZA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Thrd_detach); - LIB_FUNCTION("BnV7WrHdPLU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Thrd_equal); - LIB_FUNCTION("cFsD9R4iY50", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Thrd_exit); - LIB_FUNCTION("np6xXcXEnXE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Thrd_id); - LIB_FUNCTION("YvmY5Jf0VYU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Thrd_join); - LIB_FUNCTION("OCbJ96N1utA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Thrd_lt); - LIB_FUNCTION("jfRI3snge3o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Thrd_sleep); - LIB_FUNCTION("0JidN6q9yGo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Thrd_start); - LIB_FUNCTION("gsqXCd6skKs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Thrd_start_with_attr); - LIB_FUNCTION("ihfGsjLjmOM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Thrd_start_with_name); - LIB_FUNCTION("ShanbBWU3AA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Thrd_start_with_name_attr); - LIB_FUNCTION("exNzzCAQuWM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Thrd_yield); - LIB_FUNCTION("kQelMBYgkK0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__thread_autoinit_dummy_decl); - LIB_FUNCTION("dmUgzUX3nXU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__thread_autoinit_dummy_decl_stub); - LIB_FUNCTION("PJW+-O4pj6I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__thread_init); - LIB_FUNCTION("1kIpmZX1jw8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__thread_init_stub); - LIB_FUNCTION("+9ypoH8eJko", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Times); - LIB_FUNCTION("hbY3mFi8XY0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Tls_setup__Costate); - LIB_FUNCTION("JoeZJ15k5vU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Tls_setup__Ctype); - LIB_FUNCTION("uhYTnarXhZM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Tls_setup__Errno); - LIB_FUNCTION("jr5yQE9WYdk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Tls_setup__Locale); - LIB_FUNCTION("7TIcrP513IM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Tls_setup__Mbcurmax); - LIB_FUNCTION("YYG-8VURgXA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Tls_setup__Mbstate); - LIB_FUNCTION("0Hu7rUmhqJM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Tls_setup__Times); - LIB_FUNCTION("hM7qvmxBTx8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Tls_setup__Tolotab); - LIB_FUNCTION("UlJSnyS473g", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Tls_setup__Touptab); - LIB_FUNCTION("YUdPel2w8as", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Tls_setup__WCostate); - LIB_FUNCTION("2d5UH9BnfVY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Tls_setup__Wcstate); - LIB_FUNCTION("RYwqCx0hU5c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Tls_setup__Wctrans); - LIB_FUNCTION("KdAc8glk2+8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Tls_setup__Wctype); - LIB_FUNCTION("J-oDqE1N8R4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Tolotab); - LIB_FUNCTION("KmfpnwO2lkA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Touptab); - LIB_FUNCTION("DbEnA+MnVIw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Towctrans); - LIB_FUNCTION("amHyU7v8f-A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Tss_create); - LIB_FUNCTION("g5cG7QtKLTA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Tss_delete); - LIB_FUNCTION("lOVQnEJEzvY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Tss_get); - LIB_FUNCTION("ibyFt0bPyTk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Tss_set); - LIB_FUNCTION("4TTbo2SxxvA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Ttotm); - LIB_FUNCTION("Csx50UU9b18", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Tzoff); - LIB_FUNCTION("1HYEoANqZ1w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Unlock_shared_ptr_spin_lock); - LIB_FUNCTION("aHUFijEWlxQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Unlock_spin_lock); - LIB_FUNCTION("0x7rx8TKy2Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Unlockfilelock); - LIB_FUNCTION("9nf8joUTSaQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Unlocksyslock); - LIB_FUNCTION("s62MgBhosjU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Unwind_Backtrace); - LIB_FUNCTION("sETNbyWsEHs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Unwind_GetIP); - LIB_FUNCTION("f1zwJ3jAI2k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Unwind_Resume); - LIB_FUNCTION("xUsJSLsdv9I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Unwind_Resume_or_Rethrow); - LIB_FUNCTION("xRycekLYXdc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Vacopy); - LIB_FUNCTION("XQFE8Y58WZM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__warn); - LIB_FUNCTION("Nd2Y2X6oR18", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__WCostate); - LIB_FUNCTION("wmkXFgerLnM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Wcscollx); - LIB_FUNCTION("RGc3P3UScjY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Wcsftime); - LIB_FUNCTION("IvP-B8lC89k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Wcstate); - LIB_FUNCTION("cmIyU0BNYeo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Wcsxfrmx); - LIB_FUNCTION("oK6C1fys3dU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Wctob); - LIB_FUNCTION("bSgY14j4Ov4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Wctomb); - LIB_FUNCTION("stv1S3BKfgw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Wctombx); - LIB_FUNCTION("DYamMikEv2M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Wctrans); - LIB_FUNCTION("PlDgAP2AS7M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Wctype); - LIB_FUNCTION("VbczgfwgScA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__WFrprep); - LIB_FUNCTION("hDuyUWUBrDU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__WFwprep); - LIB_FUNCTION("BYcXjG3Lw-o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__WGenld); - LIB_FUNCTION("Z6CCOW8TZVo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__WGetfld); - LIB_FUNCTION("LcHsLn97kcE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__WGetfloat); - LIB_FUNCTION("dWz3HtMMpPg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__WGetint); - LIB_FUNCTION("nVS8UHz1bx0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__WGetstr); - LIB_FUNCTION("kUcinoWwBr8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__WLdtob); - LIB_FUNCTION("XkT6YSShQcE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__WLitob); - LIB_FUNCTION("0ISumvb2U5o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__WPutfld); - LIB_FUNCTION("Fh1GjwqvCpE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__WPutstr); - LIB_FUNCTION("Kkgg8mWU2WE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__WPuttxt); - LIB_FUNCTION("4nRn+exUJAM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__WStod); - LIB_FUNCTION("RlewTNtWEcg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__WStodx); - LIB_FUNCTION("GUuiOcxL-r0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__WStof); - LIB_FUNCTION("FHJlhz0wVts", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__WStoflt); - LIB_FUNCTION("JZ9gGlJ22hg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__WStofx); - LIB_FUNCTION("w3gRFGRjpZ4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__WStold); - LIB_FUNCTION("waexoHL0Bf4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__WStoldx); - LIB_FUNCTION("OmDPJeJXkBM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__WStoll); - LIB_FUNCTION("43PYQ2fMT8k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__WStopfx); - LIB_FUNCTION("JhVR7D4Ax6Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__WStoul); - LIB_FUNCTION("9iCP-hTL5z8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__WStoull); - LIB_FUNCTION("DmUIy7m0cyE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__WStoxflt); - LIB_FUNCTION("QSfaClY45dM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Xbig); - LIB_FUNCTION("ijc7yCXzXsc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Xp_addh); - LIB_FUNCTION("ycMCyFmWJnU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Xp_addx); - LIB_FUNCTION("Zb70g9IUs98", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Xp_getw); - LIB_FUNCTION("f41T4clGlzY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Xp_invx); - LIB_FUNCTION("c9S0tXDhMBQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Xp_ldexpx); - LIB_FUNCTION("Zm2LLWgxWu8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Xp_movx); - LIB_FUNCTION("aOtpC3onyJo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Xp_mulh); - LIB_FUNCTION("jatbHyxH3ek", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Xp_mulx); - LIB_FUNCTION("lahbB4B2ugY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Xp_setn); - LIB_FUNCTION("bIfFaqUwy3I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Xp_setw); - LIB_FUNCTION("m0uSPrCsVdk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Xp_sqrtx); - LIB_FUNCTION("w178uGYbIJs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Xp_subx); - LIB_FUNCTION("Df1BO64nU-k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Xtime_diff_to_ts); - LIB_FUNCTION("Cj+Fw5q1tUo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Xtime_get_ticks); - LIB_FUNCTION("Zs8Xq-ce3rY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Xtime_to_ts); - LIB_FUNCTION("FOt55ZNaVJk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZdaPvm); - LIB_FUNCTION("7lCihI18N9I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZdaPvmRKSt9nothrow_t); - LIB_FUNCTION("Y1RR+IQy6Pg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZdaPvmSt11align_val_t); - LIB_FUNCTION("m-fSo3EbxNA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZdaPvRKSt9nothrow_t); - LIB_FUNCTION("Suc8W0QPxjw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZdaPvS_); - LIB_FUNCTION("v09ZcAhZzSc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZdaPvSt11align_val_t); - LIB_FUNCTION("dH3ucvQhfSY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZdaPvSt11align_val_tRKSt9nothrow_t); - LIB_FUNCTION("z+P+xCnWLBk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZdlPv); - LIB_FUNCTION("lYDzBVE5mZs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZdlPvm); - LIB_FUNCTION("7VPIYFpwU2A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZdlPvmRKSt9nothrow_t); - LIB_FUNCTION("nwujzxOPXzQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZdlPvmSt11align_val_t); - LIB_FUNCTION("McsGnqV6yRE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZdlPvRKSt9nothrow_t); - LIB_FUNCTION("1vo6qqqa9F4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZdlPvS_); - LIB_FUNCTION("bZx+FFSlkUM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZdlPvSt11align_val_t); - LIB_FUNCTION("Dt9kllUFXS0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZdlPvSt11align_val_tRKSt9nothrow_t); - LIB_FUNCTION("bPtdppw1+7I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Zero); - LIB_FUNCTION("Bc4ozvHb4Kg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZGVNSt10moneypunctIcLb0EE2idE); - LIB_FUNCTION("yzcKSTTCz1M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZGVNSt10moneypunctIcLb1EE2idE); - LIB_FUNCTION("tfmEv+TVGFU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZGVNSt10moneypunctIwLb0EE2idE); - LIB_FUNCTION("ksNM8H72JHg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZGVNSt10moneypunctIwLb1EE2idE); - LIB_FUNCTION("2G1UznxkcgU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZGVNSt14_Error_objectsIiE14_System_objectE); - LIB_FUNCTION("DjLpZIMEkks", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZGVNSt14_Error_objectsIiE15_Generic_objectE); - LIB_FUNCTION("DSnq6xesUo8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZGVNSt20_Future_error_objectIiE14_Future_objectE); - LIB_FUNCTION("agAYSUes238", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZGVNSt7codecvtIcc9_MbstatetE2idE); - LIB_FUNCTION("gC0DGo+7PVc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZGVNSt7collateIcE2idE); - LIB_FUNCTION("jaLGUrwYX84", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZGVNSt7collateIwE2idE); - LIB_FUNCTION("4ZnE1sEyX3g", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZGVNSt8messagesIcE2idE); - LIB_FUNCTION("oqYAk3zpC64", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZGVNSt8messagesIwE2idE); - LIB_FUNCTION("iHZb2839dBc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZGVNSt8numpunctIcE2idE); - LIB_FUNCTION("8ArIPXBlkgM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZGVNSt8numpunctIwE2idE); - LIB_FUNCTION( - "0ND8MZiuTR8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZGVZNSt13basic_filebufIcSt11char_traitsIcEE5_InitEP7__sFILENS2_7_InitflEE7_Stinit); - LIB_FUNCTION( - "O2wxIdbMcMQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZGVZNSt13basic_filebufIwSt11char_traitsIwEE5_InitEP7__sFILENS2_7_InitflEE7_Stinit); - LIB_FUNCTION("CjzjU2nFUWw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv116__enum_type_infoD0Ev); - LIB_FUNCTION("upwSZWmYwqE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv116__enum_type_infoD1Ev); - LIB_FUNCTION("iQiT26+ZGnA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv116__enum_type_infoD2Ev); - LIB_FUNCTION("R5nRbLQT3oI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv117__array_type_infoD0Ev); - LIB_FUNCTION("1ZMchlkvNNQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv117__array_type_infoD1Ev); - LIB_FUNCTION("ckFrsyD2830", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv117__array_type_infoD2Ev); - LIB_FUNCTION("XAk7W3NcpTY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv117__class_type_infoD0Ev); - LIB_FUNCTION("goLVqD-eiIY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv117__class_type_infoD1Ev); - LIB_FUNCTION("xXM1q-ayw2Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv117__class_type_infoD2Ev); - LIB_FUNCTION("GLxD5v2uMHw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv117__pbase_type_infoD0Ev); - LIB_FUNCTION("vIJPARS8imE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv117__pbase_type_infoD1Ev); - LIB_FUNCTION("krshE4JAE6M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv117__pbase_type_infoD2Ev); - LIB_FUNCTION("64180GwMVro", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv119__pointer_type_infoD0Ev); - LIB_FUNCTION("bhfgrK+MZdk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv119__pointer_type_infoD1Ev); - LIB_FUNCTION("vCLVhOcdQMY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv119__pointer_type_infoD2Ev); - LIB_FUNCTION("kVvGL9aF5gg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv120__function_type_infoD0Ev); - LIB_FUNCTION("dsQ5Xwhl9no", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv120__function_type_infoD1Ev); - LIB_FUNCTION("NtqD4Q0vUUI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv120__function_type_infoD2Ev); - LIB_FUNCTION("Fg4w+h9wAMA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv120__si_class_type_infoD0Ev); - LIB_FUNCTION("6aEkwkEOGRg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv120__si_class_type_infoD1Ev); - LIB_FUNCTION("bWHwovVFfqc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv120__si_class_type_infoD2Ev); - LIB_FUNCTION("W5k0jlyBpgM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv121__vmi_class_type_infoD0Ev); - LIB_FUNCTION("h-a7+0UuK7Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv121__vmi_class_type_infoD1Ev); - LIB_FUNCTION("yYIymfQGl2E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv121__vmi_class_type_infoD2Ev); - LIB_FUNCTION("YsZuwZrJZlU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv123__fundamental_type_infoD0Ev); - LIB_FUNCTION("kzWL2iOsv0E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv123__fundamental_type_infoD1Ev); - LIB_FUNCTION("0jk9oqKd2Gw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv123__fundamental_type_infoD2Ev); - LIB_FUNCTION("NdeDffcZ-30", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv129__pointer_to_member_type_infoD0Ev); - LIB_FUNCTION("KaZ3xf5c9Vc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv129__pointer_to_member_type_infoD1Ev); - LIB_FUNCTION("Re3Lpk8mwEo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN10__cxxabiv129__pointer_to_member_type_infoD2Ev); - LIB_FUNCTION("yc-vi84-2aE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN6Dinkum7codecvt10_Cvt_checkEmm); - LIB_FUNCTION("PG-2ZeVVWZE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN6Dinkum7threads10lock_errorD0Ev); - LIB_FUNCTION("vX+NfOHOI5w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN6Dinkum7threads10lock_errorD1Ev); - LIB_FUNCTION("o27+xO5NBZ8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN6Dinkum7threads17_Throw_lock_errorEv); - LIB_FUNCTION("cjmJLdYnT5A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN6Dinkum7threads21_Throw_resource_errorEv); - LIB_FUNCTION("Q+ZnPMGI4M0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN6Dinkum7threads21thread_resource_errorD0Ev); - LIB_FUNCTION("NOaB7a1PZl8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZN6Dinkum7threads21thread_resource_errorD1Ev); - LIB_FUNCTION("hdm0YfMa7TQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Znam); - LIB_FUNCTION("Jh5qUcwiSEk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZnamRKSt9nothrow_t); - LIB_FUNCTION("kn-rKRB0pfY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZnamSt11align_val_t); - LIB_FUNCTION("s2eGsgUF9vk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZnamSt11align_val_tRKSt9nothrow_t); - LIB_FUNCTION("ZRRBeuLmHjc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSbIwSt11char_traitsIwESaIwEE5_XlenEv); - LIB_FUNCTION("GvYZax3i-Qk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSbIwSt11char_traitsIwESaIwEE5_XranEv); - LIB_FUNCTION("pDtTdJ2sIz0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSs5_XlenEv); - LIB_FUNCTION("AzBnOt1DouU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSs5_XranEv); - LIB_FUNCTION("BbXxNgTW1x4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt10bad_typeid4whatEv); - LIB_FUNCTION("WMw8eIs0kjM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt10bad_typeid8_DoraiseEv); - LIB_FUNCTION("++ge3jYlHW8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt11logic_error4whatEv); - LIB_FUNCTION("YTM5eyFGh2c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt11logic_error8_DoraiseEv); - LIB_FUNCTION("OzMS0BqVUGQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt12bad_weak_ptr4whatEv); - LIB_FUNCTION("MwAySqTo+-M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt12codecvt_base11do_encodingEv); - LIB_FUNCTION("FOsY+JAyXow", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt12codecvt_base13do_max_lengthEv); - LIB_FUNCTION("5sfbtNAdt-M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt12future_error4whatEv); - LIB_FUNCTION("-syPONaWjqw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt12future_error8_DoraiseEv); - LIB_FUNCTION("uWZBRxLAvEg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt12system_error8_DoraiseEv); - LIB_FUNCTION("kTlQY47fo88", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt13bad_exception8_DoraiseEv); - LIB_FUNCTION("2iW5Fv+kFxs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt13runtime_error4whatEv); - LIB_FUNCTION("GthClwqQAZs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt14error_category10equivalentEiRKSt15error_condition); - LIB_FUNCTION("9hB8AwIqQfs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt14error_category10equivalentERKSt10error_codei); - LIB_FUNCTION("8SDojuZyQaY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt14error_category23default_error_conditionEi); - LIB_FUNCTION("XVu4--EWzcM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt17bad_function_call4whatEv); - LIB_FUNCTION("+5IOQncui3c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt18bad_variant_access4whatEv); - LIB_FUNCTION("Q0VsWTapQ4M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt22_Future_error_category4nameEv); - LIB_FUNCTION("nWfZplDjbxQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt22_Future_error_category7messageEi); - LIB_FUNCTION("ww3UUl317Ng", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt22_System_error_category23default_error_conditionEi); - LIB_FUNCTION("dXy+lFOiaQA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt22_System_error_category4nameEv); - LIB_FUNCTION("HpAlvhNKb2Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt22_System_error_category7messageEi); - LIB_FUNCTION("xvVR0CBPFAM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt23_Generic_error_category4nameEv); - LIB_FUNCTION("KZ++filsCL4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt23_Generic_error_category7messageEi); - LIB_FUNCTION("WXOoCK+kqwY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt5ctypeIcE10do_tolowerEc); - LIB_FUNCTION("2w+4Mo2DPro", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt5ctypeIcE10do_tolowerEPcPKc); - LIB_FUNCTION("mnq3tbhCs34", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt5ctypeIcE10do_toupperEc); - LIB_FUNCTION("7glioH0t9HM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt5ctypeIcE10do_toupperEPcPKc); - LIB_FUNCTION("zwcNQT0Avck", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt5ctypeIcE8do_widenEc); - LIB_FUNCTION("W5OtP+WC800", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt5ctypeIcE8do_widenEPKcS2_Pc); - LIB_FUNCTION("4SnCJmLL27U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt5ctypeIcE9do_narrowEcc); - LIB_FUNCTION("-nCVE3kBjjA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt5ctypeIcE9do_narrowEPKcS2_cPc); - LIB_FUNCTION("pSQz254t3ug", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt5ctypeIwE10do_scan_isEsPKwS2_); - LIB_FUNCTION("Ej0X1EwApwM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt5ctypeIwE10do_tolowerEPwPKw); - LIB_FUNCTION("ATYj6zra5W0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt5ctypeIwE10do_tolowerEw); - LIB_FUNCTION("r1W-NtOi6E8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt5ctypeIwE10do_toupperEPwPKw); - LIB_FUNCTION("JsZjB3TnZ8A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt5ctypeIwE10do_toupperEw); - LIB_FUNCTION("Kbe+LHOer9o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt5ctypeIwE11do_scan_notEsPKwS2_); - LIB_FUNCTION("D0lUMKU+ELI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt5ctypeIwE5do_isEPKwS2_Ps); - LIB_FUNCTION("rh7L-TliPoc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt5ctypeIwE5do_isEsw); - LIB_FUNCTION("h3PbnNnZ-gI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt5ctypeIwE8do_widenEc); - LIB_FUNCTION("KM0b6O8show", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt5ctypeIwE8do_widenEPKcS2_Pw); - LIB_FUNCTION("Vf68JAD5rbM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt5ctypeIwE9do_narrowEPKwS2_cPc); - LIB_FUNCTION("V+c0E+Uqcww", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt5ctypeIwE9do_narrowEwc); - LIB_FUNCTION("aUNISsPboqE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7_MpunctIcE11do_groupingEv); - LIB_FUNCTION("uUDq10y4Raw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7_MpunctIcE13do_neg_formatEv); - LIB_FUNCTION("E64hr8yXoXw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7_MpunctIcE13do_pos_formatEv); - LIB_FUNCTION("VhyjwJugIe8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7_MpunctIcE14do_curr_symbolEv); - LIB_FUNCTION("C3LC9A6SrVE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7_MpunctIcE14do_frac_digitsEv); - LIB_FUNCTION("tZj4yquwuhI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7_MpunctIcE16do_decimal_pointEv); - LIB_FUNCTION("Rqu9OmkKY+M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7_MpunctIcE16do_negative_signEv); - LIB_FUNCTION("ARZszYKvDWg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7_MpunctIcE16do_positive_signEv); - LIB_FUNCTION("6aFwTNpqTP8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7_MpunctIcE16do_thousands_sepEv); - LIB_FUNCTION("ckD5sIxo+Co", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7_MpunctIwE11do_groupingEv); - LIB_FUNCTION("UzmR8lOfyqU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7_MpunctIwE13do_neg_formatEv); - LIB_FUNCTION("zF2GfKzBgqU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7_MpunctIwE13do_pos_formatEv); - LIB_FUNCTION("ypq5jFNRIJA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7_MpunctIwE14do_curr_symbolEv); - LIB_FUNCTION("ij-yZhH9YjY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7_MpunctIwE14do_frac_digitsEv); - LIB_FUNCTION("v8P1X84ytFY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7_MpunctIwE16do_decimal_pointEv); - LIB_FUNCTION("zkUC74aJxpE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7_MpunctIwE16do_negative_signEv); - LIB_FUNCTION("PWFePkVdv9w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7_MpunctIwE16do_positive_signEv); - LIB_FUNCTION("XX+xiPXAN8I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7_MpunctIwE16do_thousands_sepEv); - LIB_FUNCTION("iCWgjeqMHvg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIcc9_MbstatetE10do_unshiftERS0_PcS3_RS3_); - LIB_FUNCTION("7tIwDZyyKHo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIcc9_MbstatetE16do_always_noconvEv); - LIB_FUNCTION("TNexGlwiVEQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIcc9_MbstatetE2inERS0_PKcS4_RS4_PcS6_RS6_); - LIB_FUNCTION("14xKj+SV72o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIcc9_MbstatetE3outERS0_PKcS4_RS4_PcS6_RS6_); - LIB_FUNCTION("P+q1OLiErP0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIcc9_MbstatetE5do_inERS0_PKcS4_RS4_PcS6_RS6_); - LIB_FUNCTION("Uc+-Sx0UZ3U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIcc9_MbstatetE6do_outERS0_PKcS4_RS4_PcS6_RS6_); - LIB_FUNCTION("ikBt0lqkxPc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIcc9_MbstatetE6lengthERS0_PKcS4_m); - LIB_FUNCTION("N7z+Dnk1cS0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIcc9_MbstatetE7unshiftERS0_PcS3_RS3_); - LIB_FUNCTION("Xk7IZcfHDD8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIcc9_MbstatetE9do_lengthERS0_PKcS4_m); - LIB_FUNCTION("c6Lyc6xOp4o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIDic9_MbstatetE10do_unshiftERS0_PcS3_RS3_); - LIB_FUNCTION("DDnr3lDwW8I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIDic9_MbstatetE11do_encodingEv); - LIB_FUNCTION("E5NdzqEmWuY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIDic9_MbstatetE13do_max_lengthEv); - LIB_FUNCTION("NQ81EZ7CL6w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIDic9_MbstatetE16do_always_noconvEv); - LIB_FUNCTION("PJ2UDX9Tvwg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIDic9_MbstatetE5do_inERS0_PKcS4_RS4_PDiS6_RS6_); - LIB_FUNCTION("eoW60zcLT8Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIDic9_MbstatetE6do_outERS0_PKDiS4_RS4_PcS6_RS6_); - LIB_FUNCTION("m6rjfL4aMcA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIDic9_MbstatetE9do_lengthERS0_PKcS4_m); - LIB_FUNCTION("RYTHR81Y-Mc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIDsc9_MbstatetE10do_unshiftERS0_PcS3_RS3_); - LIB_FUNCTION("Mo6K-pUyNhI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIDsc9_MbstatetE11do_encodingEv); - LIB_FUNCTION("BvRS0cGTd6I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIDsc9_MbstatetE13do_max_lengthEv); - LIB_FUNCTION("9Vyfb-I-9xw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIDsc9_MbstatetE16do_always_noconvEv); - LIB_FUNCTION("+uPwCGfmJHs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIDsc9_MbstatetE5do_inERS0_PKcS4_RS4_PDsS6_RS6_); - LIB_FUNCTION("0FKwlv9iH1c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIDsc9_MbstatetE6do_outERS0_PKDsS4_RS4_PcS6_RS6_); - LIB_FUNCTION("lynApfiP6Lw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIDsc9_MbstatetE9do_lengthERS0_PKcS4_m); - LIB_FUNCTION("oDtGxrzLXMU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIwc9_MbstatetE10do_unshiftERS0_PcS3_RS3_); - LIB_FUNCTION("4fPIrH+z+E4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIwc9_MbstatetE11do_encodingEv); - LIB_FUNCTION("5BQIjX7Y5YU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIwc9_MbstatetE13do_max_lengthEv); - LIB_FUNCTION("KheIhkaSrlA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIwc9_MbstatetE16do_always_noconvEv); - LIB_FUNCTION("WAPkmrXx2o8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIwc9_MbstatetE5do_inERS0_PKcS4_RS4_PwS6_RS6_); - LIB_FUNCTION("ABFE75lbcDc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIwc9_MbstatetE6do_outERS0_PKwS4_RS4_PcS6_RS6_); - LIB_FUNCTION("G1zcPUEvY7U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7codecvtIwc9_MbstatetE9do_lengthERS0_PKcS4_m); - LIB_FUNCTION("1eEXfeW6wrI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7collateIcE10do_compareEPKcS2_S2_S2_); - LIB_FUNCTION("gYlF567r3-A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7collateIcE12do_transformEPKcS2_); - LIB_FUNCTION("6vYXzFD-mrk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7collateIcE4hashEPKcS2_); - LIB_FUNCTION("Q-8lQCGMj4g", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7collateIcE7compareEPKcS2_S2_S2_); - LIB_FUNCTION("GSAXi4F1SlM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7collateIcE7do_hashEPKcS2_); - LIB_FUNCTION("XaSxLBnqcWE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7collateIcE9transformEPKcS2_); - LIB_FUNCTION("roztnFEs5Es", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7collateIwE10do_compareEPKwS2_S2_S2_); - LIB_FUNCTION("Zxe-nQMgxHM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7collateIwE12do_transformEPKwS2_); - LIB_FUNCTION("entYnoIu+fc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7collateIwE4hashEPKwS2_); - LIB_FUNCTION("n-3HFZvDwBw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7collateIwE7compareEPKwS2_S2_S2_); - LIB_FUNCTION("cWaCDW+Dc9U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7collateIwE7do_hashEPKwS2_); - LIB_FUNCTION("81uX7PzrtG8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7collateIwE9transformEPKwS2_); - LIB_FUNCTION("6CPwoi-cFZM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8bad_cast4whatEv); - LIB_FUNCTION("NEemVJeMwd0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8bad_cast8_DoraiseEv); - LIB_FUNCTION("F27xQUBtNdU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8ios_base7failure8_DoraiseEv); - LIB_FUNCTION("XxsPrrWJ52I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8messagesIcE3getEiiiRKSs); - LIB_FUNCTION("U2t+WvMQj8A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8messagesIcE4openERKSsRKSt6locale); - LIB_FUNCTION("EeBQ7253LkE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8messagesIcE5closeEi); - LIB_FUNCTION("vbgCuYKySLI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8messagesIcE6do_getEiiiRKSs); - LIB_FUNCTION("HeBwePMtuFs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8messagesIcE7do_openERKSsRKSt6locale); - LIB_FUNCTION("rRmMX83UL1E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8messagesIcE8do_closeEi); - LIB_FUNCTION("Ea+awuQ5Bm8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8messagesIwE3getEiiiRKSbIwSt11char_traitsIwESaIwEE); - LIB_FUNCTION("TPq0HfoACeI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8messagesIwE4openERKSsRKSt6locale); - LIB_FUNCTION("GGoH7e6SZSY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8messagesIwE5closeEi); - LIB_FUNCTION("UM6rGQxnEMg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8messagesIwE6do_getEiiiRKSbIwSt11char_traitsIwESaIwEE); - LIB_FUNCTION("zSehLdHI0FA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8messagesIwE7do_openERKSsRKSt6locale); - LIB_FUNCTION("AjkxQBlsOOY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8messagesIwE8do_closeEi); - LIB_FUNCTION("cnNz2ftNwEU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8numpunctIcE11do_groupingEv); - LIB_FUNCTION("nRf0VQ++OEw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8numpunctIcE11do_truenameEv); - LIB_FUNCTION("ozLi0i4r6ds", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8numpunctIcE12do_falsenameEv); - LIB_FUNCTION("klWxQ2nKAHY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8numpunctIcE13decimal_pointEv); - LIB_FUNCTION("QGSIlqfIU2c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8numpunctIcE13thousands_sepEv); - LIB_FUNCTION("JXzQGOtumdM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8numpunctIcE16do_decimal_pointEv); - LIB_FUNCTION("zv1EMhI7R1c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8numpunctIcE16do_thousands_sepEv); - LIB_FUNCTION("JWplGh2O0Rs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8numpunctIcE8groupingEv); - LIB_FUNCTION("fXUuZEw7C24", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8numpunctIcE8truenameEv); - LIB_FUNCTION("3+VwUA8-QPI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8numpunctIcE9falsenameEv); - LIB_FUNCTION("2BmJdX269kI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8numpunctIwE11do_groupingEv); - LIB_FUNCTION("nvSsAW7tcX8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8numpunctIwE11do_truenameEv); - LIB_FUNCTION("-amctzWbEtw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8numpunctIwE12do_falsenameEv); - LIB_FUNCTION("leSFwTZZuE4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8numpunctIwE13decimal_pointEv); - LIB_FUNCTION("2Olt9gqOauQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8numpunctIwE13thousands_sepEv); - LIB_FUNCTION("mzRlAVX65hQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8numpunctIwE16do_decimal_pointEv); - LIB_FUNCTION("Utj8Sh5L0jE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8numpunctIwE16do_thousands_sepEv); - LIB_FUNCTION("VsJCpXqMPJU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8numpunctIwE8groupingEv); - LIB_FUNCTION("3M20pLo9Gdk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8numpunctIwE8truenameEv); - LIB_FUNCTION("LDbKkgI-TZg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8numpunctIwE9falsenameEv); - LIB_FUNCTION("xvRvFtnUk3E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt9bad_alloc4whatEv); - LIB_FUNCTION("pS-t9AJblSM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt9bad_alloc8_DoraiseEv); - LIB_FUNCTION("apPZ6HKZWaQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt9exception4whatEv); - LIB_FUNCTION("DuW5ZqZv-70", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt9exception6_RaiseEv); - LIB_FUNCTION("tyHd3P7oDrU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt9exception8_DoraiseEv); - LIB_FUNCTION("Ti86LmOKvr0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSbIwSt11char_traitsIwESaIwEE5_CopyEmm); - LIB_FUNCTION("TgEb5a+nOnk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSbIwSt11char_traitsIwESaIwEE5eraseEmm); - LIB_FUNCTION("nF8-CM+tro4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSbIwSt11char_traitsIwESaIwEE6appendEmw); - LIB_FUNCTION("hSUcSStZEHM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSbIwSt11char_traitsIwESaIwEE6appendERKS2_mm); - LIB_FUNCTION("8oO55jndPRg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSbIwSt11char_traitsIwESaIwEE6assignEmw); - LIB_FUNCTION("IJmeA5ayVJA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSbIwSt11char_traitsIwESaIwEE6assignEPKwm); - LIB_FUNCTION("piJabTDQRVs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSbIwSt11char_traitsIwESaIwEE6assignERKS2_mm); - LIB_FUNCTION("w2GyuoXCnkw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSbIwSt11char_traitsIwESaIwEE6insertEmmw); - LIB_FUNCTION("6ZDv6ZusiFg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSiD0Ev); - LIB_FUNCTION("tJU-ttrsXsk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSiD1Ev); - LIB_FUNCTION("gVTWlvyBSIc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSo6sentryC2ERSo); - LIB_FUNCTION("nk+0yTWvoRE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSo6sentryD2Ev); - LIB_FUNCTION("lTTrDj5OIwQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSoD0Ev); - LIB_FUNCTION("HpCeP12cuNY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSoD1Ev); - LIB_FUNCTION("9HILqEoh24E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSs5_CopyEmm); - LIB_FUNCTION("0Ir3jiT4V6Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSs5eraseEmm); - LIB_FUNCTION("QqBWUNEfIAo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSs6appendEmc); - LIB_FUNCTION("qiR-4jx1abE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSs6appendERKSsmm); - LIB_FUNCTION("ikjnoeemspQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSs6assignEmc); - LIB_FUNCTION("xSxPHmpcNzY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSs6assignEPKcm); - LIB_FUNCTION("pGxNI4JKfmY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSs6assignERKSsmm); - LIB_FUNCTION("KDgQWX1eDeo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSs6insertEmmc); - LIB_FUNCTION("MHA0XR2YHoQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10bad_typeidD0Ev); - LIB_FUNCTION("vzh0qoLIEuo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10bad_typeidD1Ev); - LIB_FUNCTION("tkZ7jVV6wJ8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10bad_typeidD2Ev); - LIB_FUNCTION("xGbaQPsHCFI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10filesystem10_Close_dirEPv); - LIB_FUNCTION("PbCV7juCZVo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10filesystem10_Copy_fileEPKcS1_); - LIB_FUNCTION("SQ02ZA5E-UE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10filesystem10_File_sizeEPKc); - LIB_FUNCTION("XD9FmX1mavU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10filesystem11_EquivalentEPKcS1_); - LIB_FUNCTION("YDQxE4cIwa4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10filesystem11_Remove_dirEPKc); - LIB_FUNCTION("8VKAqiw7lC0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10filesystem12_Current_getERA260_c); - LIB_FUNCTION("Yl10kSufa5k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10filesystem12_Current_setEPKc); - LIB_FUNCTION("HCB1auZdcmo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10filesystem16_Last_write_timeEPKc); - LIB_FUNCTION("Wut42WAe7Rw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10filesystem18_Xfilesystem_errorEPKcRKNS_4pathES4_St10error_code); - LIB_FUNCTION("C6-7Mo5WbwU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10filesystem18_Xfilesystem_errorEPKcRKNS_4pathESt10error_code); - LIB_FUNCTION("B0CeIhQty7Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10filesystem18_Xfilesystem_errorEPKcSt10error_code); - LIB_FUNCTION("VSk+sij2mwg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10filesystem20_Set_last_write_timeEPKcl); - LIB_FUNCTION("EBwahsMLokw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10filesystem5_StatEPKcPNS_5permsE); - LIB_FUNCTION("XyKw6Hs1P9Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10filesystem6_ChmodEPKcNS_5permsE); - LIB_FUNCTION("o1qlZJqrvmI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10filesystem6_LstatEPKcPNS_5permsE); - LIB_FUNCTION("srwl1hhFoUI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10filesystem7_RenameEPKcS1_); - LIB_FUNCTION("O4mPool-pow", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10filesystem7_ResizeEPKcm); - LIB_FUNCTION("Iok1WdvAROg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10filesystem7_UnlinkEPKc); - LIB_FUNCTION("SdKk439pgjg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10filesystem8_StatvfsEPKcRNS_10space_infoE); - LIB_FUNCTION("x7pQExTeqBY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10filesystem9_Make_dirEPKcS1_); - LIB_FUNCTION("8iuHpl+kg8A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10filesystem9_Open_dirERA260_cPKcRiRNS_9file_typeE); - LIB_FUNCTION("w5CGykBBU5M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10filesystem9_Read_dirERA260_cPvRNS_9file_typeE); - LIB_FUNCTION("eF26YAKQWKA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIcLb0EE2idE); - LIB_FUNCTION("UbuTnKIXyCk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIcLb0EE4intlE); - LIB_FUNCTION("mU88GYCirhI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIcLb0EE7_GetcatEPPKNSt6locale5facetEPKS1_); - LIB_FUNCTION("tYBLm0BoQdQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIcLb0EEC1Em); - LIB_FUNCTION("5afBJmEfUQI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIcLb0EEC1EPKcm); - LIB_FUNCTION("wrR3T5i7gpY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIcLb0EEC1ERKSt8_Locinfomb); - LIB_FUNCTION("5DFeXjP+Plg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIcLb0EEC2Em); - LIB_FUNCTION("aNfpdhcsMWI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIcLb0EEC2EPKcm); - LIB_FUNCTION("uQFv8aNF8Jc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIcLb0EEC2ERKSt8_Locinfomb); - LIB_FUNCTION("sS5fF+fht2c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIcLb0EED0Ev); - LIB_FUNCTION("3cW6MrkCKt0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIcLb0EED1Ev); - LIB_FUNCTION("mbGmSOLXgN0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIcLb0EED2Ev); - LIB_FUNCTION("PgiTG7nVxXE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIcLb1EE2idE); - LIB_FUNCTION("XhdnPX5bosc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIcLb1EE4intlE); - LIB_FUNCTION("BuxsERsopss", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIcLb1EE7_GetcatEPPKNSt6locale5facetEPKS1_); - LIB_FUNCTION("nbTAoMwiO38", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIcLb1EEC1Em); - LIB_FUNCTION("9S960jA8tB0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIcLb1EEC1EPKcm); - LIB_FUNCTION("TRn3cMU4mjY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIcLb1EEC1ERKSt8_Locinfomb); - LIB_FUNCTION("kPELiw9L-gw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIcLb1EEC2Em); - LIB_FUNCTION("RxJnJ-HoySc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIcLb1EEC2EPKcm); - LIB_FUNCTION("7e3DrnZea-Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIcLb1EEC2ERKSt8_Locinfomb); - LIB_FUNCTION("tcdvTUlPnL0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIcLb1EED0Ev); - LIB_FUNCTION("wT+HL7oqjYc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIcLb1EED1Ev); - LIB_FUNCTION("F7CUCpiasec", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIcLb1EED2Ev); - LIB_FUNCTION("mhoxSElvH0E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIwLb0EE2idE); - LIB_FUNCTION("D0gqPsqeZac", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIwLb0EE4intlE); - LIB_FUNCTION("0OjBJZd9VeM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIwLb0EE7_GetcatEPPKNSt6locale5facetEPKS1_); - LIB_FUNCTION("McUBYCqjLMg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIwLb0EEC1Em); - LIB_FUNCTION("jna5sqISK4s", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIwLb0EEC1EPKcm); - LIB_FUNCTION("dHs7ndrQBiI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIwLb0EEC1ERKSt8_Locinfomb); - LIB_FUNCTION("bBGvmspg3Xs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIwLb0EEC2Em); - LIB_FUNCTION("5bQqdR3hTZw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIwLb0EEC2EPKcm); - LIB_FUNCTION("1kvQkOSaaVo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIwLb0EEC2ERKSt8_Locinfomb); - LIB_FUNCTION("95MaQlRbfC8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIwLb0EED0Ev); - LIB_FUNCTION("ki5SQPsB4m4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIwLb0EED1Ev); - LIB_FUNCTION("6F1JfiING18", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIwLb0EED2Ev); - LIB_FUNCTION("XUs40umcJLQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIwLb1EE2idE); - LIB_FUNCTION("8vEBRx0O1fc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIwLb1EE4intlE); - LIB_FUNCTION("HmcMLz3cPkM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIwLb1EE7_GetcatEPPKNSt6locale5facetEPKS1_); - LIB_FUNCTION("X69UlAXF-Oc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIwLb1EEC1Em); - LIB_FUNCTION("pyBabUesXN4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIwLb1EEC1EPKcm); - LIB_FUNCTION("uROsAczW6OU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIwLb1EEC1ERKSt8_Locinfomb); - LIB_FUNCTION("sTaUDDnGOpE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIwLb1EEC2Em); - LIB_FUNCTION("GS1AvxBwVgY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIwLb1EEC2EPKcm); - LIB_FUNCTION("H0a2QXvgHOk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIwLb1EEC2ERKSt8_Locinfomb); - LIB_FUNCTION("fWuQSVGOivA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIwLb1EED0Ev); - LIB_FUNCTION("OM0FnA7Tldk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIwLb1EED1Ev); - LIB_FUNCTION("uVOxy7dQTFc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt10moneypunctIwLb1EED2Ev); - LIB_FUNCTION("fn1i72X18Gs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt11logic_errorD0Ev); - LIB_FUNCTION("i726T0BHbOU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt11logic_errorD1Ev); - LIB_FUNCTION("wgDImKoGKCM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt11logic_errorD2Ev); - LIB_FUNCTION("efXnxYFN5oE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt11range_errorD0Ev); - LIB_FUNCTION("NnNaWa16OvE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt11range_errorD1Ev); - LIB_FUNCTION("XgmUR6WSeXg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt11range_errorD2Ev); - LIB_FUNCTION("ASUJmlcHSLo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt11regex_errorD0Ev); - LIB_FUNCTION("gDsvnPIkLIE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt11regex_errorD1Ev); - LIB_FUNCTION("X2wfcFYusTk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt11regex_errorD2Ev); - LIB_FUNCTION("JyAoulEqA1c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12bad_weak_ptrD0Ev); - LIB_FUNCTION("jAO1IJKMhE4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12bad_weak_ptrD1Ev); - LIB_FUNCTION("2R2j1QezUGM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12bad_weak_ptrD2Ev); - LIB_FUNCTION("q89N9L8q8FU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12domain_errorD0Ev); - LIB_FUNCTION("7P1Wm-5KgAY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12domain_errorD1Ev); - LIB_FUNCTION("AsShnG3DulM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12domain_errorD2Ev); - LIB_FUNCTION("rNYLEsL7M0k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12future_errorD0Ev); - LIB_FUNCTION("fuyXHeERajE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12future_errorD1Ev); - LIB_FUNCTION("XFh0C66aEms", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12future_errorD2Ev); - LIB_FUNCTION("QS7CASjt4FU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12length_errorD0Ev); - LIB_FUNCTION("n3y8Rn9hXJo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12length_errorD1Ev); - LIB_FUNCTION("NjJfVHJL2Gg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12length_errorD2Ev); - LIB_FUNCTION("TqvziWHetnw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12out_of_rangeD0Ev); - LIB_FUNCTION("Kcb+MNSzZcc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12out_of_rangeD1Ev); - LIB_FUNCTION("cCXMypoz4Vs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12out_of_rangeD2Ev); - LIB_FUNCTION("+CnX+ZDO8qg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12placeholders2_1E); - LIB_FUNCTION("GHsPYRKjheE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12placeholders2_2E); - LIB_FUNCTION("X1C-YhubpGY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12placeholders2_3E); - LIB_FUNCTION("fjnxuk9ucsE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12placeholders2_4E); - LIB_FUNCTION("jxlpClEsfJQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12placeholders2_5E); - LIB_FUNCTION("-cgB1bQG6jo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12placeholders2_6E); - LIB_FUNCTION("Vj+KUu5khTE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12placeholders2_7E); - LIB_FUNCTION("9f-LMAJYGCY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12placeholders2_8E); - LIB_FUNCTION("RlB3+37KJaE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12placeholders2_9E); - LIB_FUNCTION("b8ySy0pHgSQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12placeholders3_10E); - LIB_FUNCTION("or0CNRlAEeE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12placeholders3_11E); - LIB_FUNCTION("BO1r8DPhmyg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12placeholders3_12E); - LIB_FUNCTION("eeeT3NKKQZ0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12placeholders3_13E); - LIB_FUNCTION("s0V1HJcZWEs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12placeholders3_14E); - LIB_FUNCTION("94OiPulKcao", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12placeholders3_15E); - LIB_FUNCTION("XOEdRCackI4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12placeholders3_16E); - LIB_FUNCTION("pP76ElRLm78", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12placeholders3_17E); - LIB_FUNCTION("WVB9rXLAUFs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12placeholders3_18E); - LIB_FUNCTION("BE7U+QsixQA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12placeholders3_19E); - LIB_FUNCTION("dFhgrqyzqhI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12placeholders3_20E); - LIB_FUNCTION("oly3wSwEJ2A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12system_errorC2ESt10error_codePKc); - LIB_FUNCTION("cyy-9ntjWT8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12system_errorD0Ev); - LIB_FUNCTION("3qWXO9GTUYU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12system_errorD1Ev); - LIB_FUNCTION("it6DDrqKGvo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt12system_errorD2Ev); - LIB_FUNCTION("Ntg7gSs99PY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13_Num_int_base10is_boundedE); - LIB_FUNCTION("90T0XESrYzU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13_Num_int_base10is_integerE); - LIB_FUNCTION("WFTOZxDfpbQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13_Num_int_base14is_specializedE); - LIB_FUNCTION("ongs2C6YZgA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13_Num_int_base5radixE); - LIB_FUNCTION("VET8UnnaQKo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13_Num_int_base8is_exactE); - LIB_FUNCTION("rZ5sEWyLqa4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13_Num_int_base9is_moduloE); - LIB_FUNCTION("diSRws0Ppxg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13_Regex_traitsIcE6_NamesE); - LIB_FUNCTION("xsRN6gUx-DE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13_Regex_traitsIwE6_NamesE); - LIB_FUNCTION("lX9M5u0e48k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13bad_exceptionD0Ev); - LIB_FUNCTION("t6egllDqQ2M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13bad_exceptionD1Ev); - LIB_FUNCTION("iWNC2tkDgxw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13bad_exceptionD2Ev); - LIB_FUNCTION("VNaqectsZNs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIcSt11char_traitsIcEE4syncEv); - LIB_FUNCTION("9biiDDejX3Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIcSt11char_traitsIcEE5_LockEv); - LIB_FUNCTION("qM0gUepGWT0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIcSt11char_traitsIcEE5imbueERKSt6locale); - LIB_FUNCTION("jfr41GGp2jA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIcSt11char_traitsIcEE5uflowEv); - LIB_FUNCTION("SYFNsz9K2rs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIcSt11char_traitsIcEE6setbufEPci); - LIB_FUNCTION("yofHspnD9us", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIcSt11char_traitsIcEE7_UnlockEv); - LIB_FUNCTION( - "7oio2Gs1GNk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIcSt11char_traitsIcEE7seekoffElNSt5_IosbIiE8_SeekdirENS4_9_OpenmodeE); - LIB_FUNCTION( - "rsS5cBMihAM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIcSt11char_traitsIcEE7seekposESt4fposI9_MbstatetENSt5_IosbIiE9_OpenmodeE); - LIB_FUNCTION("oYMRgkQHoJM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIcSt11char_traitsIcEE8overflowEi); - LIB_FUNCTION("JTwt9OTgk1k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIcSt11char_traitsIcEE9_EndwriteEv); - LIB_FUNCTION("jerxcj2Xnbg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIcSt11char_traitsIcEE9pbackfailEi); - LIB_FUNCTION("Nl6si1CfINw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIcSt11char_traitsIcEE9underflowEv); - LIB_FUNCTION("MYCRRmc7cDA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIcSt11char_traitsIcEED0Ev); - LIB_FUNCTION("Yc2gZRtDeNQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIcSt11char_traitsIcEED1Ev); - LIB_FUNCTION("gOxGOQmSVU0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIcSt11char_traitsIcEED2Ev); - LIB_FUNCTION("+WvmZi3216M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIwSt11char_traitsIwEE4syncEv); - LIB_FUNCTION("GYTma8zq0NU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIwSt11char_traitsIwEE5_LockEv); - LIB_FUNCTION("kmzNbhlkddA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIwSt11char_traitsIwEE5imbueERKSt6locale); - LIB_FUNCTION("VrXGNMTgNdE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIwSt11char_traitsIwEE5uflowEv); - LIB_FUNCTION("wAcnCK2HCeI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIwSt11char_traitsIwEE6setbufEPwi); - LIB_FUNCTION("ryl2DYMxlZ0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIwSt11char_traitsIwEE7_UnlockEv); - LIB_FUNCTION( - "g7gjCDEedJA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIwSt11char_traitsIwEE7seekoffElNSt5_IosbIiE8_SeekdirENS4_9_OpenmodeE); - LIB_FUNCTION( - "10VcrHqHAlw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIwSt11char_traitsIwEE7seekposESt4fposI9_MbstatetENSt5_IosbIiE9_OpenmodeE); - LIB_FUNCTION("PjH5dZGfQHQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIwSt11char_traitsIwEE8overflowEi); - LIB_FUNCTION("cV6KpJiF0Ck", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIwSt11char_traitsIwEE9_EndwriteEv); - LIB_FUNCTION("NeiFvKblpZM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIwSt11char_traitsIwEE9pbackfailEi); - LIB_FUNCTION("hXsvfky362s", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIwSt11char_traitsIwEE9underflowEv); - LIB_FUNCTION("JJ-mkOhdook", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIwSt11char_traitsIwEED0Ev); - LIB_FUNCTION("XcuCO1YXaRs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIwSt11char_traitsIwEED1Ev); - LIB_FUNCTION("aC9OWBGjvxA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_filebufIwSt11char_traitsIwEED2Ev); - LIB_FUNCTION("94dk1V7XfYw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13runtime_errorD0Ev); - LIB_FUNCTION("uBlwRfRb-CM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13runtime_errorD1Ev); - LIB_FUNCTION("oe9tS0VztYk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13runtime_errorD2Ev); - LIB_FUNCTION("3CtP20nk8fs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14_Error_objectsIiE14_System_objectE); - LIB_FUNCTION("fMfCVl0JvfE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14_Error_objectsIiE15_Generic_objectE); - LIB_FUNCTION("y8PXwxTZ9Hc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14_Num_ldbl_base10has_denormE); - LIB_FUNCTION("G4Pw4hv6NKc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14_Num_ldbl_base10is_boundedE); - LIB_FUNCTION("Zwn1Rlbirio", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14_Num_ldbl_base10is_integerE); - LIB_FUNCTION("M+F+0jd4+Y0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14_Num_ldbl_base11round_styleE); - LIB_FUNCTION("f06wGEmo5Pk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14_Num_ldbl_base12has_infinityE); - LIB_FUNCTION("xd7O9oMO+nI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14_Num_ldbl_base13has_quiet_NaNE); - LIB_FUNCTION("8hyOiMUD36c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14_Num_ldbl_base14is_specializedE); - LIB_FUNCTION("F+ehGYUe36Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14_Num_ldbl_base15has_denorm_lossE); - LIB_FUNCTION("0JlZYApT0UM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14_Num_ldbl_base15tinyness_beforeE); - LIB_FUNCTION("ec8jeC2LMOc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14_Num_ldbl_base17has_signaling_NaNE); - LIB_FUNCTION("7tACjdACOBM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14_Num_ldbl_base5radixE); - LIB_FUNCTION("7gc-QliZnMc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14_Num_ldbl_base5trapsE); - LIB_FUNCTION("4PL4SkJXTos", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14_Num_ldbl_base8is_exactE); - LIB_FUNCTION("tsiBm2NZQfo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14_Num_ldbl_base9is_iec559E); - LIB_FUNCTION("c27lOSHxPA4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14_Num_ldbl_base9is_moduloE); - LIB_FUNCTION("LV2FB+f1MJE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14_Num_ldbl_base9is_signedE); - LIB_FUNCTION("g8Jw7V6mn8k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14error_categoryD2Ev); - LIB_FUNCTION("KQTHP-ij0yo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIaE6digitsE); - LIB_FUNCTION("btueF8F0fQE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIaE8digits10E); - LIB_FUNCTION("iBrS+wbpuT0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIaE9is_signedE); - LIB_FUNCTION("x1vTXM-GLCE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIbE6digitsE); - LIB_FUNCTION("lnOqjnXNTwQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIbE8digits10E); - LIB_FUNCTION("qOkciFIHghY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIbE9is_moduloE); - LIB_FUNCTION("0mi6NtGz04Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIbE9is_signedE); - LIB_FUNCTION("nlxVZWbqzsU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIcE6digitsE); - LIB_FUNCTION("VVK0w0uxDLE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIcE8digits10E); - LIB_FUNCTION("M+AMxjxwWlA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIcE9is_signedE); - LIB_FUNCTION("hqVKCQr0vU8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIdE12max_digits10E); - LIB_FUNCTION("fjI2ddUGZZs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIdE12max_exponentE); - LIB_FUNCTION("AwdlDnuQ6c0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIdE12min_exponentE); - LIB_FUNCTION("VmOyIzWFNKs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIdE14max_exponent10E); - LIB_FUNCTION("odyn6PGg5LY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIdE14min_exponent10E); - LIB_FUNCTION("xQtNieUQLVg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIdE6digitsE); - LIB_FUNCTION("EXW20cJ3oNA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIdE8digits10E); - LIB_FUNCTION("Zhtj6WalERg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIDiE6digitsE); - LIB_FUNCTION("r1k-y+1yDcQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIDiE8digits10E); - LIB_FUNCTION("TEMThaOLu+c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIDiE9is_signedE); - LIB_FUNCTION("EL+4ceAj+UU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIDsE6digitsE); - LIB_FUNCTION("vEdl5Er9THU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIDsE8digits10E); - LIB_FUNCTION("ZaOkYNQyQ6g", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIDsE9is_signedE); - LIB_FUNCTION("u16WKNmQUNg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIeE12max_digits10E); - LIB_FUNCTION("bzmM0dI80jM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIeE12max_exponentE); - LIB_FUNCTION("ERYMucecNws", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIeE12min_exponentE); - LIB_FUNCTION("tUo2aRfWs5I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIeE14max_exponent10E); - LIB_FUNCTION("3+5qZWL6APo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIeE14min_exponent10E); - LIB_FUNCTION("NLHWcHpvMss", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIeE6digitsE); - LIB_FUNCTION("JYZigPvvB6c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIeE8digits10E); - LIB_FUNCTION("MFqdrWyu9Ls", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIfE12max_digits10E); - LIB_FUNCTION("L29QQz-6+X8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIfE12max_exponentE); - LIB_FUNCTION("SPlcBQ4pIZ0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIfE12min_exponentE); - LIB_FUNCTION("R8xUpEJwAA8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIfE14max_exponent10E); - LIB_FUNCTION("n+NFkoa0VD0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIfE14min_exponent10E); - LIB_FUNCTION("W6qgdoww-3k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIfE6digitsE); - LIB_FUNCTION("J7d2Fq6Mb0k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIfE8digits10E); - LIB_FUNCTION("T1YYqsPgrn0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIhE6digitsE); - LIB_FUNCTION("uTiJLq4hayE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIhE8digits10E); - LIB_FUNCTION("o0WexTj82pU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIhE9is_signedE); - LIB_FUNCTION("ZvahxWPLKm0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIiE6digitsE); - LIB_FUNCTION("aQjlTguvFMw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIiE8digits10E); - LIB_FUNCTION("GST3YemNZD8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIiE9is_signedE); - LIB_FUNCTION("-jpk31lZR6E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIjE6digitsE); - LIB_FUNCTION("csNIBfF6cyI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIjE8digits10E); - LIB_FUNCTION("P9XP5U7AfXs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIjE9is_signedE); - LIB_FUNCTION("31lJOpD3GGk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIlE6digitsE); - LIB_FUNCTION("4MdGVqrsl7s", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIlE8digits10E); - LIB_FUNCTION("4llda2Y+Q+4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIlE9is_signedE); - LIB_FUNCTION("7AaHj1O8-gI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsImE6digitsE); - LIB_FUNCTION("h9RyP3R30HI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsImE8digits10E); - LIB_FUNCTION("FXrK1DiAosQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsImE9is_signedE); - LIB_FUNCTION("QO6Q+6WPgy0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIsE6digitsE); - LIB_FUNCTION("kW5K7R4rXy8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIsE8digits10E); - LIB_FUNCTION("L0nMzhz-axs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIsE9is_signedE); - LIB_FUNCTION("4r9P8foa6QQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsItE6digitsE); - LIB_FUNCTION("OQorbmM+NbA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsItE8digits10E); - LIB_FUNCTION("vyqQpWI+O48", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsItE9is_signedE); - LIB_FUNCTION("Tlfgn9TIWkA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIwE6digitsE); - LIB_FUNCTION("mdcx6KcRIkE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIwE8digits10E); - LIB_FUNCTION("YVacrIa4L0c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIwE9is_signedE); - LIB_FUNCTION("LN2bC6QtGQE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIxE6digitsE); - LIB_FUNCTION("OwcpepSk5lg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIxE8digits10E); - LIB_FUNCTION("mmrSzkWDrgA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIxE9is_signedE); - LIB_FUNCTION("v7XHt2HwUVI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIyE6digitsE); - LIB_FUNCTION("Eubj+4g8dWA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIyE8digits10E); - LIB_FUNCTION("F2uQDOc7fMo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14numeric_limitsIyE9is_signedE); - LIB_FUNCTION("y1dYQsc67ys", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14overflow_errorD0Ev); - LIB_FUNCTION("XilOsTdCZuM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14overflow_errorD1Ev); - LIB_FUNCTION("OypvNf3Uq3c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14overflow_errorD2Ev); - LIB_FUNCTION("q-WOrJNOlhI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt15_Num_float_base10has_denormE); - LIB_FUNCTION("XbD-A2MEsS4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt15_Num_float_base10is_boundedE); - LIB_FUNCTION("mxv24Oqmp0E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt15_Num_float_base10is_integerE); - LIB_FUNCTION("9AcX4Qk47+o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt15_Num_float_base11round_styleE); - LIB_FUNCTION("MIKN--3fORE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt15_Num_float_base12has_infinityE); - LIB_FUNCTION("nxdioQgDF2E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt15_Num_float_base13has_quiet_NaNE); - LIB_FUNCTION("N03wZLr2RrE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt15_Num_float_base14is_specializedE); - LIB_FUNCTION("rhJg5tjs83Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt15_Num_float_base15has_denorm_lossE); - LIB_FUNCTION("EzuahjKzeGQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt15_Num_float_base15tinyness_beforeE); - LIB_FUNCTION("uMMG8cuJNr8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt15_Num_float_base17has_signaling_NaNE); - LIB_FUNCTION("1KngsM7trps", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt15_Num_float_base5radixE); - LIB_FUNCTION("mMPu4-jx9oI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt15_Num_float_base5trapsE); - LIB_FUNCTION("J5QA0ZeLmhs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt15_Num_float_base8is_exactE); - LIB_FUNCTION("JwPU+6+T20M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt15_Num_float_base9is_iec559E); - LIB_FUNCTION("HU3yzCPz3GQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt15_Num_float_base9is_moduloE); - LIB_FUNCTION("S7kkgAPGxLQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt15_Num_float_base9is_signedE); - LIB_FUNCTION("iHILAmwYRGY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt15underflow_errorD0Ev); - LIB_FUNCTION("ywv2X-q-9is", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt15underflow_errorD1Ev); - LIB_FUNCTION("xiqd+QkuYXc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt15underflow_errorD2Ev); - LIB_FUNCTION("1GhiIeIpkms", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt16invalid_argumentD0Ev); - LIB_FUNCTION("oQDS9nX05Qg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt16invalid_argumentD1Ev); - LIB_FUNCTION("ddr7Ie4u5Nw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt16invalid_argumentD2Ev); - LIB_FUNCTION("za50kXyi3SA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt16nested_exceptionD0Ev); - LIB_FUNCTION("+qKS53qzWdA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt16nested_exceptionD1Ev); - LIB_FUNCTION("8R00hgzXQDY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt16nested_exceptionD2Ev); - LIB_FUNCTION("q9rMtHuXvZ8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt17bad_function_callD0Ev); - LIB_FUNCTION("YEDrb1pSx2Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt17bad_function_callD1Ev); - LIB_FUNCTION("NqMgmxSA1rc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt17bad_function_callD2Ev); - LIB_FUNCTION("8DNJW5tX-A8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt18bad_variant_accessD0Ev); - LIB_FUNCTION("U3b5A2LEiTc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt18bad_variant_accessD1Ev); - LIB_FUNCTION("QUeUgxy7PTA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt20_Future_error_objectIiE14_Future_objectE); - LIB_FUNCTION("-UKRka-33sM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt20bad_array_new_lengthD0Ev); - LIB_FUNCTION("XO3N4SBvCy0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt20bad_array_new_lengthD1Ev); - LIB_FUNCTION("15lB7flw-9w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt20bad_array_new_lengthD2Ev); - LIB_FUNCTION("WDKzMM-uuLE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt22_Future_error_categoryD0Ev); - LIB_FUNCTION("xsXQD5ybREw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt22_Future_error_categoryD1Ev); - LIB_FUNCTION("Dc4ZMWmPMl8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt22_System_error_categoryD0Ev); - LIB_FUNCTION("hVQgfGhJz3U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt22_System_error_categoryD1Ev); - LIB_FUNCTION("YBrp9BlADaA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt23_Generic_error_categoryD0Ev); - LIB_FUNCTION("MAalgQhejPc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt23_Generic_error_categoryD1Ev); - LIB_FUNCTION("9G32u5RRYxE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt3pmr19new_delete_resourceEv); - LIB_FUNCTION("d2u38zs4Pe8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt3pmr20get_default_resourceEv); - LIB_FUNCTION("eWMGI7B7Lyc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt3pmr20null_memory_resourceEv); - LIB_FUNCTION("TKYsv0jdvRw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt3pmr20set_default_resourceEPNS_15memory_resourceE); - LIB_FUNCTION("H7-7Z3ixv-w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt4_Pad7_LaunchEPKcPP12pthread_attrPP7pthread); - LIB_FUNCTION("PBbZjsL6nfc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt4_Pad7_LaunchEPKcPP7pthread); - LIB_FUNCTION("fLBZMOQh-3Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt4_Pad7_LaunchEPP12pthread_attrPP7pthread); - LIB_FUNCTION("xZqiZvmcp9k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt4_Pad7_LaunchEPP7pthread); - LIB_FUNCTION("a-z7wxuYO2E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt4_Pad8_ReleaseEv); - LIB_FUNCTION("uhnb6dnXOnc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt4_PadC2EPKc); - LIB_FUNCTION("dGYo9mE8K2A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt4_PadC2Ev); - LIB_FUNCTION("XyJPhPqpzMw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt4_PadD1Ev); - LIB_FUNCTION("gjLRZgfb3i0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt4_PadD2Ev); - LIB_FUNCTION("rX58aCQCMS4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt5ctypeIcE10table_sizeE); - LIB_FUNCTION("Cv+zC4EjGMA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt5ctypeIcE2idE); - LIB_FUNCTION("p8-44cVeO84", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt5ctypeIcED0Ev); - LIB_FUNCTION("tPsGA6EzNKA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt5ctypeIcED1Ev); - LIB_FUNCTION("VmqsS6auJzo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt5ctypeIwE2idE); - LIB_FUNCTION("zOPA5qnbW2U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt5ctypeIwED0Ev); - LIB_FUNCTION("P0383AW3Y9A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt5ctypeIwED1Ev); - LIB_FUNCTION("U54NBtdj6UY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6_Mutex5_LockEv); - LIB_FUNCTION("7OCTkL2oWyg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6_Mutex7_UnlockEv); - LIB_FUNCTION("2KNnG2Z9zJA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6_MutexC1Ev); - LIB_FUNCTION("log6zy2C9iQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6_MutexC2Ev); - LIB_FUNCTION("djHbPE+TFIo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6_MutexD1Ev); - LIB_FUNCTION("j7e7EQBD6ZA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6_MutexD2Ev); - LIB_FUNCTION("0WY1SH7eoIs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6_Winit9_Init_cntE); - LIB_FUNCTION("-Bl9-SZ2noc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6_WinitC1Ev); - LIB_FUNCTION("57mMrw0l-40", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6_WinitC2Ev); - LIB_FUNCTION("Uw3OTZFPNt4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6_WinitD1Ev); - LIB_FUNCTION("2yOarodWACE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6_WinitD2Ev); - LIB_FUNCTION("z83caOn94fM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6chrono12steady_clock12is_monotonicE); - LIB_FUNCTION("vHy+a4gLBfs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6chrono12steady_clock9is_steadyE); - LIB_FUNCTION("jCX3CPIVB8I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6chrono12system_clock12is_monotonicE); - LIB_FUNCTION("88EyUEoBX-E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6chrono12system_clock9is_steadyE); - LIB_FUNCTION("hEQ2Yi4PJXA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6locale16_GetgloballocaleEv); - LIB_FUNCTION("1TaQLyPDJEY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6locale16_SetgloballocaleEPv); - LIB_FUNCTION("H4fcpQOpc08", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6locale2id7_Id_cntE); - LIB_FUNCTION("9rMML086SEE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6locale5_InitEv); - LIB_FUNCTION("K-5mtupQZ4g", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6locale5emptyEv); - LIB_FUNCTION("AgxEl+HeWRQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6locale5facet7_DecrefEv); - LIB_FUNCTION("-EgSegeAKl4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6locale5facet7_IncrefEv); - LIB_FUNCTION("QW2jL1J5rwY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6locale5facet9_RegisterEv); - LIB_FUNCTION("ptwhA0BQVeE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6locale6globalERKS_); - LIB_FUNCTION("uuga3RipCKQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6locale7_Locimp7_AddfacEPNS_5facetEm); - LIB_FUNCTION("9FF+T5Xks9E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6locale7_Locimp8_ClocptrE); - LIB_FUNCTION("5r801ZWiJJI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6locale7_Locimp8_MakelocERKSt8_LocinfoiPS0_PKS_); - LIB_FUNCTION("BcbHFSrcg3Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6locale7_Locimp9_MakewlocERKSt8_LocinfoiPS0_PKS_); - LIB_FUNCTION("fkFGlPdquqI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6locale7_Locimp9_MakexlocERKSt8_LocinfoiPS0_PKS_); - LIB_FUNCTION("6b3KIjPD33k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6locale7_LocimpC1Eb); - LIB_FUNCTION("WViwxtEKxHk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6locale7_LocimpC1ERKS0_); - LIB_FUNCTION("zrmR88ClfOs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6locale7_LocimpC2Eb); - LIB_FUNCTION("dsJKehuajH4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6locale7_LocimpC2ERKS0_); - LIB_FUNCTION("bleKr8lOLr8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6locale7_LocimpD0Ev); - LIB_FUNCTION("aD-iqbVlHmQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6locale7_LocimpD1Ev); - LIB_FUNCTION("So6gSmJMYDs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6locale7_LocimpD2Ev); - LIB_FUNCTION("Uq5K8tl8I9U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6locale7classicEv); - LIB_FUNCTION("pMWnITHysPc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6localeD1Ev); - LIB_FUNCTION("CHrhwd8QSBs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt6thread20hardware_concurrencyEv); - LIB_FUNCTION("m7qAgircaZY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7_MpunctIcE5_InitERKSt8_Locinfob); - LIB_FUNCTION("zWSNYg14Uag", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7_MpunctIcEC2Emb); - LIB_FUNCTION("0il9qdo6fhs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7_MpunctIcEC2EPKcmbb); - LIB_FUNCTION("Lzj4ws7DlhQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7_MpunctIcED0Ev); - LIB_FUNCTION("0AeC+qCELEA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7_MpunctIcED1Ev); - LIB_FUNCTION("iCoD0EOIbTM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7_MpunctIwE5_InitERKSt8_Locinfob); - LIB_FUNCTION("Pr1yLzUe230", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7_MpunctIwEC2Emb); - LIB_FUNCTION("TDhjx3nyaoU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7_MpunctIwEC2EPKcmbb); - LIB_FUNCTION("8UeuxGKjQr8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7_MpunctIwED0Ev); - LIB_FUNCTION("0TADyPWrobI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7_MpunctIwED1Ev); - LIB_FUNCTION("eVFYZnYNDo0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7codecvtIcc9_MbstatetE2idE); - LIB_FUNCTION("iZCHNahj++4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7codecvtIcc9_MbstatetE5_InitERKSt8_Locinfo); - LIB_FUNCTION("zyhiiLKndO8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7codecvtIcc9_MbstatetE7_GetcatEPPKNSt6locale5facetEPKS2_); - LIB_FUNCTION("XhwSbwsBdx0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7codecvtIcc9_MbstatetEC1Em); - LIB_FUNCTION("3YCLxZqgIdo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7codecvtIcc9_MbstatetEC1ERKSt8_Locinfom); - LIB_FUNCTION("e5Hwcntvd8c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7codecvtIcc9_MbstatetEC2Em); - LIB_FUNCTION("4qHwSTPt-t8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7codecvtIcc9_MbstatetEC2ERKSt8_Locinfom); - LIB_FUNCTION("2TYdayAO39E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7codecvtIcc9_MbstatetED0Ev); - LIB_FUNCTION("djNkrJKTb6Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7codecvtIcc9_MbstatetED1Ev); - LIB_FUNCTION("to7GggwECZU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7codecvtIcc9_MbstatetED2Ev); - LIB_FUNCTION("u2MAta5SS84", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7codecvtIDic9_MbstatetE2idE); - LIB_FUNCTION("vwMx2NhWdLw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7codecvtIDic9_MbstatetED0Ev); - LIB_FUNCTION("TuhGCIxgLvA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7codecvtIDic9_MbstatetED1Ev); - LIB_FUNCTION("xM5re58mxj8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7codecvtIDsc9_MbstatetE2idE); - LIB_FUNCTION("zYHryd8vd0w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7codecvtIDsc9_MbstatetED0Ev); - LIB_FUNCTION("Oeo9tUbzW7s", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7codecvtIDsc9_MbstatetED1Ev); - LIB_FUNCTION("FjZCPmK0SbA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7codecvtIwc9_MbstatetE2idE); - LIB_FUNCTION("9BI3oYkCTCU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7codecvtIwc9_MbstatetED0Ev); - LIB_FUNCTION("0fkFA3za2N8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7codecvtIwc9_MbstatetED1Ev); - LIB_FUNCTION("7brRfHVVAlI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7collateIcE2idE); - LIB_FUNCTION("CKlZ-H-D1CE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7collateIcE5_InitERKSt8_Locinfo); - LIB_FUNCTION("BSVJqITGCyI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7collateIcE7_GetcatEPPKNSt6locale5facetEPKS1_); - LIB_FUNCTION("Oo1r8jKGZQ4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7collateIcEC1Em); - LIB_FUNCTION("splBMMcF3yk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7collateIcEC1EPKcm); - LIB_FUNCTION("raLgIUi3xmk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7collateIcEC1ERKSt8_Locinfom); - LIB_FUNCTION("tkqNipin1EI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7collateIcEC2Em); - LIB_FUNCTION("VClCrMDyydE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7collateIcEC2EPKcm); - LIB_FUNCTION("L71JAnoQees", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7collateIcEC2ERKSt8_Locinfom); - LIB_FUNCTION("Lt4407UMs2o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7collateIcED0Ev); - LIB_FUNCTION("8pXCeme0FC4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7collateIcED1Ev); - LIB_FUNCTION("dP5zwQ2Yc8g", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7collateIcED2Ev); - LIB_FUNCTION("irGo1yaJ-vM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7collateIwE2idE); - LIB_FUNCTION("LxKs-IGDsFU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7collateIwE5_InitERKSt8_Locinfo); - LIB_FUNCTION("2wz4rthdiy8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7collateIwE7_GetcatEPPKNSt6locale5facetEPKS1_); - LIB_FUNCTION("d-MOtyu8GAk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7collateIwEC1Em); - LIB_FUNCTION("fjHAU8OSaW8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7collateIwEC1EPKcm); - LIB_FUNCTION("wggIIjWSt-E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7collateIwEC1ERKSt8_Locinfom); - LIB_FUNCTION("HQbgeUdQyyw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7collateIwEC2Em); - LIB_FUNCTION("PSAw7g1DD24", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7collateIwEC2EPKcm); - LIB_FUNCTION("2PoQu-K2qXk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7collateIwEC2ERKSt8_Locinfom); - LIB_FUNCTION("ig4VDIRc21Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7collateIwED0Ev); - LIB_FUNCTION("ZO3a6HfALTQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7collateIwED1Ev); - LIB_FUNCTION("84wIPnwBGiU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7collateIwED2Ev); - LIB_FUNCTION("WkAsdy5CUAo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8_Locinfo8_AddcatsEiPKc); - LIB_FUNCTION("L1Ze94yof2I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8_LocinfoC1EiPKc); - LIB_FUNCTION("hqi8yMOCmG0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8_LocinfoC1EPKc); - LIB_FUNCTION("2aSk2ruCP0E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8_LocinfoC1ERKSs); - LIB_FUNCTION("i180MNC9p4c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8_LocinfoC2EiPKc); - LIB_FUNCTION("pN02FS5SPgg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8_LocinfoC2EPKc); - LIB_FUNCTION("ReK9U6EUWuU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8_LocinfoC2ERKSs); - LIB_FUNCTION("p6LrHjIQMdk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8_LocinfoD1Ev); - LIB_FUNCTION("YXVCU6PdgZk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8_LocinfoD2Ev); - LIB_FUNCTION("2MK5Lr9pgQc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8bad_castD0Ev); - LIB_FUNCTION("47RvLSo2HN8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8bad_castD1Ev); - LIB_FUNCTION("rF07weLXJu8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8bad_castD2Ev); - LIB_FUNCTION("QZb07KKwTU0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8ios_base4Init9_Init_cntE); - LIB_FUNCTION("sqWytnhYdEg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8ios_base4InitC1Ev); - LIB_FUNCTION("bTQcNwRc8hE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8ios_base4InitC2Ev); - LIB_FUNCTION("kxXCvcat1cM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8ios_base4InitD1Ev); - LIB_FUNCTION("bxLH5WHgMBY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8ios_base4InitD2Ev); - LIB_FUNCTION("8tL6yJaX1Ro", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8ios_base5_SyncE); - LIB_FUNCTION("QXJCcrXoqpU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8ios_base5clearENSt5_IosbIiE8_IostateEb); - LIB_FUNCTION("4EkPKYzOjPc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8ios_base6_IndexE); - LIB_FUNCTION("LTov9gMEqCU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8ios_base7_AddstdEPS_); - LIB_FUNCTION("x7vtyar1sEY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8ios_base7failureD0Ev); - LIB_FUNCTION("N2f485TmJms", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8ios_base7failureD1Ev); - LIB_FUNCTION("fjG5plxblj8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8ios_base7failureD2Ev); - LIB_FUNCTION("I5jcbATyIWo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8ios_baseD0Ev); - LIB_FUNCTION("X9D8WWSG3As", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8ios_baseD1Ev); - LIB_FUNCTION("P8F2oavZXtY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8ios_baseD2Ev); - LIB_FUNCTION("lA+PfiZ-S5A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8messagesIcE2idE); - LIB_FUNCTION("eLB2+1+mVvg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8messagesIcE5_InitERKSt8_Locinfo); - LIB_FUNCTION("96Ev+CE1luE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8messagesIcE7_GetcatEPPKNSt6locale5facetEPKS1_); - LIB_FUNCTION("6gCBQs1mIi4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8messagesIcEC1Em); - LIB_FUNCTION("W0w8TGzAu0Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8messagesIcEC1EPKcm); - LIB_FUNCTION("SD403oMc1pQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8messagesIcEC1ERKSt8_Locinfom); - LIB_FUNCTION("6DBUo0dty1k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8messagesIcEC2Em); - LIB_FUNCTION("qF3mHeMAHVk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8messagesIcEC2EPKcm); - LIB_FUNCTION("969Euioo12Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8messagesIcEC2ERKSt8_Locinfom); - LIB_FUNCTION("jy9urODH0Wo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8messagesIcED0Ev); - LIB_FUNCTION("34mi8lteNTs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8messagesIcED1Ev); - LIB_FUNCTION("yDdbQr1oLOc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8messagesIcED2Ev); - LIB_FUNCTION("n1Y6pGR-8AU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8messagesIwE2idE); - LIB_FUNCTION("Zz-RfDtowlo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8messagesIwE5_InitERKSt8_Locinfo); - LIB_FUNCTION("XghI4vmw8mU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8messagesIwE7_GetcatEPPKNSt6locale5facetEPKS1_); - LIB_FUNCTION("n4+3hznhkU4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8messagesIwEC1Em); - LIB_FUNCTION("4Srtnk+NpC4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8messagesIwEC1EPKcm); - LIB_FUNCTION("RrTMGyPhYU4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8messagesIwEC1ERKSt8_Locinfom); - LIB_FUNCTION("x8PFBjJhH7E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8messagesIwEC2Em); - LIB_FUNCTION("DlDsyX+XsoA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8messagesIwEC2EPKcm); - LIB_FUNCTION("DDQjbwNC31E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8messagesIwEC2ERKSt8_Locinfom); - LIB_FUNCTION("gMwkpZNI9Us", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8messagesIwED0Ev); - LIB_FUNCTION("6sAaleB7Zgk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8messagesIwED1Ev); - LIB_FUNCTION("I-e7Dxo087A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8messagesIwED2Ev); - LIB_FUNCTION("9iXtwvGVFRI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8numpunctIcE2idE); - LIB_FUNCTION("1LvbNeZZJ-o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8numpunctIcE5_InitERKSt8_Locinfob); - LIB_FUNCTION("fFnht9SPed8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8numpunctIcE5_TidyEv); - LIB_FUNCTION("zCB24JBovnQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8numpunctIcE7_GetcatEPPKNSt6locale5facetEPKS1_); - LIB_FUNCTION("TEtyeXjcZ0w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8numpunctIcEC1Em); - LIB_FUNCTION("WK24j1F3rCU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8numpunctIcEC1EPKcmb); - LIB_FUNCTION("CDm+TUClE7E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8numpunctIcEC1ERKSt8_Locinfomb); - LIB_FUNCTION("1eVdDzPtzD4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8numpunctIcEC2Em); - LIB_FUNCTION("yIn4l8OO1zA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8numpunctIcEC2EPKcmb); - LIB_FUNCTION("Cb1hI+w9nyU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8numpunctIcEC2ERKSt8_Locinfomb); - LIB_FUNCTION("Lf6h5krl2fA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8numpunctIcED0Ev); - LIB_FUNCTION("qEob3o53s2M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8numpunctIcED1Ev); - LIB_FUNCTION("xFva4yxsVW8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8numpunctIcED2Ev); - LIB_FUNCTION("XZNi3XtbWQ4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8numpunctIwE2idE); - LIB_FUNCTION("uiRALKOdAZk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8numpunctIwE5_InitERKSt8_Locinfob); - LIB_FUNCTION("2YCDWkuFEy8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8numpunctIwE5_TidyEv); - LIB_FUNCTION("SdXFaufpLIs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8numpunctIwE7_GetcatEPPKNSt6locale5facetEPKS1_); - LIB_FUNCTION("XOgjMgZ3fjo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8numpunctIwEC1Em); - LIB_FUNCTION("H+T2VJ91dds", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8numpunctIwEC1EPKcmb); - LIB_FUNCTION("s1EM2NdPf0Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8numpunctIwEC1ERKSt8_Locinfomb); - LIB_FUNCTION("ElKI+ReiehU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8numpunctIwEC2Em); - LIB_FUNCTION("m4kEqv7eGVY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8numpunctIwEC2EPKcmb); - LIB_FUNCTION("MQJQCxbLfM0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8numpunctIwEC2ERKSt8_Locinfomb); - LIB_FUNCTION("VHBnRBxBg5E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8numpunctIwED0Ev); - LIB_FUNCTION("lzK3uL1rWJY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8numpunctIwED1Ev); - LIB_FUNCTION("XDm4jTtoEbo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8numpunctIwED2Ev); - LIB_FUNCTION("cDHRgSXYdqA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9_Num_base10has_denormE); - LIB_FUNCTION("v9HHsaa42qE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9_Num_base10is_boundedE); - LIB_FUNCTION("EgSIYe3IYso", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9_Num_base10is_integerE); - LIB_FUNCTION("XXiGcYa5wtg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9_Num_base11round_styleE); - LIB_FUNCTION("98w+P+GuFMU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9_Num_base12has_infinityE); - LIB_FUNCTION("qeA5qUg9xBk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9_Num_base12max_digits10E); - LIB_FUNCTION("E4gWXl6V2J0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9_Num_base12max_exponentE); - LIB_FUNCTION("KqdclsYd24w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9_Num_base12min_exponentE); - LIB_FUNCTION("gF5aGNmzWSg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9_Num_base13has_quiet_NaNE); - LIB_FUNCTION("RCWKbkEaDAU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9_Num_base14is_specializedE); - LIB_FUNCTION("Dl4hxL59YF4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9_Num_base14max_exponent10E); - LIB_FUNCTION("zBHGQsN5Yfw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9_Num_base14min_exponent10E); - LIB_FUNCTION("96Bg8h09w+o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9_Num_base15has_denorm_lossE); - LIB_FUNCTION("U0FdtOUjUPg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9_Num_base15tinyness_beforeE); - LIB_FUNCTION("fSdpGoYfYs8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9_Num_base17has_signaling_NaNE); - LIB_FUNCTION("Xb9FhMysEHo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9_Num_base5radixE); - LIB_FUNCTION("suaBxzlL0p0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9_Num_base5trapsE); - LIB_FUNCTION("ejBz8a8TCWU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9_Num_base6digitsE); - LIB_FUNCTION("M-KRaPj9tQQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9_Num_base8digits10E); - LIB_FUNCTION("bUQLE6uEu10", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9_Num_base8is_exactE); - LIB_FUNCTION("0ZdjsAWtbG8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9_Num_base9is_iec559E); - LIB_FUNCTION("qO4MLGs1o58", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9_Num_base9is_moduloE); - LIB_FUNCTION("5DzttCF356U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9_Num_base9is_signedE); - LIB_FUNCTION("qb6A7pSgAeY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9bad_allocD0Ev); - LIB_FUNCTION("khbdMADH4cQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9bad_allocD1Ev); - LIB_FUNCTION("WiH8rbVv5s4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9bad_allocD2Ev); - LIB_FUNCTION("Bin7e2UR+a0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9exception18_Set_raise_handlerEPFvRKS_E); - LIB_FUNCTION("+Nc8JGdVLQs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9exceptionD0Ev); - LIB_FUNCTION("BgZcGDh7o9g", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9exceptionD1Ev); - LIB_FUNCTION("MOBxtefPZUg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9exceptionD2Ev); - LIB_FUNCTION("N5nZ3wQw+Vc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9type_infoD0Ev); - LIB_FUNCTION("LLssoYjMOow", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9type_infoD1Ev); - LIB_FUNCTION("zb3436295XU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9type_infoD2Ev); - LIB_FUNCTION("ryUxD-60bKM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZnwmRKSt9nothrow_t); - LIB_FUNCTION("3yxLpdKD0RA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZnwmSt11align_val_t); - LIB_FUNCTION("iQXBbJbfT5k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZnwmSt11align_val_tRKSt9nothrow_t); - LIB_FUNCTION("VrWUXy1gqn8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt10_Rng_abortPKc); - LIB_FUNCTION("Zmeuhg40yNI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt10adopt_lock); - LIB_FUNCTION("mhR3IufA7fE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt10defer_lock); - LIB_FUNCTION("lKfKm6INOpQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt10unexpectedv); - LIB_FUNCTION("eT2UsmTewbU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt11_Xbad_allocv); - LIB_FUNCTION("L7Vnk06zC2c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt11setiosflagsNSt5_IosbIiE9_FmtflagsE); - LIB_FUNCTION("kFYQ4d6jVls", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt11try_to_lock); - LIB_FUNCTION("1h8hFQghR7w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt12setprecisioni); - LIB_FUNCTION("ybn35k-I+B0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt13_Cl_charnames); - LIB_FUNCTION("DiGVep5yB5w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt13_Execute_onceRSt9once_flagPFiPvS1_PS1_ES1_); - LIB_FUNCTION("PDX01ziUz+4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt13_Syserror_mapi); - LIB_FUNCTION("UWyL6KoR96U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt13_Xregex_errorNSt15regex_constants10error_typeE); - LIB_FUNCTION("Zb+hMspRR-o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt13get_terminatev); - LIB_FUNCTION("qMXslRdZVj4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt13resetiosflagsNSt5_IosbIiE9_FmtflagsE); - LIB_FUNCTION("NG1phipELJE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt13set_terminatePFvvE); - LIB_FUNCTION("u2tMGOLaqnE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt14_Atomic_assertPKcS0_); - LIB_FUNCTION("T+zVxpVaaTo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt14_Cl_wcharnames); - LIB_FUNCTION("Zn44KZgJtWY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt14_Debug_messagePKcS0_j); - LIB_FUNCTION("u0yN6tzBors", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt14_Raise_handler); - LIB_FUNCTION("Nmtr628eA3A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt14_Random_devicev); - LIB_FUNCTION("bRujIheWlB0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt14_Throw_C_errori); - LIB_FUNCTION("tQIo+GIPklo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt14_Xlength_errorPKc); - LIB_FUNCTION("ozMAr28BwSY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt14_Xout_of_rangePKc); - LIB_FUNCTION("zPWCqkg7V+o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt14get_unexpectedv); - LIB_FUNCTION("Eva2i4D5J6I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt14set_unexpectedPFvvE); - LIB_FUNCTION("zugltxeIXM0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt15_sceLibcLocinfoPKc); - LIB_FUNCTION("y7aMFEkj4PE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt15_Xruntime_errorPKc); - LIB_FUNCTION("vI85k3GQcz8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt15future_categoryv); - LIB_FUNCTION("CkY0AVa-frg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt15get_new_handlerv); - LIB_FUNCTION("RqeErO3cFHU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt15set_new_handlerPFvvE); - LIB_FUNCTION("aotaAaQK6yc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt15system_categoryv); - LIB_FUNCTION("W0j6vCxh9Pc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt16_Throw_Cpp_errori); - LIB_FUNCTION("saSUnPWLq9E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt16_Xoverflow_errorPKc); - LIB_FUNCTION("YxwfcCH5Q0I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt16generic_categoryv); - LIB_FUNCTION("0r8rbw2SFqk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt17_Future_error_mapi); - LIB_FUNCTION("VoUwme28y4w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt18_String_cpp_unused); - LIB_FUNCTION("NU-T4QowTNA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt18_Xinvalid_argumentPKc); - LIB_FUNCTION("Q1BL70XVV0o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt18uncaught_exceptionv); - LIB_FUNCTION("PjwbqtUehPU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt19_Throw_future_errorRKSt10error_code); - LIB_FUNCTION("MELi-cKqWq0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt19_Xbad_function_callv); - LIB_FUNCTION("Qoo175Ig+-k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt21_sceLibcClassicLocale); - LIB_FUNCTION("cPNeOAYgB0A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt22_Get_future_error_whati); - LIB_FUNCTION("mDIHE-aaRaI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt22_Random_device_entropyv); - LIB_FUNCTION("DNbsDRZ-ntI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt25_Rethrow_future_exceptionSt13exception_ptr); - LIB_FUNCTION("2WVBaSdGIds", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt3cin); - LIB_FUNCTION("wiR+rIcbnlc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt4_Fpz); - LIB_FUNCTION("TVfbf1sXt0A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt4cerr); - LIB_FUNCTION("jSquWN7i7lc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt4clog); - LIB_FUNCTION("5PfqUBaQf4g", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt4cout); - LIB_FUNCTION("vU9svJtEnWc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt4setwi); - LIB_FUNCTION("2bASh0rEeXI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt4wcin); - LIB_FUNCTION("CvJ3HUPlMIY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt5wcerr); - LIB_FUNCTION("awr1A2VAVZQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt5wclog); - LIB_FUNCTION("d-YRIvO0jXI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt5wcout); - LIB_FUNCTION("pDFe-IgbTPg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt6_ThrowRKSt9exception); - LIB_FUNCTION("kr5ph+wVAtU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt6ignore); - LIB_FUNCTION("FQ9NFbBHb5Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt7_BADOFF); - LIB_FUNCTION("vYWK2Pz8vGE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt7_FiopenPKcNSt5_IosbIiE9_OpenmodeEi); - LIB_FUNCTION("aqyjhIx7jaY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt7_FiopenPKwNSt5_IosbIiE9_OpenmodeEi); - LIB_FUNCTION("QfPuSqhub7o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt7_MP_AddPyy); - LIB_FUNCTION("lrQSsTRMMr4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt7_MP_GetPy); - LIB_FUNCTION("Gav1Xt1Ce+c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt7_MP_MulPyyy); - LIB_FUNCTION("Ozk+Z6QnlTY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt7_MP_RemPyy); - LIB_FUNCTION("NLwJ3q+64bY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt7nothrow); - LIB_FUNCTION("4rrOHCHAV1w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt7setbasei); - LIB_FUNCTION("yYk819F9TyU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt8_XLgammad); - LIB_FUNCTION("bl0DPP6kFBk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt8_XLgammae); - LIB_FUNCTION("DWMcG8yogkY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt8_XLgammaf); - LIB_FUNCTION("X1DNtCe22Ks", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt9_LStrcollIcEiPKT_S2_S2_S2_PKSt8_Collvec); - LIB_FUNCTION("m6uU37-b27s", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt9_LStrcollIwEiPKT_S2_S2_S2_PKSt8_Collvec); - LIB_FUNCTION("V62E2Q8bJVY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt9_LStrxfrmIcEmPT_S1_PKS0_S3_PKSt8_Collvec); - LIB_FUNCTION("BloPUt1HCH0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt9_LStrxfrmIwEmPT_S1_PKS0_S3_PKSt8_Collvec); - LIB_FUNCTION("qYhnoevd9bI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt9terminatev); - LIB_FUNCTION("XO9ihAZCBcY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIa); - LIB_FUNCTION("nEuTkSQAQFw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIb); - LIB_FUNCTION("smeljzleGRQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIc); - LIB_FUNCTION("iZrCfFRsE3Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTId); - LIB_FUNCTION("ltRLAWAeSaM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIDh); - LIB_FUNCTION("7TW4UgJjwJ8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIDi); - LIB_FUNCTION("SK0Syya+scs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIDn); - LIB_FUNCTION("rkWOabkkpVo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIDs); - LIB_FUNCTION("NlgA2fMtxl4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIe); - LIB_FUNCTION("c5-Jw-LTekM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIf); - LIB_FUNCTION("g-fUPD4HznU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIh); - LIB_FUNCTION("St4apgcBNfo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIi); - LIB_FUNCTION("MpiTv3MErEQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIj); - LIB_FUNCTION("b5JSEuAHuDo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIl); - LIB_FUNCTION("DoGS21ugIfI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIm); - LIB_FUNCTION("2EEDQ6uHY2c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIn); - LIB_FUNCTION("h1Eewgzowes", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIN10__cxxabiv116__enum_type_infoE); - LIB_FUNCTION("eD+mC6biMFI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIN10__cxxabiv117__array_type_infoE); - LIB_FUNCTION("EeOtHxoUkvM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIN10__cxxabiv117__class_type_infoE); - LIB_FUNCTION("dSBshTZ8JcA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIN10__cxxabiv117__pbase_type_infoE); - LIB_FUNCTION("YglrcQaNfds", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIN10__cxxabiv119__pointer_type_infoE); - LIB_FUNCTION("DZhZwYkJDCE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIN10__cxxabiv120__function_type_infoE); - LIB_FUNCTION("N2VV+vnEYlw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIN10__cxxabiv120__si_class_type_infoE); - LIB_FUNCTION("gjLRFhKCMNE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIN10__cxxabiv121__vmi_class_type_infoE); - LIB_FUNCTION("dHw0YAjyIV4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIN10__cxxabiv123__fundamental_type_infoE); - LIB_FUNCTION("7tTpzMt-PzY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIN10__cxxabiv129__pointer_to_member_type_infoE); - LIB_FUNCTION("yZmHOKICuxg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIN6Dinkum7threads10lock_errorE); - LIB_FUNCTION("qcaIknDQLwE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIN6Dinkum7threads21thread_resource_errorE); - LIB_FUNCTION("sJUU2ZW-yxU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTINSt6locale5facetE); - LIB_FUNCTION("8Wc+t3BCF-k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTINSt6locale7_LocimpE); - LIB_FUNCTION("sBCTjFk7Gi4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTINSt8ios_base7failureE); - LIB_FUNCTION("Sn3TCBWJ5wo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIo); - LIB_FUNCTION("Jk+LgZzCsi8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPa); - LIB_FUNCTION("+qso2nVwQzg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPb); - LIB_FUNCTION("M1jmeNsWVK8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPc); - LIB_FUNCTION("3o0PDVnn1qA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPd); - LIB_FUNCTION("7OO0uCJWILQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPDh); - LIB_FUNCTION("DOBCPW6DL3w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPDi); - LIB_FUNCTION("QvWOlLyuQ2o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPDn); - LIB_FUNCTION("OkYxbdkrv64", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPDs); - LIB_FUNCTION("96xdSFbiR7Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPe); - LIB_FUNCTION("01FSgNK1wwA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPf); - LIB_FUNCTION("ota-3+co4Jk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPh); - LIB_FUNCTION("YstfcFbhwvQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPi); - LIB_FUNCTION("DQ9mChn0nnE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPj); - LIB_FUNCTION("Ml1z3dYEVPM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPKa); - LIB_FUNCTION("WV94zKqwgxY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPKb); - LIB_FUNCTION("I4y33AOamns", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPKc); - LIB_FUNCTION("0G36SAiYUhQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPKd); - LIB_FUNCTION("NVCBWomXpcw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPKDh); - LIB_FUNCTION("50aDlGVFt5I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPKDi); - LIB_FUNCTION("liR+QkhejDk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPKDn); - LIB_FUNCTION("kzfj-YSkW7w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPKDs); - LIB_FUNCTION("7uX6IsXWwak", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPKe); - LIB_FUNCTION("2PXZUKjolAA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPKf); - LIB_FUNCTION("RKvygdQzGaY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPKh); - LIB_FUNCTION("sVUkO0TTpM8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPKi); - LIB_FUNCTION("4zhc1xNSIno", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPKj); - LIB_FUNCTION("Gr+ih5ipgNk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPKl); - LIB_FUNCTION("0cLFYdr1AGc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPKm); - LIB_FUNCTION("0Xxtiar8Ceg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPKn); - LIB_FUNCTION("hsttk-IbL1o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPKo); - LIB_FUNCTION("zqOGToT2dH8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPKs); - LIB_FUNCTION("WY7615THqKM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPKt); - LIB_FUNCTION("0g+zCGZ7dgQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPKv); - LIB_FUNCTION("jfqTdKTGbBI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPKw); - LIB_FUNCTION("sOz2j1Lxl48", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPKx); - LIB_FUNCTION("qTgw+f54K34", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPKy); - LIB_FUNCTION("1+5ojo5J2xU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPl); - LIB_FUNCTION("SPiW3NTO8I0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPm); - LIB_FUNCTION("zUwmtNuJABI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPn); - LIB_FUNCTION("A9PfIjQCOUw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPo); - LIB_FUNCTION("nqpARwWZmjI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPs); - LIB_FUNCTION("KUW22XiVxvQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPt); - LIB_FUNCTION("OJPn-YR1bow", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPv); - LIB_FUNCTION("7gj0BXUP3dc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPw); - LIB_FUNCTION("9opd1ucwDqI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPx); - LIB_FUNCTION("a9KMkfXXUsE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIPy); - LIB_FUNCTION("j97CjKJNtQI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIs); - LIB_FUNCTION("U1CBVMD42HA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISi); - LIB_FUNCTION("iLSavTYoxx0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISo); - LIB_FUNCTION("H0aqk25W6BI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt10bad_typeid); - LIB_FUNCTION("2GWRrgT8o20", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt10ctype_base); - LIB_FUNCTION("IBtzswgYU3A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt10money_base); - LIB_FUNCTION("2e96MkSXo3U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt10moneypunctIcLb0EE); - LIB_FUNCTION("Ks2FIQJ2eDc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt10moneypunctIcLb1EE); - LIB_FUNCTION("EnMjfRlO5f0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt10moneypunctIwLb0EE); - LIB_FUNCTION("gBZnTFMk6N0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt10moneypunctIwLb1EE); - LIB_FUNCTION("n7iD5r9+4Eo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt11_Facet_base); - LIB_FUNCTION("x8LHSvl5N6I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt11logic_error); - LIB_FUNCTION("C0IYaaVSC1w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt11range_error); - LIB_FUNCTION("9-TRy4p-YTM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt11regex_error); - LIB_FUNCTION("XtP9KKwyK9Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt12bad_weak_ptr); - LIB_FUNCTION("dDIjj8NBxNA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt12codecvt_base); - LIB_FUNCTION("5BIbzIuDxTQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt12domain_error); - LIB_FUNCTION("DCY9coLQcVI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt12future_error); - LIB_FUNCTION("cxqzgvGm1GI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt12length_error); - LIB_FUNCTION("dKjhNUf9FBc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt12out_of_range); - LIB_FUNCTION("eDciML+moZs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt12system_error); - LIB_FUNCTION("Z7NWh8jD+Nw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt13bad_exception); - LIB_FUNCTION("STNAj1oxtpk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt13basic_filebufIcSt11char_traitsIcEE); - LIB_FUNCTION("37CMzzbbHn8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt13basic_filebufIwSt11char_traitsIwEE); - LIB_FUNCTION("WbBz4Oam3wM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt13messages_base); - LIB_FUNCTION("bLPn1gfqSW8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt13runtime_error); - LIB_FUNCTION("cbvW20xPgyc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt14error_category); - LIB_FUNCTION("lt0mLhNwjs0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt14overflow_error); - LIB_FUNCTION("oNRAB0Zs2+0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt15underflow_error); - LIB_FUNCTION("XZzWt0ygWdw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt16invalid_argument); - LIB_FUNCTION("FtPFMdiURuM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt16nested_exception); - LIB_FUNCTION("c33GAGjd7Is", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt17bad_function_call); - LIB_FUNCTION("8rd5FvOFk+w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt18bad_variant_access); - LIB_FUNCTION("lbLEAN+Y9iI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt20bad_array_new_length); - LIB_FUNCTION("3aZN32UTqqk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt22_Future_error_category); - LIB_FUNCTION("QLqM1r9nPow", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt22_System_error_category); - LIB_FUNCTION("+Le0VsFb9mE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt23_Generic_error_category); - LIB_FUNCTION("QQsnQ2bWkdM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt4_Pad); - LIB_FUNCTION("sIvK5xl5pzw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt5_IosbIiE); - LIB_FUNCTION("gZvNGjQsmf8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt5ctypeIcE); - LIB_FUNCTION("Fj7VTFzlI3k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt5ctypeIwE); - LIB_FUNCTION("weALTw0uesc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt7_MpunctIcE); - LIB_FUNCTION("DaYYQBc+SY8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt7_MpunctIwE); - LIB_FUNCTION("Cs3DBACRSY8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt7codecvtIcc9_MbstatetE); - LIB_FUNCTION("+TtUFzALoDc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt7codecvtIDic9_MbstatetE); - LIB_FUNCTION("v1WebHtIa24", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt7codecvtIDsc9_MbstatetE); - LIB_FUNCTION("hbU5HOTy1HM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt7codecvtIwc9_MbstatetE); - LIB_FUNCTION("fvgYbBEhXnc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt7collateIcE); - LIB_FUNCTION("pphEhnnuXKA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt7collateIwE); - LIB_FUNCTION("qOD-ksTkE08", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt8bad_cast); - LIB_FUNCTION("BJCgW9-OxLA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt8ios_base); - LIB_FUNCTION("UFsKD1fd1-w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt8messagesIcE); - LIB_FUNCTION("007PjrBCaUM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt8messagesIwE); - LIB_FUNCTION("ddLNBT9ks2I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt8numpunctIcE); - LIB_FUNCTION("A2TTRMAe6Sw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt8numpunctIwE); - LIB_FUNCTION("DwH3gdbYfZo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt9bad_alloc); - LIB_FUNCTION("7f4Nl2VS0gw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt9basic_iosIcSt11char_traitsIcEE); - LIB_FUNCTION("RjWhdj0ztTs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt9basic_iosIwSt11char_traitsIwEE); - LIB_FUNCTION("n2kx+OmFUis", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt9exception); - LIB_FUNCTION("CVcmmf8VL40", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt9time_base); - LIB_FUNCTION("xX6s+z0q6oo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt9type_info); - LIB_FUNCTION("Qd6zUdRhrhs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIt); - LIB_FUNCTION("JrUnjJ-PCTg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIv); - LIB_FUNCTION("qUxH+Damft4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIw); - LIB_FUNCTION("8Ijx3Srynh0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIx); - LIB_FUNCTION("KBBVmt8Td7c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTIy); - LIB_FUNCTION("iOLTktXe6a0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSa); - LIB_FUNCTION("M86y4bmx+WA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSb); - LIB_FUNCTION("zGpCWBtVC0A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSc); - LIB_FUNCTION("pMQUQSfX6ZE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSd); - LIB_FUNCTION("DghzFjzLqaE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSDi); - LIB_FUNCTION("FUvnVyCDhjg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSDn); - LIB_FUNCTION("Z7+siBC690w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSDs); - LIB_FUNCTION("KNgcEteI72I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSe); - LIB_FUNCTION("aFMVMBzO5jk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSf); - LIB_FUNCTION("BNC7IeJelZ0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSh); - LIB_FUNCTION("papHVcWkO5A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSi); - LIB_FUNCTION("1nylaCTiH08", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSj); - LIB_FUNCTION("k9kErpz2Sv8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSl); - LIB_FUNCTION("OzMC6yz6Row", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSm); - LIB_FUNCTION("au+YxKwehQM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSN10__cxxabiv116__enum_type_infoE); - LIB_FUNCTION("6BYT26CFh58", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSN10__cxxabiv117__array_type_infoE); - LIB_FUNCTION("8Vs1AjNm2mE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSN10__cxxabiv117__class_type_infoE); - LIB_FUNCTION("bPUMNZBqRqQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSN10__cxxabiv117__pbase_type_infoE); - LIB_FUNCTION("UVft3+rc06o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSN10__cxxabiv119__pointer_type_infoE); - LIB_FUNCTION("4ZXlZy7iRWI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSN10__cxxabiv120__function_type_infoE); - LIB_FUNCTION("AQlqO860Ztc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSN10__cxxabiv120__si_class_type_infoE); - LIB_FUNCTION("I1Ru2fZJDoE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSN10__cxxabiv121__vmi_class_type_infoE); - LIB_FUNCTION("6WYrZgAyjuE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSN10__cxxabiv123__fundamental_type_infoE); - LIB_FUNCTION("K+w0ofCSsAY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSN10__cxxabiv129__pointer_to_member_type_infoE); - LIB_FUNCTION("y-bbIiLALd4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSN6Dinkum7threads10lock_errorE); - LIB_FUNCTION("hmHH6DsLWgA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSN6Dinkum7threads21thread_resource_errorE); - LIB_FUNCTION("RVDooP5gZ4s", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSNSt6locale5facetE); - LIB_FUNCTION("JjTc4SCuILE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSNSt6locale7_LocimpE); - LIB_FUNCTION("C-3N+mEQli4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSNSt8ios_base7failureE); - LIB_FUNCTION("p07Yvdjjoo4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPa); - LIB_FUNCTION("ickyvjtMLm0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPb); - LIB_FUNCTION("jJtoPFrxG-I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPc); - LIB_FUNCTION("dIxG0L1esAI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPd); - LIB_FUNCTION("TSMc8vgtvHI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPDi); - LIB_FUNCTION("cj+ge8YLU7s", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPDn); - LIB_FUNCTION("mQCm5NmJORg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPDs); - LIB_FUNCTION("N84qS6rJuGI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPe); - LIB_FUNCTION("DN0xDLRXD2Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPf); - LIB_FUNCTION("HHVZLHmCfI4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPh); - LIB_FUNCTION("g8phA3duRm8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPi); - LIB_FUNCTION("bEbjy6yceWo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPj); - LIB_FUNCTION("dSifrMdPVQ4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPKa); - LIB_FUNCTION("qSiIrmgy1D8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPKb); - LIB_FUNCTION("wm9QKozFM+s", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPKc); - LIB_FUNCTION("-7c7thUsi1c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPKd); - LIB_FUNCTION("lFKA8eMU5PA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPKDi); - LIB_FUNCTION("2veyNsXFZuw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPKDn); - LIB_FUNCTION("qQ4c52GZlYw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPKDs); - LIB_FUNCTION("8Ce6O0B-KpA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPKe); - LIB_FUNCTION("emnRy3TNxFk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPKf); - LIB_FUNCTION("thDTXTikSmc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPKh); - LIB_FUNCTION("3Fd+8Pk6fgE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPKi); - LIB_FUNCTION("6azovDgjxt0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPKj); - LIB_FUNCTION("QdPk9cbJrOY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPKl); - LIB_FUNCTION("ER8-AFoFDfM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPKm); - LIB_FUNCTION("5rD2lCo4688", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPKs); - LIB_FUNCTION("iWMhoHS8gqk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPKt); - LIB_FUNCTION("3op2--wf660", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPKv); - LIB_FUNCTION("h64u7Gu3-TM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPKw); - LIB_FUNCTION("3THnS7v0D+M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPKx); - LIB_FUNCTION("h+xQETZ+6Yo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPKy); - LIB_FUNCTION("6cfcRTPD2zU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPl); - LIB_FUNCTION("OXkzGA9WqVw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPm); - LIB_FUNCTION("6XcQYYO2YMY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPs); - LIB_FUNCTION("8OSy0MMQ7eI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPt); - LIB_FUNCTION("s1b2SRBzSAY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPv); - LIB_FUNCTION("4r--aFJyPpI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPw); - LIB_FUNCTION("pc4-Lqosxgk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPx); - LIB_FUNCTION("VJL9W+nOv1U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSPy); - LIB_FUNCTION("VenLJSDuDXY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSs); - LIB_FUNCTION("46haDPRVtPo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSi); - LIB_FUNCTION("RgJjmluR+QA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSo); - LIB_FUNCTION("ALcclvT4W3Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt10bad_typeid); - LIB_FUNCTION("idsapmYZ49w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt10ctype_base); - LIB_FUNCTION("VxObo0uiafo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt10money_base); - LIB_FUNCTION("h+iBEkE50Zs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt10moneypunctIcLb0EE); - LIB_FUNCTION("o4DiZqXId90", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt10moneypunctIcLb1EE); - LIB_FUNCTION("MxGclWMtl4g", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt10moneypunctIwLb0EE); - LIB_FUNCTION("J+hjiBreZr4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt10moneypunctIwLb1EE); - LIB_FUNCTION("FAah-AY8+vY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt11_Facet_base); - LIB_FUNCTION("VNHXByo1yuY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt11logic_error); - LIB_FUNCTION("msxwgUAPy-Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt11range_error); - LIB_FUNCTION("UG6HJeH5GNI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt11regex_error); - LIB_FUNCTION("P7l9+yBL5VU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt12bad_weak_ptr); - LIB_FUNCTION("NXKsxT-x76M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt12codecvt_base); - LIB_FUNCTION("2ud1bFeR0h8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt12domain_error); - LIB_FUNCTION("YeBP0Rja7vc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt12future_error); - LIB_FUNCTION("zEhcQGEiPik", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt12length_error); - LIB_FUNCTION("eNW5jsFxS6k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt12out_of_range); - LIB_FUNCTION("XRxuwvN++2w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt12system_error); - LIB_FUNCTION("G8z7rz17xYM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt13bad_exception); - LIB_FUNCTION("WYWf+rJuDVU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt13basic_filebufIcSt11char_traitsIcEE); - LIB_FUNCTION("coVkgLzNtaw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt13basic_filebufIwSt11char_traitsIwEE); - LIB_FUNCTION("N0EHkukBz6Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt13messages_base); - LIB_FUNCTION("CX3WC8qekJE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt13runtime_error); - LIB_FUNCTION("u5zp3yXW5wA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt14error_category); - LIB_FUNCTION("iy1lPjADRUs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt14overflow_error); - LIB_FUNCTION("Uea1kfRJ7Oc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt15underflow_error); - LIB_FUNCTION("KJutwrVUFUo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt16invalid_argument); - LIB_FUNCTION("S8kp05fMCqU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt16nested_exception); - LIB_FUNCTION("ql6hz7ZOZTs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt17bad_function_call); - LIB_FUNCTION("ObdBkrZylOg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt18bad_variant_access); - LIB_FUNCTION("hBvqSQD5yNk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt20bad_array_new_length); - LIB_FUNCTION("ouo2obDE6yU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt22_Future_error_category); - LIB_FUNCTION("iwIUndpU5ZI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt22_System_error_category); - LIB_FUNCTION("88Fre+wfuT0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt23_Generic_error_category); - LIB_FUNCTION("qR6GVq1IplU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt4_Pad); - LIB_FUNCTION("uO6YxonQkJI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt5_IosbIiE); - LIB_FUNCTION("jUQ+FlOMEHk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt5ctypeIcE); - LIB_FUNCTION("1jUJO+TZm5k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt5ctypeIwE); - LIB_FUNCTION("LfMY9H6d5mI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt7_MpunctIcE); - LIB_FUNCTION("mh9Jro0tcjg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt7_MpunctIwE); - LIB_FUNCTION("rf0BfDQG1KU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt7codecvtIcc9_MbstatetE); - LIB_FUNCTION("Tt3ZSp9XD4E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt7codecvtIDic9_MbstatetE); - LIB_FUNCTION("9XL3Tlgx6lc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt7codecvtIDsc9_MbstatetE); - LIB_FUNCTION("YrYO5bTIPqI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt7codecvtIwc9_MbstatetE); - LIB_FUNCTION("wElyE0OmoRw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt7collateIcE); - LIB_FUNCTION("BdfPxmlM9bs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt7collateIwE); - LIB_FUNCTION("--fMWwCvo+c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt8bad_cast); - LIB_FUNCTION("Nr+GiZ0tGAk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt8ios_base); - LIB_FUNCTION("iUhx-JN27uI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt8messagesIcE); - LIB_FUNCTION("5ViZYJRew6g", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt8messagesIwE); - LIB_FUNCTION("2ZqL1jnL8so", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt8numpunctIcE); - LIB_FUNCTION("xuEUMolGMwU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt8numpunctIwE); - LIB_FUNCTION("22g2xONdXV4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt9bad_alloc); - LIB_FUNCTION("TuKJRIKcceA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt9basic_iosIcSt11char_traitsIcEE); - LIB_FUNCTION("wYWYC8xNFOI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt9basic_iosIwSt11char_traitsIwEE); - LIB_FUNCTION("H61hE9pLBmU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt9exception); - LIB_FUNCTION("5jX3QET-Jhw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt9time_base); - LIB_FUNCTION("WG7lrmFxyKY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt9type_info); - LIB_FUNCTION("f5zmgYKSpIY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSt); - LIB_FUNCTION("mI0SR5s7kxE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSv); - LIB_FUNCTION("UXS8VgAnIP4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSw); - LIB_FUNCTION("N8KLCZc3Y1w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSx); - LIB_FUNCTION("kfuINXyHayQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSy); - LIB_FUNCTION("0bGGr4zLE3w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTv0_n24_NSiD0Ev); - LIB_FUNCTION("+Uuj++A+I14", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTv0_n24_NSiD1Ev); - LIB_FUNCTION("QJJ-4Dgm8YQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTv0_n24_NSoD0Ev); - LIB_FUNCTION("kvqg376KsJo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTv0_n24_NSoD1Ev); - LIB_FUNCTION("fjni7nkqJ4M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVN10__cxxabiv116__enum_type_infoE); - LIB_FUNCTION("aMQhMoYipk4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVN10__cxxabiv117__array_type_infoE); - LIB_FUNCTION("byV+FWlAnB4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVN10__cxxabiv117__class_type_infoE); - LIB_FUNCTION("7EirbE7st4E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVN10__cxxabiv117__pbase_type_infoE); - LIB_FUNCTION("aeHxLWwq0gQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVN10__cxxabiv119__pointer_type_infoE); - LIB_FUNCTION("CSEjkTYt5dw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVN10__cxxabiv120__function_type_infoE); - LIB_FUNCTION("pZ9WXcClPO8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVN10__cxxabiv120__si_class_type_infoE); - LIB_FUNCTION("9ByRMdo7ywg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVN10__cxxabiv121__vmi_class_type_infoE); - LIB_FUNCTION("G4XM-SS1wxE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVN10__cxxabiv123__fundamental_type_infoE); - LIB_FUNCTION("2H51caHZU0Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVN10__cxxabiv129__pointer_to_member_type_infoE); - LIB_FUNCTION("WJU9B1OjRbA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVN6Dinkum7threads10lock_errorE); - LIB_FUNCTION("ouXHPXjKUL4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVN6Dinkum7threads21thread_resource_errorE); - LIB_FUNCTION("QGkJzBs3WmU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVNSt6locale7_LocimpE); - LIB_FUNCTION("yLE5H3058Ao", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVNSt8ios_base7failureE); - LIB_FUNCTION("+8jItptyeQQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSi); - LIB_FUNCTION("qjyK90UVVCM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSo); - LIB_FUNCTION("jRLwj8TLcQY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt10bad_typeid); - LIB_FUNCTION("XbFyGCk3G2s", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt10moneypunctIcLb0EE); - LIB_FUNCTION("MfyPz2J5E0I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt10moneypunctIcLb1EE); - LIB_FUNCTION("RfpPDUaxVJM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt10moneypunctIwLb0EE); - LIB_FUNCTION("APrAh-3-ICg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt10moneypunctIwLb1EE); - LIB_FUNCTION("udTM6Nxx-Ng", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt11logic_error); - LIB_FUNCTION("RbzWN8X21hY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt11range_error); - LIB_FUNCTION("c-EfVOIbo8M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt11regex_error); - LIB_FUNCTION("apHKv46QaCw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt12bad_weak_ptr); - LIB_FUNCTION("oAidKrxuUv0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt12domain_error); - LIB_FUNCTION("6-LMlTS1nno", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt12future_error); - LIB_FUNCTION("cqvea9uWpvQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt12length_error); - LIB_FUNCTION("n+aUKkC-3sI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt12out_of_range); - LIB_FUNCTION("Bq8m04PN1zw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt12system_error); - LIB_FUNCTION("Gvp-ypl9t5E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt13bad_exception); - LIB_FUNCTION("rSADYzp-RTU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt13basic_filebufIcSt11char_traitsIcEE); - LIB_FUNCTION("Tx5Y+BQJrzs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt13basic_filebufIwSt11char_traitsIwEE); - LIB_FUNCTION("-L+-8F0+gBc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt13runtime_error); - LIB_FUNCTION("lF66NEAqanc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt14error_category); - LIB_FUNCTION("Azw9C8cy7FY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt14overflow_error); - LIB_FUNCTION("ZrFcJ-Ab0vw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt15underflow_error); - LIB_FUNCTION("keXoyW-rV-0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt16invalid_argument); - LIB_FUNCTION("j6qwOi2Nb7k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt16nested_exception); - LIB_FUNCTION("wuOrunkpIrU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt17bad_function_call); - LIB_FUNCTION("AZGKZIVok6U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt18bad_variant_access); - LIB_FUNCTION("Z+vcX3rnECg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt20bad_array_new_length); - LIB_FUNCTION("YHfG3-K23CY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt22_Future_error_category); - LIB_FUNCTION("qTwVlzGoViY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt22_System_error_category); - LIB_FUNCTION("UuVHsmfVOHU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt23_Generic_error_category); - LIB_FUNCTION("CRoMIoZkYhU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt4_Pad); - LIB_FUNCTION("GKWcAz6-G7k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt5ctypeIcE); - LIB_FUNCTION("qdHsu+gIxRo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt5ctypeIwE); - LIB_FUNCTION("6gAhNHCNHxY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt7_MpunctIcE); - LIB_FUNCTION("+hlZqs-XpUM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt7_MpunctIwE); - LIB_FUNCTION("aK1Ymf-NhAs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt7codecvtIcc9_MbstatetE); - LIB_FUNCTION("9H2BStEAAMg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt7codecvtIDic9_MbstatetE); - LIB_FUNCTION("jlNI3SSF41o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt7codecvtIDsc9_MbstatetE); - LIB_FUNCTION("H-TDszhsYuY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt7codecvtIwc9_MbstatetE); - LIB_FUNCTION("ruZtIwbCFjk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt7collateIcE); - LIB_FUNCTION("rZwUkaQ02J4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt7collateIwE); - LIB_FUNCTION("tVHE+C8vGXk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt8bad_cast); - LIB_FUNCTION("AJsqpbcCiwY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt8ios_base); - LIB_FUNCTION("FnEnECMJGag", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt8messagesIcE); - LIB_FUNCTION("2FezsYwelgk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt8messagesIwE); - LIB_FUNCTION("lJnP-cn0cvQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt8numpunctIcE); - LIB_FUNCTION("Gtsl8PUl40U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt8numpunctIwE); - LIB_FUNCTION("EMNG6cHitlQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt9bad_alloc); - LIB_FUNCTION("dCzeFfg9WWI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt9exception); - LIB_FUNCTION("749AEdSd4Go", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt9type_info); - LIB_FUNCTION( - "jfq92K8E1Vc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZZNSt13basic_filebufIcSt11char_traitsIcEE5_InitEP7__sFILENS2_7_InitflEE7_Stinit); - LIB_FUNCTION( - "AoZRvn-vaq4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZZNSt13basic_filebufIwSt11char_traitsIwEE5_InitEP7__sFILENS2_7_InitflEE7_Stinit); - LIB_FUNCTION("L1SBTkC+Cvw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_abort); - LIB_FUNCTION("SmYrO79NzeI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_abort_handler_s); - LIB_FUNCTION("DQXJraCc1rA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_alarm); - LIB_FUNCTION("2Btkg8k24Zg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_aligned_alloc); - LIB_FUNCTION("jT3xiGpA3B4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_asctime); - LIB_FUNCTION("qPe7-h5Jnuc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_asctime_s); - LIB_FUNCTION("HC8vbJStYVY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_at_quick_exit); - LIB_FUNCTION("8G2LB+A3rzg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_atexit); - LIB_FUNCTION("SRI6S9B+-a4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_atof); - LIB_FUNCTION("fPxypibz2MY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_atoi); - LIB_FUNCTION("+my9jdHCMIQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_atol); - LIB_FUNCTION("fLcU5G6Qrjs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_atoll); - LIB_FUNCTION("rg5JEBlKCuo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_basename); - LIB_FUNCTION("vsK6LzRtRLI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_basename_r); - LIB_FUNCTION("5TjaJwkLWxE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_bcmp); - LIB_FUNCTION("RMo7j0iTPfA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_bcopy); - LIB_FUNCTION("NesIgTmfF0Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_bsearch); - LIB_FUNCTION("hzX87C+zDAY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_bsearch_s); - LIB_FUNCTION("LEvm25Sxi7I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_btowc); - LIB_FUNCTION("9oiX1kyeedA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_bzero); - LIB_FUNCTION("EOLQfNZ9HpE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_c16rtomb); - LIB_FUNCTION("MzsycG6RYto", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_c32rtomb); - LIB_FUNCTION("2X5agFjKxMc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_calloc); - LIB_FUNCTION("5ZkEP3Rq7As", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_cbrt); - LIB_FUNCTION("GlelR9EEeck", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_cbrtf); - LIB_FUNCTION("lO01m-JcDqM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_cbrtl); - LIB_FUNCTION("St9nbxSoezk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_clearerr); - LIB_FUNCTION("cYNk9M+7YkY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_clearerr_unlocked); - LIB_FUNCTION("QZP6I9ZZxpE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_clock); - LIB_FUNCTION("n8onIBR4Qdk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_clock_1700); - LIB_FUNCTION("XepdqehVYe4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_closedir); - LIB_FUNCTION("BEFy1ZFv8Fw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_copysign); - LIB_FUNCTION("x-04iOzl1xs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_copysignf); - LIB_FUNCTION("j84nSG4V0B0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_copysignl); - LIB_FUNCTION("0uAUs3hYuG4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_ctime); - LIB_FUNCTION("2UFh+YKfuzk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_ctime_s); - LIB_FUNCTION("Wn6I3wVATUE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_daemon); - LIB_FUNCTION("tOicWgmk4ZI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_daylight); - LIB_FUNCTION("fqLrWSWcGHw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_devname); - LIB_FUNCTION("BIALMFTZ75I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_devname_r); - LIB_FUNCTION("-VVn74ZyhEs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_difftime); - LIB_FUNCTION("E4wZaG1zSFc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_dirname); - LIB_FUNCTION("2gbcltk3swE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_div); - LIB_FUNCTION("WIg11rA+MRY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_drand48); - LIB_FUNCTION("5OpjqFs8yv8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_drem); - LIB_FUNCTION("Gt5RT417EGA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_dremf); - LIB_FUNCTION("Fncgcl1tnXg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_erand48); - LIB_FUNCTION("oXgaqGVnW5o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_erf); - LIB_FUNCTION("arIKLlen2sg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_erfc); - LIB_FUNCTION("IvF98yl5u4s", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_erfcf); - LIB_FUNCTION("f2YbMj0gBf8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_erfcl); - LIB_FUNCTION("RePA3bDBJqo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_erff); - LIB_FUNCTION("fNH4tsl7rB8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_erfl); - LIB_FUNCTION("aeeMZ0XrNsY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_err); - LIB_FUNCTION("9aODPZAKOmA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_err_set_exit); - LIB_FUNCTION("FihG2CudUNs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_err_set_file); - LIB_FUNCTION("L-jLYJFP9Mc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_errc); - LIB_FUNCTION("t8sFCgJAClE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_errx); - LIB_FUNCTION("uMei1W9uyNo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_exit); - LIB_FUNCTION("uodLYyUip20", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fclose); - LIB_FUNCTION("cBSM-YB7JVY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fcloseall); - LIB_FUNCTION("Zs4p6RemDxM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_fdim); - LIB_FUNCTION("yb9iUBPkSS0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fdimf); - LIB_FUNCTION("IMt+UO5YoQI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fdiml); - LIB_FUNCTION("qdlHjTa9hQ4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fdopen); - LIB_FUNCTION("j+XjoRSIvwU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fdopendir); - LIB_FUNCTION("cqt8emEH3kQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_feclearexcept); - LIB_FUNCTION("y4WlO8qzHqI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fedisableexcept); - LIB_FUNCTION("utLW7uXm3Ss", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_feenableexcept); - LIB_FUNCTION("psx0YiAKm7k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fegetenv); - LIB_FUNCTION("VtRkfsD292M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fegetexcept); - LIB_FUNCTION("myQDQapYJdw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fegetexceptflag); - LIB_FUNCTION("AeZTCCm1Qqc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fegetround); - LIB_FUNCTION("P38JvXuK-uE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fegettrapenable); - LIB_FUNCTION("1kduKXMqx7k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_feholdexcept); - LIB_FUNCTION("LxcEU+ICu8U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_feof); - LIB_FUNCTION("NuydofHcR1w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_feof_unlocked); - LIB_FUNCTION("NIfFNcyeCTo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_feraiseexcept); - LIB_FUNCTION("AHxyhN96dy4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_ferror); - LIB_FUNCTION("yxbGzBQC5xA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_ferror_unlocked); - LIB_FUNCTION("Q-bLp+b-RVY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fesetenv); - LIB_FUNCTION("FuxaUZsWTok", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fesetexceptflag); - LIB_FUNCTION("hAJZ7-FBpEQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fesetround); - LIB_FUNCTION("u5a7Ofymqlg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fesettrapenable); - LIB_FUNCTION("pVjisbvtQKU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fetestexcept); - LIB_FUNCTION("YXQ4gXamCrY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_feupdateenv); - LIB_FUNCTION("MUjC4lbHrK4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fflush); - LIB_FUNCTION("AEuF3F2f8TA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fgetc); - LIB_FUNCTION("KKgUiHSYGRE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fgetln); - LIB_FUNCTION("SHlt7EhOtqA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fgetpos); - LIB_FUNCTION("KdP-nULpuGw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fgets); - LIB_FUNCTION("bzbQ5zQ2Y3g", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fgetwc); - LIB_FUNCTION("F81hKe2k2tg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fgetws); - LIB_FUNCTION("Fm-dmyywH9Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fileno); - LIB_FUNCTION("kxm0z4T5mMI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fileno_unlocked); - LIB_FUNCTION("TJFQFm+W3wg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_finite); - LIB_FUNCTION("2nqzJ87zsB8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_finitef); - LIB_FUNCTION("hGljHZEfF0U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_flockfile); - LIB_FUNCTION("G3qjOUu7KnM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_flsl); - LIB_FUNCTION("YKbL5KR6RDI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_fma); - LIB_FUNCTION("RpTR+VY15ss", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_fmaf); - LIB_FUNCTION("uMeLdbwheag", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_fmal); - LIB_FUNCTION("xeYO4u7uyJ0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fopen); - LIB_FUNCTION("NL836gOLANs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fopen_s); - LIB_FUNCTION("y1Ch2nXs4IQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fpurge); - LIB_FUNCTION("aZK8lNei-Qw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fputc); - LIB_FUNCTION("QrZZdJ8XsX0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fputs); - LIB_FUNCTION("1QJWxoB6pCo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fputwc); - LIB_FUNCTION("-7nRJFXMxnM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fputws); - LIB_FUNCTION("lbB+UlZqVG0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fread); - LIB_FUNCTION("N2OjwJJGjeQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_freeifaddrs); - LIB_FUNCTION("gkWgn0p1AfU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_freopen); - LIB_FUNCTION("NdvAi34vV3g", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_freopen_s); - LIB_FUNCTION("rQFVBXp-Cxg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fseek); - LIB_FUNCTION("pkYiKw09PRA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fseeko); - LIB_FUNCTION("7PkSz+qnTto", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fsetpos); - LIB_FUNCTION("6IM2up2+a-A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fstatvfs); - LIB_FUNCTION("Qazy8LmXTvw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_ftell); - LIB_FUNCTION("5qP1iVQkdck", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_ftello); - LIB_FUNCTION("h05OHOMZNMw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_ftrylockfile); - LIB_FUNCTION("vAc9y8UQ31o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_funlockfile); - LIB_FUNCTION("w6Aq68dFoP4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fwide); - LIB_FUNCTION("MpxhMh8QFro", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fwrite); - LIB_FUNCTION("BD-xV2fLe2M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_gamma); - LIB_FUNCTION("q+AdV-EHiKc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_gamma_r); - LIB_FUNCTION("sZ93QMbGRJY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_gammaf); - LIB_FUNCTION("E3RYvWbYLgk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_gammaf_r); - LIB_FUNCTION("8Q60JLJ6Rv4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_getc); - LIB_FUNCTION("5tM252Rs2fc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_getc_unlocked); - LIB_FUNCTION("L3XZiuKqZUM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_getchar); - LIB_FUNCTION("H0pVDvSuAVQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_getchar_unlocked); - LIB_FUNCTION("DYivN1nO-JQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_getcwd); - LIB_FUNCTION("smbQukfxYJM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_getenv); - LIB_FUNCTION("-nvxBWa0iDs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_gethostname); - LIB_FUNCTION("j-gWL6wDros", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_getifaddrs); - LIB_FUNCTION("VUtibKJCt1o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_getopt); - LIB_FUNCTION("8VVXJxB5nlk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_getopt_long); - LIB_FUNCTION("oths6jEyBqo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_getopt_long_only); - LIB_FUNCTION("7Psx1DlAyE4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_getprogname); - LIB_FUNCTION("Ok+SYcoL19Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_gets); - LIB_FUNCTION("lb+HLLZkbbw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_gets_s); - LIB_FUNCTION("AoLA2MRWJvc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_getw); - LIB_FUNCTION("CosTELN5ETk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_getwc); - LIB_FUNCTION("n2mWDsholo8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_getwchar); - LIB_FUNCTION("1mecP7RgI2A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_gmtime); - LIB_FUNCTION("5bBacGLyLOs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_gmtime_s); - LIB_FUNCTION("YFoOw5GkkK0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_hypot); - LIB_FUNCTION("2HzgScoQq9o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_hypot3); - LIB_FUNCTION("xlRcc7Rcqgo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_hypot3f); - LIB_FUNCTION("aDmly36AAgI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_hypot3l); - LIB_FUNCTION("iz2shAGFIxc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_hypotf); - LIB_FUNCTION("jJC7x18ge8k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_hypotl); - LIB_FUNCTION("ODGONXcSmz4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_ignore_handler_s); - LIB_FUNCTION("t3RFHn0bTPg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_index); - LIB_FUNCTION("sBBuXmJ5Kjk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_inet_addr); - LIB_FUNCTION("ISTLytNGT0c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_inet_aton); - LIB_FUNCTION("7iTp7O6VOXQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_inet_ntoa); - LIB_FUNCTION("i3E1Ywn4t+8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_inet_ntoa_r); - LIB_FUNCTION("IIUY-5hk-4k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_initstate); - LIB_FUNCTION("4uJJNi+C9wk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_isalnum); - LIB_FUNCTION("+xU0WKT8mDc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_isalpha); - LIB_FUNCTION("lhnrCOBiTGo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_isblank); - LIB_FUNCTION("akpGErA1zdg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_iscntrl); - LIB_FUNCTION("JWBr5N8zyNE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_isdigit); - LIB_FUNCTION("rrgxakQtvc0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_isgraph); - LIB_FUNCTION("eGkOpTojJl4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_isprint); - LIB_FUNCTION("I6Z-684E2C4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_ispunct); - LIB_FUNCTION("wazw2x2m3DQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_isspace); - LIB_FUNCTION("wDmL2EH0CBs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_iswalnum); - LIB_FUNCTION("D-qDARDb1aM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_iswalpha); - LIB_FUNCTION("p6DbM0OAHNo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_iswblank); - LIB_FUNCTION("6A+1YZ79qFk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_iswcntrl); - LIB_FUNCTION("45E7omS0vvc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_iswctype); - LIB_FUNCTION("n0kT+8Eeizs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_iswdigit); - LIB_FUNCTION("wjG0GyCyaP0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_iswgraph); - LIB_FUNCTION("Ok8KPy3nFls", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_iswlower); - LIB_FUNCTION("U7IhU4VEB-0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_iswprint); - LIB_FUNCTION("AEPvEZkaLsU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_iswpunct); - LIB_FUNCTION("vqtytrxgLMs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_iswspace); - LIB_FUNCTION("1QcrrL9UDRQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_iswupper); - LIB_FUNCTION("cjmSjRlnMAs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_iswxdigit); - LIB_FUNCTION("srzSVSbKn7M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_isxdigit); - LIB_FUNCTION("tcN0ngcXegg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_j0); - LIB_FUNCTION("RmE3aE8WHuY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_j0f); - LIB_FUNCTION("BNbWdC9Jg+4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_j1); - LIB_FUNCTION("uVXcivvVHzU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_j1f); - LIB_FUNCTION("QdE7Arjzxos", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_jn); - LIB_FUNCTION("M5KJmq-gKM8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_jnf); - LIB_FUNCTION("M7KmRg9CERk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_jrand48); - LIB_FUNCTION("xzZiQgReRGE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_labs); - LIB_FUNCTION("wTjDJ6In3Cg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_lcong48); - LIB_FUNCTION("JrwFIMzKNr0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_ldexp); - LIB_FUNCTION("kn0yiYeExgA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_ldexpf); - LIB_FUNCTION("aX8H2+BBlWE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_ldexpl); - LIB_FUNCTION("gfP0im5Z3g0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_ldiv); - LIB_FUNCTION("o-kMHRBvkbQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_lgamma); - LIB_FUNCTION("EjL+gY1G2lk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_lgamma_r); - LIB_FUNCTION("i-ifjh3SLBU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_lgammaf); - LIB_FUNCTION("RlGUiqyKf9I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_lgammaf_r); - LIB_FUNCTION("lPYpsOb9s-I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_lgammal); - LIB_FUNCTION("rHRr+131ATY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_llabs); - LIB_FUNCTION("iVhJZvAO2aQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_lldiv); - LIB_FUNCTION("-431A-YBAks", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_llrint); - LIB_FUNCTION("KPsQA0pis8o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_llrintf); - LIB_FUNCTION("6bRANWNYID0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_llrintl); - LIB_FUNCTION("w-BvXF4O6xo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_llround); - LIB_FUNCTION("eQhBFnTOp40", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_llroundf); - LIB_FUNCTION("wRs5S54zjm0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_llroundl); - LIB_FUNCTION("0hlfW1O4Aa4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_localeconv); - LIB_FUNCTION("efhK-YSUYYQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_localtime); - LIB_FUNCTION("fiiNDnNBKVY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_localtime_s); - LIB_FUNCTION("lKEN2IebgJ0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_longjmp); - LIB_FUNCTION("5IpoNfxu84U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_lrand48); - LIB_FUNCTION("VOKOgR7L-2Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_lrint); - LIB_FUNCTION("rcVv5ivMhY0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_lrintf); - LIB_FUNCTION("jp2e+RSrcow", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_lrintl); - LIB_FUNCTION("GipcbdDM5cI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_makecontext); - LIB_FUNCTION("hew0fReI2H0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_mblen); - LIB_FUNCTION("j6OnScWpu7k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_mbrlen); - LIB_FUNCTION("ogPDBoLmCcA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_mbrtoc16); - LIB_FUNCTION("TEd4egxRmdE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_mbrtoc32); - LIB_FUNCTION("qVHpv0PxouI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_mbrtowc); - LIB_FUNCTION("UbnVmck+o10", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_mbsinit); - LIB_FUNCTION("8hygs6D9KBY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_mbsrtowcs); - LIB_FUNCTION("1NFvAuzw8dA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_mbsrtowcs_s); - LIB_FUNCTION("VUzjXknPPBs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_mbstowcs); - LIB_FUNCTION("tdcAqgCS+uI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_mbstowcs_s); - LIB_FUNCTION("6eU9xX9oEdQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_mbtowc); - LIB_FUNCTION("HWEOv0+n7cU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_mergesort); - LIB_FUNCTION("n7AepwR0s34", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_mktime); - LIB_FUNCTION("0WMHDb5Dt94", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_modf); - LIB_FUNCTION("3+UPM-9E6xY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_modff); - LIB_FUNCTION("tG8pGyxdLEs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_modfl); - LIB_FUNCTION("k-l0Jth-Go8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_mrand48); - LIB_FUNCTION("cJLTwtKGXJk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_nearbyint); - LIB_FUNCTION("c+4r-T-tEIc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_nearbyintf); - LIB_FUNCTION("6n23e0gIJ9s", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_nearbyintl); - LIB_FUNCTION("ZT4ODD2Ts9o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_Need_sceLibcInternal); - LIB_FUNCTION("h+J60RRlfnk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_nextafter); - LIB_FUNCTION("3m2ro+Di+Ck", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_nextafterf); - LIB_FUNCTION("R0-hvihVoy0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_nextafterl); - LIB_FUNCTION("-Q6FYBO4sn0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_nexttoward); - LIB_FUNCTION("QaTrhMKUT18", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_nexttowardf); - LIB_FUNCTION("ryyn6-WJm6U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_nexttowardl); - LIB_FUNCTION("3wcYIMz8LUo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_nrand48); - LIB_FUNCTION("ay3uROQAc5A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_opendir); - LIB_FUNCTION("zG0BNJOZdm4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_optarg); - LIB_FUNCTION("yaFXXViLWPw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_opterr); - LIB_FUNCTION("zCnSJWp-Qj8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_optind); - LIB_FUNCTION("FwzVaZ8Vnus", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_optopt); - LIB_FUNCTION("CZNm+oNmB-I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_optreset); - LIB_FUNCTION("EMutwaQ34Jo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_perror); - LIB_FUNCTION("3Nr9caNHhyg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_posix_spawn); - LIB_FUNCTION("Heh4KJwyoX8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_posix_spawn_file_actions_addclose); - LIB_FUNCTION("LG6O0oW9bQU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_posix_spawn_file_actions_adddup2); - LIB_FUNCTION("Sj7y+JO5PcM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_posix_spawn_file_actions_addopen); - LIB_FUNCTION("Ud8CbISKRGM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_posix_spawn_file_actions_destroy); - LIB_FUNCTION("p--TkNVsXjA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_posix_spawn_file_actions_init); - LIB_FUNCTION("Hq9-2AMG+ks", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_posix_spawnattr_destroy); - LIB_FUNCTION("7BGUDQDJu-A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_posix_spawnattr_getflags); - LIB_FUNCTION("Q-GfRQNi66I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_posix_spawnattr_getpgroup); - LIB_FUNCTION("jbgqYhmVEGY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_posix_spawnattr_getschedparam); - LIB_FUNCTION("KUYSaO1qv0Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_posix_spawnattr_getschedpolicy); - LIB_FUNCTION("7pASQ1hhH00", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_posix_spawnattr_getsigdefault); - LIB_FUNCTION("wvqDod5pVZg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_posix_spawnattr_getsigmask); - LIB_FUNCTION("44hlATrd47U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_posix_spawnattr_init); - LIB_FUNCTION("UV4m0bznVtU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_posix_spawnattr_setflags); - LIB_FUNCTION("aPDKI3J8PqI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_posix_spawnattr_setpgroup); - LIB_FUNCTION("SFlW4kqPgU8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_posix_spawnattr_setschedparam); - LIB_FUNCTION("fBne7gcou0s", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_posix_spawnattr_setschedpolicy); - LIB_FUNCTION("Ani6e+T-y6Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_posix_spawnattr_setsigdefault); - LIB_FUNCTION("wCavZQ+m1PA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_posix_spawnattr_setsigmask); - LIB_FUNCTION("IUfBO5UIZNc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_posix_spawnp); - LIB_FUNCTION("tjuEJo1obls", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_psignal); - LIB_FUNCTION("tLB5+4TEOK0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_putc); - LIB_FUNCTION("H-QeERgWuTM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_putc_unlocked); - LIB_FUNCTION("m5wN+SwZOR4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_putchar); - LIB_FUNCTION("v95AEAzqm+0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_putchar_unlocked); - LIB_FUNCTION("t1ytXodWUH0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_putenv); - LIB_FUNCTION("YQ0navp+YIc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_puts); - LIB_FUNCTION("DwcWtj3tSPA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_putw); - LIB_FUNCTION("UZJnC81pUCw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_putwc); - LIB_FUNCTION("aW9KhGC4cOo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_putwchar); - LIB_FUNCTION("AEJdIVZTEmo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_qsort); - LIB_FUNCTION("G7yOZJObV+4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_qsort_s); - LIB_FUNCTION("qdGFBoLVNKI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_quick_exit); - LIB_FUNCTION("cpCOXWMgha0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_rand); - LIB_FUNCTION("dW3xsu3EgFI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_rand_r); - LIB_FUNCTION("w1o05aHJT4c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_random); - LIB_FUNCTION("lybyyKtP54c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_readdir); - LIB_FUNCTION("J0kng1yac3M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_readdir_r); - LIB_FUNCTION("vhtcIgZG-Lk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_realpath); - LIB_FUNCTION("eS+MVq+Lltw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_remainderf); - LIB_FUNCTION("MvdnffYU3jg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_remainderl); - LIB_FUNCTION("MZO7FXyAPU8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_remove); - LIB_FUNCTION("XI0YDgH8x1c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_remquo); - LIB_FUNCTION("AqpZU2Njrmk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_remquof); - LIB_FUNCTION("Fwow0yyW0nI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_remquol); - LIB_FUNCTION("3QIPIh-GDjw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_rewind); - LIB_FUNCTION("kCKHi6JYtmM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_rewinddir); - LIB_FUNCTION("CWiqHSTO5hk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_rindex); - LIB_FUNCTION("LxGIYYKwKYc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_rint); - LIB_FUNCTION("q5WzucyVSkM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_rintf); - LIB_FUNCTION("Yy5yMiZHBIc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_rintl); - LIB_FUNCTION("nlaojL9hDtA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_round); - LIB_FUNCTION("DDHG1a6+3q0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_roundf); - LIB_FUNCTION("8F1ctQaP0uk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_roundl); - LIB_FUNCTION("HI4N2S6ZWpE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_scalb); - LIB_FUNCTION("rjak2Xm+4mE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_scalbf); - LIB_FUNCTION("7Jp3g-qTgZw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_scalbln); - LIB_FUNCTION("S6LHwvK4h8c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_scalblnf); - LIB_FUNCTION("NFxDIuqfmgw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_scalblnl); - LIB_FUNCTION("KGKBeVcqJjc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_scalbn); - LIB_FUNCTION("9fs1btfLoUs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_scalbnf); - LIB_FUNCTION("l3fh3QW0Tss", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_scalbnl); - LIB_FUNCTION("aqqpmI7-1j0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_sceLibcDebugOut); - LIB_FUNCTION("Sj3fKG7MwMk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_sceLibcHeapGetAddressRanges); - LIB_FUNCTION("HFtbbWvBO+U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_sceLibcHeapMutexCalloc); - LIB_FUNCTION("jJKMkpqQr7I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_sceLibcHeapMutexFree); - LIB_FUNCTION("4iOzclpv1M0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_sceLibcHeapSetAddressRangeCallback); - LIB_FUNCTION("M6qiY0nhk54", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_sceLibcHeapSetTraceMarker); - LIB_FUNCTION("RlhJVAYLSqU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_sceLibcHeapUnsetTraceMarker); - LIB_FUNCTION("YrL-1y6vfyo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_sceLibcInternalMemoryGetWakeAddr); - LIB_FUNCTION("h8jq9ee4h5c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_sceLibcInternalMemoryMutexEnable); - LIB_FUNCTION("LXqt47GvaRA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_sceLibcInternalSetMallocCallback); - LIB_FUNCTION("HmgKoOWpUc8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_sceLibcOnce); - LIB_FUNCTION("2g5wco7AAHg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_seed48); - LIB_FUNCTION("7WoI+lVawlc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_seekdir); - LIB_FUNCTION("ENLfKJEZTjE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_set_constraint_handler_s); - LIB_FUNCTION("vZMcAfsA31I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_setbuf); - LIB_FUNCTION("M4YYbSFfJ8g", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_setenv); - LIB_FUNCTION("gNQ1V2vfXDE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_setjmp); - LIB_FUNCTION("PtsB1Q9wsFA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_setlocale); - LIB_FUNCTION("woQta4WRpk0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_setstate); - LIB_FUNCTION("QMFyLoqNxIg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_setvbuf); - LIB_FUNCTION("Bm3k7JQMN5w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_sigblock); - LIB_FUNCTION("TsrS8nGDQok", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_siginterrupt); - LIB_FUNCTION("SQGxZCv3aYk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_signalcontext); - LIB_FUNCTION("5gOOC0kzW0c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_signgam); - LIB_FUNCTION("Az3tTyAy380", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_significand); - LIB_FUNCTION("L2YaHYQdmHw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_significandf); - LIB_FUNCTION("cJvOg1KV8uc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_sigsetmask); - LIB_FUNCTION("yhxKO9LYc8A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_sigvec); - LIB_FUNCTION("+KSnjvZ0NMc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_srand48); - LIB_FUNCTION("sPC7XE6hfFY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_srandom); - LIB_FUNCTION("a2MOZf++Wjg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_srandomdev); - LIB_FUNCTION("ayTeobcoGj8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_statvfs); - LIB_FUNCTION("+CUrIMpVuaM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_stderr); - LIB_FUNCTION("omQZ36ESr98", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_stdin); - LIB_FUNCTION("3eGXiXpFLt0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_stdout); - LIB_FUNCTION("ZSnX-xZBGCg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_stpcpy); - LIB_FUNCTION("ZD+Dp+-LsGg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_sys_nsig); - LIB_FUNCTION("yCdGspbNHZ8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_sys_siglist); - LIB_FUNCTION("Y16fu+FC+3Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_sys_signame); - LIB_FUNCTION("UNS2V4S097M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_syslog); - LIB_FUNCTION("RZA5RZawY04", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_telldir); - LIB_FUNCTION("b7J3q7-UABY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_tgamma); - LIB_FUNCTION("B2ZbqV9geCM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_tgammaf); - LIB_FUNCTION("FU03r76UxaU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_tgammal); - LIB_FUNCTION("wLlFkwG9UcQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_time); - LIB_FUNCTION("-Oet9AHzwtU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_timezone); - LIB_FUNCTION("PqF+kHW-2WQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_tolower); - LIB_FUNCTION("TYE4irxSmko", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_toupper); - LIB_FUNCTION("BEKIcbCV-MU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_towctrans); - LIB_FUNCTION("J3J1T9fjUik", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_towlower); - LIB_FUNCTION("1uf1SQsj5go", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_towupper); - LIB_FUNCTION("a4gLGspPEDM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_trunc); - LIB_FUNCTION("Vo8rvWtZw3g", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_truncf); - LIB_FUNCTION("apdxz6cLMh8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_truncl); - LIB_FUNCTION("BAYjQubSZT8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_tzname); - LIB_FUNCTION("gYFKAMoNEfo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_tzset); - LIB_FUNCTION("-LFO7jhD5CE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_ungetc); - LIB_FUNCTION("Nz7J62MvgQs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_ungetwc); - LIB_FUNCTION("CRJcH8CnPSI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_unsetenv); - LIB_FUNCTION("1nTKA7pN1jw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_utime); - LIB_FUNCTION("aoTkxU86Mr4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_verr); - LIB_FUNCTION("7Pc0nOTw8po", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_verrc); - LIB_FUNCTION("ItC2hTrYvHw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_verrx); - LIB_FUNCTION("zxecOOffO68", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vsyslog); - LIB_FUNCTION("s67G-KeDKOo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vwarn); - LIB_FUNCTION("BfAsxVvQVTQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vwarnc); - LIB_FUNCTION("iH+oMJn8YPk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vwarnx); - LIB_FUNCTION("3Rhy2gXDhwc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_warn); - LIB_FUNCTION("AqUBdZqHZi4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_warnc); - LIB_FUNCTION("aNJaYyn0Ujo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_warnx); - LIB_FUNCTION("y9OoA+P5cjk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcrtomb); - LIB_FUNCTION("oAlR5z2iiCA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcrtomb_s); - LIB_FUNCTION("KZm8HUIX2Rw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcscat); - LIB_FUNCTION("MqeMaVUiyU8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcscat_s); - LIB_FUNCTION("Ezzq78ZgHPs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcschr); - LIB_FUNCTION("pNtJdE3x49E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcscmp); - LIB_FUNCTION("fV2xHER+bKE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcscoll); - LIB_FUNCTION("FM5NPnLqBc8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcscpy); - LIB_FUNCTION("6f5f-qx4ucA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcscpy_s); - LIB_FUNCTION("7eNus40aGuk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcscspn); - LIB_FUNCTION("XbVXpf5WF28", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcsftime); - LIB_FUNCTION("WkkeywLJcgU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcslen); - LIB_FUNCTION("pA9N3VIgEZ4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcsncat); - LIB_FUNCTION("VxG0990tP3E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcsncat_s); - LIB_FUNCTION("E8wCoUEbfzk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcsncmp); - LIB_FUNCTION("0nV21JjYCH8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcsncpy); - LIB_FUNCTION("Slmz4HMpNGs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcsncpy_s); - LIB_FUNCTION("K+v+cnmGoH4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcsnlen_s); - LIB_FUNCTION("H4MCONF+Gps", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcspbrk); - LIB_FUNCTION("g3ShSirD50I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcsrchr); - LIB_FUNCTION("sOOMlZoy1pg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcsrtombs); - LIB_FUNCTION("79s2tnYQI6I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcsrtombs_s); - LIB_FUNCTION("x9uumWcxhXU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcsspn); - LIB_FUNCTION("7-a7sBHeUQ8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcstod); - LIB_FUNCTION("7SXNu+0KBYQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcstof); - LIB_FUNCTION("ljFisaQPwYQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcstoimax); - LIB_FUNCTION("8ngzWNZzFJU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcstok); - LIB_FUNCTION("dsXnVxORFdc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcstok_s); - LIB_FUNCTION("d3dMyWORw8A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcstol); - LIB_FUNCTION("LEbYWl9rBc8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcstold); - LIB_FUNCTION("34nH7v2xvNQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcstoll); - LIB_FUNCTION("v7S7LhP2OJc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcstombs); - LIB_FUNCTION("sZLrjx-yEx4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcstombs_s); - LIB_FUNCTION("5AYcEn7aoro", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcstoul); - LIB_FUNCTION("DAbZ-Vfu6lQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcstoull); - LIB_FUNCTION("1e-q5iIukH8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcstoumax); - LIB_FUNCTION("VuMMb5CfpEw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcsxfrm); - LIB_FUNCTION("CL7VJxznu6g", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wctob); - LIB_FUNCTION("7PxmvOEX3oc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wctomb); - LIB_FUNCTION("y3V0bIq38NE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wctomb_s); - LIB_FUNCTION("seyrqIc4ovc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wctrans); - LIB_FUNCTION("+3PtYiUxl-U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wctype); - LIB_FUNCTION("inwDBwEvw18", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_xtime_get); - LIB_FUNCTION("RvsFE8j3C38", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_y0); - LIB_FUNCTION("+tfKv1vt0QQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_y0f); - LIB_FUNCTION("vh9aGR3ALP0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_y1); - LIB_FUNCTION("gklG+J87Pq4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_y1f); - LIB_FUNCTION("eWSt5lscApo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_yn); - LIB_FUNCTION("wdPaII721tY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_ynf); - LIB_FUNCTION("GG6441JdYkA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_Func_186EB8E3525D6240); - LIB_FUNCTION("QZ9YgTk+yrE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_Func_419F5881393ECAB1); - LIB_FUNCTION("bGuDd3kWVKQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_Func_6C6B8377791654A4); - LIB_FUNCTION("f9LVyN8Ky8g", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_Func_7FD2D5C8DF0ACBC8); - LIB_FUNCTION("wUqJ0psUjDo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_Func_C14A89D29B148C3A); -}; - + RegisterlibSceLibcInternalMemory(sym); + RegisterlibSceLibcInternalIo(sym); +} } // namespace Libraries::LibcInternal \ No newline at end of file diff --git a/src/core/libraries/libc_internal/libc_internal_io.cpp b/src/core/libraries/libc_internal/libc_internal_io.cpp index 82ff08d50..8814fda28 100644 --- a/src/core/libraries/libc_internal/libc_internal_io.cpp +++ b/src/core/libraries/libc_internal/libc_internal_io.cpp @@ -4,469 +4,21 @@ #include #include +#include #include "common/assert.h" #include "common/logging/log.h" #include "core/libraries/error_codes.h" #include "core/libraries/libs.h" #include "libc_internal_io.h" +#include "printf.h" namespace Libraries::LibcInternal { - -s32 PS4_SYSV_ABI internal___vfprintf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; +int PS4_SYSV_ABI internal_snprintf(char* s, size_t n, VA_ARGS) { + VA_CTX(ctx); + return snprintf_ctx(s, n, &ctx); } - -s32 PS4_SYSV_ABI internal__Printf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__WPrintf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_asprintf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fprintf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fprintf_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fwprintf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fwprintf_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_printf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_printf_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_snprintf(char* s, size_t n, const char* format, ...) { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_snprintf_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_snwprintf_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_sprintf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_sprintf_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_swprintf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_swprintf_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_swscanf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_swscanf_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vasprintf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vfprintf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vfprintf_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vfscanf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vfscanf_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vfwprintf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vfwprintf_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vfwscanf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vfwscanf_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vprintf(const char* format, va_list args) { - // Copy the va_list because vsnprintf consumes it - va_list args_copy; - va_copy(args_copy, args); - - // Calculate the required buffer size - int size = std::vsnprintf(nullptr, 0, format, args_copy); - va_end(args_copy); - - if (size < 0) { - // Handle vsnprintf error - LOG_ERROR(Lib_LibcInternal, "vsnprintf failed to calculate size"); - return size; - } - - // Create a string with the required size - std::string buffer(size, '\0'); - - // Format the string into the buffer - int result = - std::vsnprintf(buffer.data(), buffer.size() + 1, format, args); // +1 for null terminator - if (result >= 0) { - // Log the formatted result - LOG_INFO(Lib_LibcInternal, "{}", buffer); - } else { - LOG_ERROR(Lib_LibcInternal, "vsnprintf failed during formatting"); - } - - return result; -} - -s32 PS4_SYSV_ABI internal_vprintf_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vscanf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vscanf_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vsnprintf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vsnprintf_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vsnwprintf_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vsprintf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vsprintf_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vsscanf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vsscanf_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vswprintf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vswprintf_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vswscanf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vswscanf_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vwprintf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vwprintf_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vwscanf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_vwscanf_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wprintf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wprintf_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wscanf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wscanf_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Scanf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__WScanf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fscanf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fscanf_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fwscanf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fwscanf_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_scanf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_scanf_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_sscanf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_sscanf_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - void RegisterlibSceLibcInternalIo(Core::Loader::SymbolsResolver* sym) { - - LIB_FUNCTION("yAZ5vOpmBus", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal___vfprintf); - LIB_FUNCTION("FModQzwn1-4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Printf); - LIB_FUNCTION("kvEP5-KOG1U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__WPrintf); - LIB_FUNCTION("cOYia2dE0Ik", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_asprintf); - LIB_FUNCTION("fffwELXNVFA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fprintf); - LIB_FUNCTION("-e-F9HjUFp8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fprintf_s); - LIB_FUNCTION("ZRAcn3dPVmA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fwprintf); - LIB_FUNCTION("9kOFELic7Pk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fwprintf_s); - LIB_FUNCTION("a6CYO8YOzfw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fwscanf); - LIB_FUNCTION("Bo5wtXSj4kc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fwscanf_s); - LIB_FUNCTION("hcuQgD53UxM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_printf); - LIB_FUNCTION("w1NxRBQqfmQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_printf_s); LIB_FUNCTION("eLdDw6l0-bU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_snprintf); - LIB_FUNCTION("3BytPOQgVKc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_snprintf_s); - LIB_FUNCTION("jbj2wBoiCyg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_snwprintf_s); - LIB_FUNCTION("tcVi5SivF7Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_sprintf); - LIB_FUNCTION("xEszJVGpybs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_sprintf_s); - LIB_FUNCTION("1Pk0qZQGeWo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_sscanf); - LIB_FUNCTION("24m4Z4bUaoY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_sscanf_s); - LIB_FUNCTION("nJz16JE1txM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_swprintf); - LIB_FUNCTION("Im55VJ-Bekc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_swprintf_s); - LIB_FUNCTION("HNnWdT43ues", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_swscanf); - LIB_FUNCTION("tQNolUV1q5A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_swscanf_s); - LIB_FUNCTION("qjBlw2cVMAM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vasprintf); - LIB_FUNCTION("pDBDcY6uLSA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vfprintf); - LIB_FUNCTION("GhTZtaodo7o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vfprintf_s); - LIB_FUNCTION("lckWSkHDBrY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vfscanf); - LIB_FUNCTION("JjPXy-HX5dY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vfscanf_s); - LIB_FUNCTION("M2bGWSqt764", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vfwprintf); - LIB_FUNCTION("XX9KWzJvRf0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vfwprintf_s); - LIB_FUNCTION("WF4fBmip+38", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vfwscanf); - LIB_FUNCTION("Wvm90I-TGl0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vfwscanf_s); - LIB_FUNCTION("GMpvxPFW924", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vprintf); - LIB_FUNCTION("YfJUGNPkbK4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vprintf_s); - LIB_FUNCTION("j7Jk3yd3yC8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vscanf); - LIB_FUNCTION("fQYpcUzy3zo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vscanf_s); - LIB_FUNCTION("Q2V+iqvjgC0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vsnprintf); - LIB_FUNCTION("rWSuTWY2JN0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vsnprintf_s); - LIB_FUNCTION("8SKVXgeK1wY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vsnwprintf_s); - LIB_FUNCTION("jbz9I9vkqkk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vsprintf); - LIB_FUNCTION("+qitMEbkSWk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vsprintf_s); - LIB_FUNCTION("UTrpOVLcoOA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vsscanf); - LIB_FUNCTION("tfNbpqL3D0M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vsscanf_s); - LIB_FUNCTION("u0XOsuOmOzc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vswprintf); - LIB_FUNCTION("oDoV9tyHTbA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vswprintf_s); - LIB_FUNCTION("KGotca3AjYw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vswscanf); - LIB_FUNCTION("39HHkIWrWNo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vswscanf_s); - LIB_FUNCTION("QuF2rZGE-v8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vwprintf); - LIB_FUNCTION("XPrliF5n-ww", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vwprintf_s); - LIB_FUNCTION("QNwdOK7HfJU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vwscanf); - LIB_FUNCTION("YgZ6qvFH3QI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_vwscanf_s); - LIB_FUNCTION("OGVdXU3E-xg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wprintf); - LIB_FUNCTION("FEtOJURNey0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wprintf_s); - LIB_FUNCTION("D8JBAR3RiZQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wscanf); - LIB_FUNCTION("RV7X3FrWfTI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wscanf_s); - LIB_FUNCTION("s+MeMHbB1Ro", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Scanf); - LIB_FUNCTION("fzgkSILqRHE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__WScanf); - LIB_FUNCTION("npLpPTaSuHg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fscanf); - LIB_FUNCTION("vj2WUi2LrfE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fscanf_s); - LIB_FUNCTION("7XEv6NnznWw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_scanf); - LIB_FUNCTION("-B76wP6IeVA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_scanf_s); } - -} // namespace Libraries::LibcInternal +} // namespace Libraries::LibcInternal \ No newline at end of file diff --git a/src/core/libraries/libc_internal/libc_internal_math.cpp b/src/core/libraries/libc_internal/libc_internal_math.cpp index 17f971d26..5a33c0992 100644 --- a/src/core/libraries/libc_internal/libc_internal_math.cpp +++ b/src/core/libraries/libc_internal/libc_internal_math.cpp @@ -5,769 +5,152 @@ #include "common/logging/log.h" #include "core/libraries/error_codes.h" #include "core/libraries/libs.h" -#include "libc_internal_mspace.h" namespace Libraries::LibcInternal { -s32 PS4_SYSV_ABI internal_abs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; +double PS4_SYSV_ABI internal_sin(double x) { + return std::sin(x); } -double PS4_SYSV_ABI internal_acos(double x) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::acos(x); -} - -float PS4_SYSV_ABI internal_acosf(float x) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::acosf(x); -} - -float PS4_SYSV_ABI internal_acosh(float x) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::acosh(x); -} - -float PS4_SYSV_ABI internal_acoshf(float x) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::acoshf(x); -} - -float PS4_SYSV_ABI internal_acoshl(float x) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::acoshl(x); -} - -float PS4_SYSV_ABI internal_acosl(float x) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::acosl(x); -} - -double PS4_SYSV_ABI internal_asin(double x) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::asin(x); -} - -float PS4_SYSV_ABI internal_asinf(float x) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::asinf(x); -} - -float PS4_SYSV_ABI internal_asinh(float x) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::asinh(x); -} - -float PS4_SYSV_ABI internal_asinhf(float x) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::asinhf(x); -} - -float PS4_SYSV_ABI internal_asinhl(float x) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::asinhl(x); -} - -float PS4_SYSV_ABI internal_asinl(float x) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::asinl(x); -} - -double PS4_SYSV_ABI internal_atan(double x) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::atan(x); -} - -double PS4_SYSV_ABI internal_atan2(double y, double x) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::atan2(y, x); -} - -s32 PS4_SYSV_ABI internal_atan2f() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_atan2l() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_atanf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_atanh() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_atanhf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_atanhl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_atanl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_ceil() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_ceilf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_ceill() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; +float PS4_SYSV_ABI internal_sinf(float x) { + return std::sinf(x); } double PS4_SYSV_ABI internal_cos(double x) { - LOG_DEBUG(Lib_LibcInternal, "called"); return std::cos(x); } float PS4_SYSV_ABI internal_cosf(float x) { - LOG_DEBUG(Lib_LibcInternal, "called"); return std::cosf(x); } -s32 PS4_SYSV_ABI internal_cosh() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_coshf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_coshl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_cosl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -double PS4_SYSV_ABI internal_exp(double x) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::exp(x); -} - -double PS4_SYSV_ABI internal_exp2(double x) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::exp2(x); -} - -float PS4_SYSV_ABI internal_exp2f(float x) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::exp2f(x); -} - -float PS4_SYSV_ABI internal_exp2l(float x) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::exp2l(x); -} - -float PS4_SYSV_ABI internal_expf(float x) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::expf(x); -} - -s32 PS4_SYSV_ABI internal_expl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_expm1() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_expm1f() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_expm1l() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fabs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fabsf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fabsl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_floor() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_floorf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_floorl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fmax() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fmaxf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fmaxl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fmin() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fminf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fminl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fmod() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fmodf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_fmodl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_frexp() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_frexpf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_frexpl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_ilogb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_ilogbf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_ilogbl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_imaxabs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_imaxdiv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_isinf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_islower() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_isnan() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_isnanf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_isupper() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_log() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_log10() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -float PS4_SYSV_ABI internal_log10f(float x) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::log10f(x); -} - -s32 PS4_SYSV_ABI internal_log10l() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_log1p() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_log1pf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_log1pl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_log2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_log2f() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_log2l() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_logb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_logbf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_logbl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_logf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_logl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_lround() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_lroundf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_lroundl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_nan() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_nanf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_nanl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -double PS4_SYSV_ABI internal_pow(double x, double y) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::pow(x, y); -} - -float PS4_SYSV_ABI internal_powf(float x, float y) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::powf(x, y); -} - -s32 PS4_SYSV_ABI internal_powl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_remainder() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -double PS4_SYSV_ABI internal_sin(double x) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::sin(x); -} - void PS4_SYSV_ABI internal_sincos(double x, double* sinp, double* cosp) { - LOG_DEBUG(Lib_LibcInternal, "called"); *sinp = std::sin(x); *cosp = std::cos(x); } -void PS4_SYSV_ABI internal_sincosf(double x, double* sinp, double* cosp) { - LOG_DEBUG(Lib_LibcInternal, "called"); +void PS4_SYSV_ABI internal_sincosf(float x, float* sinp, float* cosp) { *sinp = std::sinf(x); *cosp = std::cosf(x); } -float PS4_SYSV_ABI internal_sinf(float x) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::sinf(x); +double PS4_SYSV_ABI internal_tan(double x) { + return std::tan(x); } -float PS4_SYSV_ABI internal_sinh(float x) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::sinh(x); +float PS4_SYSV_ABI internal_tanf(float x) { + return std::tanf(x); } -float PS4_SYSV_ABI internal_sinhf(float x) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::sinhf(x); +double PS4_SYSV_ABI internal_asin(double x) { + return std::asin(x); } -float PS4_SYSV_ABI internal_sinhl(float x) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::sinhl(x); +float PS4_SYSV_ABI internal_asinf(float x) { + return std::asinf(x); } -float PS4_SYSV_ABI internal_sinl(float x) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::sinl(x); +double PS4_SYSV_ABI internal_acos(double x) { + return std::acos(x); } -s32 PS4_SYSV_ABI internal_sqrt() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; +float PS4_SYSV_ABI internal_acosf(float x) { + return std::acosf(x); } -s32 PS4_SYSV_ABI internal_sqrtf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; +double PS4_SYSV_ABI internal_atan(double x) { + return std::atan(x); } -s32 PS4_SYSV_ABI internal_sqrtl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; +float PS4_SYSV_ABI internal_atanf(float x) { + return std::atanf(x); } -s32 PS4_SYSV_ABI internal_srand() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; +double PS4_SYSV_ABI internal_atan2(double y, double x) { + return std::atan2(y, x); } -s32 PS4_SYSV_ABI internal_tan() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; +float PS4_SYSV_ABI internal_atan2f(float y, float x) { + return std::atan2f(y, x); } -s32 PS4_SYSV_ABI internal_tanf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; +double PS4_SYSV_ABI internal_exp(double x) { + return std::exp(x); } -s32 PS4_SYSV_ABI internal_tanh() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; +float PS4_SYSV_ABI internal_expf(float x) { + return std::expf(x); } -s32 PS4_SYSV_ABI internal_tanhf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; +double PS4_SYSV_ABI internal_exp2(double x) { + return std::exp2(x); } -s32 PS4_SYSV_ABI internal_tanhl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; +float PS4_SYSV_ABI internal_exp2f(float x) { + return std::exp2f(x); } -s32 PS4_SYSV_ABI internal_tanl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; +double PS4_SYSV_ABI internal_pow(double x, double y) { + return std::pow(x, y); } -float PS4_SYSV_ABI internal__FSin(float arg, unsigned int m, int n) { - ASSERT(n == 0); - if (m != 0) { - return cosf(arg); - } else { - return sinf(arg); - } +float PS4_SYSV_ABI internal_powf(float x, float y) { + return std::powf(x, y); } -double PS4_SYSV_ABI internal__Sin(double x) { - return sin(x); +double PS4_SYSV_ABI internal_log(double x) { + return std::log(x); +} + +float PS4_SYSV_ABI internal_logf(float x) { + return std::logf(x); +} + +double PS4_SYSV_ABI internal_log10(double x) { + return std::log10(x); +} + +float PS4_SYSV_ABI internal_log10f(float x) { + return std::log10f(x); } void RegisterlibSceLibcInternalMath(Core::Loader::SymbolsResolver* sym) { - LIB_FUNCTION("Ye20uNnlglA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_abs); - LIB_FUNCTION("JBcgYuW8lPU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_acos); - LIB_FUNCTION("QI-x0SL8jhw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_acosf); - LIB_FUNCTION("Fk7-KFKZi-8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_acosh); - LIB_FUNCTION("XJp2C-b0tRU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_acoshf); - LIB_FUNCTION("u14Y1HFh0uY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_acoshl); - LIB_FUNCTION("iH4YAIRcecA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_acosl); - LIB_FUNCTION("7Ly52zaL44Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_asin); - LIB_FUNCTION("GZWjF-YIFFk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_asinf); - LIB_FUNCTION("2eQpqTjJ5Y4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_asinh); - LIB_FUNCTION("yPPtp1RMihw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_asinhf); - LIB_FUNCTION("iCl-Z-g-uuA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_asinhl); - LIB_FUNCTION("Nx-F5v0-qU8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_asinl); - LIB_FUNCTION("OXmauLdQ8kY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_atan); - LIB_FUNCTION("HUbZmOnT-Dg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_atan2); - LIB_FUNCTION("EH-x713A99c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_atan2f); - LIB_FUNCTION("9VeY8wiqf8M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_atan2l); - LIB_FUNCTION("weDug8QD-lE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_atanf); - LIB_FUNCTION("YjbpxXpi6Zk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_atanh); - LIB_FUNCTION("cPGyc5FGjy0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_atanhf); - LIB_FUNCTION("a3BNqojL4LM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_atanhl); - LIB_FUNCTION("KvOHPTz595Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_atanl); - LIB_FUNCTION("gacfOmO8hNs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_ceil); - LIB_FUNCTION("GAUuLKGhsCw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_ceilf); - LIB_FUNCTION("aJKn6X+40Z8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_ceill); + LIB_FUNCTION("H8ya2H00jbI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_sin); + LIB_FUNCTION("Q4rRL34CEeE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_sinf); LIB_FUNCTION("2WE3BTYVwKM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_cos); LIB_FUNCTION("-P6FNMzk2Kc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_cosf); - LIB_FUNCTION("m7iLTaO9RMs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_cosh); - LIB_FUNCTION("RCQAffkEh9A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_coshf); - LIB_FUNCTION("XK2R46yx0jc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_coshl); - LIB_FUNCTION("x8dc5Y8zFgc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_cosl); - LIB_FUNCTION("NVadfnzQhHQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_exp); - LIB_FUNCTION("dnaeGXbjP6E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_exp2); - LIB_FUNCTION("wuAQt-j+p4o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_exp2f); - LIB_FUNCTION("9O1Xdko-wSo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_exp2l); - LIB_FUNCTION("8zsu04XNsZ4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_expf); - LIB_FUNCTION("qMp2fTDCyMo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_expl); - LIB_FUNCTION("gqKfOiJaCOo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_expm1); - LIB_FUNCTION("3EgxfDRefdw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_expm1f); - LIB_FUNCTION("jVS263HH1b0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_expm1l); - LIB_FUNCTION("388LcMWHRCA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_fabs); - LIB_FUNCTION("fmT2cjPoWBs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fabsf); - LIB_FUNCTION("w-AryX51ObA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fabsl); - LIB_FUNCTION("mpcTgMzhUY8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_floor); - LIB_FUNCTION("mKhVDmYciWA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_floorf); - LIB_FUNCTION("06QaR1Cpn-k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_floorl); - LIB_FUNCTION("fiOgmWkP+Xc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_fmax); - LIB_FUNCTION("Lyx2DzUL7Lc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fmaxf); - LIB_FUNCTION("0H5TVprQSkA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fmaxl); - LIB_FUNCTION("iU0z6SdUNbI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_fmin); - LIB_FUNCTION("uVRcM2yFdP4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fminf); - LIB_FUNCTION("DQ7K6s8euWY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fminl); - LIB_FUNCTION("pKwslsMUmSk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_fmod); - LIB_FUNCTION("88Vv-AzHVj8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fmodf); - LIB_FUNCTION("A1R5T0xOyn8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_fmodl); - LIB_FUNCTION("kA-TdiOCsaY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_frexp); - LIB_FUNCTION("aaDMGGkXFxo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_frexpf); - LIB_FUNCTION("YZk9sHO0yNg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_frexpl); - LIB_FUNCTION("h6pVBKjcLiU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_ilogb); - LIB_FUNCTION("0dQrYWd7g94", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_ilogbf); - LIB_FUNCTION("wXs12eD3uvA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_ilogbl); - LIB_FUNCTION("UgZ7Rhk60cQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_imaxabs); - LIB_FUNCTION("V0X-mrfdM9E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_imaxdiv); - LIB_FUNCTION("2q5PPh7HsKE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_isinf); - LIB_FUNCTION("KqYTqtSfGos", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_islower); - LIB_FUNCTION("20qj+7O69XY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_isnan); - LIB_FUNCTION("3pF7bUSIH8o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_isnanf); - LIB_FUNCTION("GcFKlTJEMkI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_isupper); - LIB_FUNCTION("rtV7-jWC6Yg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_log); - LIB_FUNCTION("WuMbPBKN1TU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_log10); - LIB_FUNCTION("lhpd6Wk6ccs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_log10f); - LIB_FUNCTION("CT4aR0tBgkQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_log10l); - LIB_FUNCTION("VfsML+n9cDM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_log1p); - LIB_FUNCTION("MFe91s8apQk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_log1pf); - LIB_FUNCTION("77qd0ksTwdI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_log1pl); - LIB_FUNCTION("Y5DhuDKGlnQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_log2); - LIB_FUNCTION("hsi9drzHR2k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_log2f); - LIB_FUNCTION("CfOrGjBj-RY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_log2l); - LIB_FUNCTION("owKuegZU4ew", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_logb); - LIB_FUNCTION("RWqyr1OKuw4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_logbf); - LIB_FUNCTION("txJTOe0Db6M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_logbl); - LIB_FUNCTION("RQXLbdT2lc4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_logf); - LIB_FUNCTION("EiHf-aLDImI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_logl); - LIB_FUNCTION("J3XuGS-cC0Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_lround); - LIB_FUNCTION("C6gWCWJKM+U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_lroundf); - LIB_FUNCTION("4ITASgL50uc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_lroundl); - LIB_FUNCTION("zck+6bVj5pA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_nan); - LIB_FUNCTION("DZU+K1wozGI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_nanf); - LIB_FUNCTION("ZUvemFIkkhQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_nanl); - LIB_FUNCTION("9LCjpWyQ5Zc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_pow); - LIB_FUNCTION("1D0H2KNjshE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_powf); - LIB_FUNCTION("95V3PF0kUEA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_powl); - LIB_FUNCTION("pv2etu4pocs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_remainder); - LIB_FUNCTION("H8ya2H00jbI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_sin); LIB_FUNCTION("jMB7EFyu30Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_sincos); LIB_FUNCTION("pztV4AF18iI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_sincosf); - LIB_FUNCTION("Q4rRL34CEeE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_sinf); - LIB_FUNCTION("ZjtRqSMJwdw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_sinh); - LIB_FUNCTION("1t1-JoZ0sZQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_sinhf); - LIB_FUNCTION("lYdqBvDgeHU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_sinhl); - LIB_FUNCTION("vxgqrJxDPHo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_sinl); - LIB_FUNCTION("MXRNWnosNlM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_sqrt); - LIB_FUNCTION("Q+xU11-h0xQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_sqrtf); - LIB_FUNCTION("RIkUZRadZgc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_sqrtl); - LIB_FUNCTION("VPbJwTCgME0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_srand); LIB_FUNCTION("T7uyNqP7vQA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_tan); LIB_FUNCTION("ZE6RNL+eLbk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_tanf); - LIB_FUNCTION("JM4EBvWT9rc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_tanh); - LIB_FUNCTION("SAd0Z3wKwLA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_tanhf); - LIB_FUNCTION("JCmHsYVc2eo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_tanhl); - LIB_FUNCTION("QL+3q43NfEA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_tanl); - LIB_FUNCTION("ZtjspkJQ+vw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__FSin); - LIB_FUNCTION("cCXjU72Z0Ow", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal__Sin); + LIB_FUNCTION("7Ly52zaL44Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_asin); + LIB_FUNCTION("GZWjF-YIFFk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, + internal_asinf); + LIB_FUNCTION("JBcgYuW8lPU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_acos); + LIB_FUNCTION("QI-x0SL8jhw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, + internal_acosf); + LIB_FUNCTION("OXmauLdQ8kY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_atan); + LIB_FUNCTION("weDug8QD-lE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, + internal_atanf); + LIB_FUNCTION("HUbZmOnT-Dg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, + internal_atan2); + LIB_FUNCTION("EH-x713A99c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, + internal_atan2f); + LIB_FUNCTION("NVadfnzQhHQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_exp); + LIB_FUNCTION("8zsu04XNsZ4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_expf); + LIB_FUNCTION("dnaeGXbjP6E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_exp2); + LIB_FUNCTION("wuAQt-j+p4o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, + internal_exp2f); + LIB_FUNCTION("9LCjpWyQ5Zc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_pow); + LIB_FUNCTION("1D0H2KNjshE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_powf); + LIB_FUNCTION("rtV7-jWC6Yg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_log); + LIB_FUNCTION("RQXLbdT2lc4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_logf); + LIB_FUNCTION("WuMbPBKN1TU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, + internal_log10); + LIB_FUNCTION("lhpd6Wk6ccs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, + internal_log10f); } } // namespace Libraries::LibcInternal diff --git a/src/core/libraries/libc_internal/libc_internal_memory.cpp b/src/core/libraries/libc_internal/libc_internal_memory.cpp index 6666aa6bf..0d8c421af 100644 --- a/src/core/libraries/libc_internal/libc_internal_memory.cpp +++ b/src/core/libraries/libc_internal/libc_internal_memory.cpp @@ -9,123 +9,15 @@ namespace Libraries::LibcInternal { -s32 PS4_SYSV_ABI internal__malloc_finalize_lv2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__malloc_fini() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__malloc_init() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__malloc_init_lv2() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__malloc_postfork() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__malloc_prefork() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__malloc_thread_cleanup() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__sceLibcGetMallocParam() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_operator_new(size_t size) { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_malloc(size_t size) { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_malloc_check_memory_bounds() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_malloc_finalize() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_malloc_get_footer_value() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_malloc_get_malloc_state() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_malloc_initialize() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_malloc_report_memory_blocks() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_malloc_stats() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_malloc_stats_fast() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_malloc_usable_size() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_memalign() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_memchr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_memcmp(const void* s1, const void* s2, size_t n) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::memcmp(s1, s2, n); +void* PS4_SYSV_ABI internal_memset(void* s, int c, size_t n) { + return std::memset(s, c, n); } void* PS4_SYSV_ABI internal_memcpy(void* dest, const void* src, size_t n) { - LOG_DEBUG(Lib_LibcInternal, "called"); return std::memcpy(dest, src, n); } s32 PS4_SYSV_ABI internal_memcpy_s(void* dest, size_t destsz, const void* src, size_t count) { - LOG_DEBUG(Lib_LibcInternal, "called"); #ifdef _WIN64 return memcpy_s(dest, destsz, src, count); #else @@ -134,181 +26,20 @@ s32 PS4_SYSV_ABI internal_memcpy_s(void* dest, size_t destsz, const void* src, s #endif } -s32 PS4_SYSV_ABI internal_memmove(void* d, void* s, size_t n) { - LOG_DEBUG(Lib_LibcInternal, "called"); - std::memmove(d, s, n); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_memmove_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_memrchr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -void* PS4_SYSV_ABI internal_memset(void* s, int c, size_t n) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::memset(s, c, n); -} - -s32 PS4_SYSV_ABI internal_memset_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_posix_memalign() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_realloc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_reallocalign() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_reallocf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wmemchr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wmemcmp() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wmemcpy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wmemcpy_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wmemmove() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wmemmove_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wmemset() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -void PS4_SYSV_ABI internal_operator_delete(void* ptr) { - if (ptr) { - std::free(ptr); - } -} - -void PS4_SYSV_ABI internal_free(void* ptr) { - std::free(ptr); +s32 PS4_SYSV_ABI internal_memcmp(const void* s1, const void* s2, size_t n) { + return std::memcmp(s1, s2, n); } void RegisterlibSceLibcInternalMemory(Core::Loader::SymbolsResolver* sym) { - LIB_FUNCTION("RnqlvEmvkdw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__malloc_finalize_lv2); - LIB_FUNCTION("21KFhEQDJ3s", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__malloc_fini); - LIB_FUNCTION("z8GPiQwaAEY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__malloc_init); - LIB_FUNCTION("20cUk0qX9zo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__malloc_init_lv2); - LIB_FUNCTION("V94pLruduLg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__malloc_postfork); - LIB_FUNCTION("aLYyS4Kx6rQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__malloc_prefork); - LIB_FUNCTION("Sopthb9ztZI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__malloc_thread_cleanup); - LIB_FUNCTION("1nZ4Xfnyp38", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__sceLibcGetMallocParam); - LIB_FUNCTION("fJnpuVVBbKk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_operator_new); - LIB_FUNCTION("cVSk9y8URbc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_posix_memalign); - LIB_FUNCTION("Ujf3KzMvRmI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_memalign); - LIB_FUNCTION("8u8lPzUEq+U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_memchr); - LIB_FUNCTION("DfivPArhucg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_memcmp); - LIB_FUNCTION("Q3VBxCXhUHs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_memcpy); + LIB_FUNCTION("NFLs+dRJGNg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_memcpy_s); - LIB_FUNCTION("+P6FRGH4LfA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_memmove); - LIB_FUNCTION("B59+zQQCcbU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_memmove_s); - LIB_FUNCTION("5G2ONUzRgjY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_memrchr); + LIB_FUNCTION("Q3VBxCXhUHs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, + internal_memcpy); LIB_FUNCTION("8zTFvBIAIN8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_memset); - LIB_FUNCTION("h8GwqPFbu6I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_memset_s); - LIB_FUNCTION("Y7aJ1uydPMo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_realloc); - LIB_FUNCTION("OGybVuPAhAY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_reallocalign); - LIB_FUNCTION("YMZO9ChZb0E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_reallocf); - LIB_FUNCTION("fnUEjBCNRVU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wmemchr); - LIB_FUNCTION("QJ5xVfKkni0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wmemcmp); - LIB_FUNCTION("fL3O02ypZFE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wmemcpy); - LIB_FUNCTION("BTsuaJ6FxKM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wmemcpy_s); - LIB_FUNCTION("Noj9PsJrsa8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wmemmove); - LIB_FUNCTION("F8b+Wb-YQVs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wmemmove_s); - LIB_FUNCTION("Al8MZJh-4hM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wmemset); - LIB_FUNCTION("gQX+4GDQjpM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_malloc); - LIB_FUNCTION("ECOPpUQEch0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_malloc_check_memory_bounds); - LIB_FUNCTION("J6FoFNydpFI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_malloc_finalize); - LIB_FUNCTION("SlG1FN-y0N0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_malloc_get_footer_value); - LIB_FUNCTION("Nmezc1Lh7TQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_malloc_get_malloc_state); - LIB_FUNCTION("owT6zLJxrTs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_malloc_initialize); - LIB_FUNCTION("0F08WOP8G3s", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_malloc_report_memory_blocks); - LIB_FUNCTION("CC-BLMBu9-I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_malloc_stats); - LIB_FUNCTION("KuOuD58hqn4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_malloc_stats_fast); - LIB_FUNCTION("NDcSfcYZRC8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_malloc_usable_size); - LIB_FUNCTION("MLWl90SFWNE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_operator_delete); - LIB_FUNCTION("tIhsqj0qsFE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_free); + LIB_FUNCTION("DfivPArhucg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, + internal_memcmp); } } // namespace Libraries::LibcInternal diff --git a/src/core/libraries/libc_internal/libc_internal_mspace.cpp b/src/core/libraries/libc_internal/libc_internal_mspace.cpp deleted file mode 100644 index 916c9ab0d..000000000 --- a/src/core/libraries/libc_internal/libc_internal_mspace.cpp +++ /dev/null @@ -1,247 +0,0 @@ -// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project -// SPDX-License-Identifier: GPL-2.0-or-later - -#include "common/assert.h" -#include "common/logging/log.h" -#include "core/libraries/error_codes.h" -#include "core/libraries/libs.h" -#include "libc_internal_mspace.h" - -namespace Libraries::LibcInternal { - -s32 PS4_SYSV_ABI sceLibcMspaceAlignedAlloc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcMspaceCalloc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -void* PS4_SYSV_ABI sceLibcMspaceCreate(char* name, u64 param_2, u64 param_3, u32 param_4, - s8* param_5) { - UNREACHABLE_MSG("Missing sceLibcMspace impementation!"); - return 0; -} - -s32 PS4_SYSV_ABI sceLibcMspaceDestroy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcMspaceFree() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcMspaceGetAddressRanges() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcMspaceIsHeapEmpty() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcMspaceMalloc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcMspaceMallocStats() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcMspaceMallocStatsFast() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcMspaceMallocUsableSize() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcMspaceMemalign() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcMspacePosixMemalign() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcMspaceRealloc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcMspaceReallocalign() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcMspaceSetMallocCallback() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcPafMspaceCalloc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcPafMspaceCheckMemoryBounds() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcPafMspaceCreate() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcPafMspaceDestroy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcPafMspaceFree() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcPafMspaceGetFooterValue() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcPafMspaceIsHeapEmpty() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcPafMspaceMalloc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcPafMspaceMallocStats() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcPafMspaceMallocStatsFast() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcPafMspaceMallocUsableSize() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcPafMspaceMemalign() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcPafMspacePosixMemalign() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcPafMspaceRealloc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcPafMspaceReallocalign() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcPafMspaceReportMemoryBlocks() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI sceLibcPafMspaceTrim() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -void RegisterlibSceLibcInternalMspace(Core::Loader::SymbolsResolver* sym) { - LIB_FUNCTION("ljkqMcC4-mk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcMspaceAlignedAlloc); - LIB_FUNCTION("LYo3GhIlB38", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcMspaceCalloc); - LIB_FUNCTION("-hn1tcVHq5Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcMspaceCreate); - LIB_FUNCTION("W6SiVSiCDtI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcMspaceDestroy); - LIB_FUNCTION("Vla-Z+eXlxo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcMspaceFree); - LIB_FUNCTION("raRgiuQfvWk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcMspaceGetAddressRanges); - LIB_FUNCTION("pzUa7KEoydw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcMspaceIsHeapEmpty); - LIB_FUNCTION("OJjm-QOIHlI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcMspaceMalloc); - LIB_FUNCTION("mfHdJTIvhuo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcMspaceMallocStats); - LIB_FUNCTION("k04jLXu3+Ic", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcMspaceMallocStatsFast); - LIB_FUNCTION("fEoW6BJsPt4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcMspaceMallocUsableSize); - LIB_FUNCTION("iF1iQHzxBJU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcMspaceMemalign); - LIB_FUNCTION("qWESlyXMI3E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcMspacePosixMemalign); - LIB_FUNCTION("gigoVHZvVPE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcMspaceRealloc); - LIB_FUNCTION("p6lrRW8-MLY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcMspaceReallocalign); - LIB_FUNCTION("+CbwGRMnlfU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcMspaceSetMallocCallback); - LIB_FUNCTION("-lZdT34nAAE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcPafMspaceCalloc); - LIB_FUNCTION("Pcq7UoYAcFE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcPafMspaceCheckMemoryBounds); - LIB_FUNCTION("6hdfGRKHefs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcPafMspaceCreate); - LIB_FUNCTION("qB5nGjWa-bk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcPafMspaceDestroy); - LIB_FUNCTION("9mMuuhXMwqQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcPafMspaceFree); - LIB_FUNCTION("kv4kgdjswN0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcPafMspaceGetFooterValue); - LIB_FUNCTION("htdTOnMxDbQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcPafMspaceIsHeapEmpty); - LIB_FUNCTION("QuZzFJD5Hrw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcPafMspaceMalloc); - LIB_FUNCTION("mO8NB8whKy8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcPafMspaceMallocStats); - LIB_FUNCTION("OmG3YPCBLJs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcPafMspaceMallocStatsFast); - LIB_FUNCTION("6JcY5RDA4jY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcPafMspaceMallocUsableSize); - LIB_FUNCTION("PKJcFUfhKtw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcPafMspaceMemalign); - LIB_FUNCTION("7hOUKGcT6jM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcPafMspacePosixMemalign); - LIB_FUNCTION("u32UXVridxQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcPafMspaceRealloc); - LIB_FUNCTION("4SvlEtd0j40", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcPafMspaceReallocalign); - LIB_FUNCTION("0FnzR6qum90", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcPafMspaceReportMemoryBlocks); - LIB_FUNCTION("AUYdq63RG3U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - sceLibcPafMspaceTrim); -} - -} // namespace Libraries::LibcInternal diff --git a/src/core/libraries/libc_internal/libc_internal_mspace.h b/src/core/libraries/libc_internal/libc_internal_mspace.h deleted file mode 100644 index b2357e446..000000000 --- a/src/core/libraries/libc_internal/libc_internal_mspace.h +++ /dev/null @@ -1,14 +0,0 @@ -// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project -// SPDX-License-Identifier: GPL-2.0-or-later - -#pragma once - -#include "common/types.h" - -namespace Core::Loader { -class SymbolsResolver; -} - -namespace Libraries::LibcInternal { -void RegisterlibSceLibcInternalMspace(Core::Loader::SymbolsResolver* sym); -} // namespace Libraries::LibcInternal \ No newline at end of file diff --git a/src/core/libraries/libc_internal/libc_internal_str.cpp b/src/core/libraries/libc_internal/libc_internal_str.cpp index e7c0666d6..3283822de 100644 --- a/src/core/libraries/libc_internal/libc_internal_str.cpp +++ b/src/core/libraries/libc_internal/libc_internal_str.cpp @@ -9,244 +9,41 @@ namespace Libraries::LibcInternal { -s32 PS4_SYSV_ABI internal__CStrftime() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__CStrxfrm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Getstr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Stod() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Stodx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Stof() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Stoflt() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Stofx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Stold() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Stoldx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Stoll() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Stollx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Stolx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Stopfx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Stoul() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Stoull() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Stoullx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Stoulx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Stoxflt() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Strcollx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Strerror() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__Strxfrmx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_strcasecmp(const char* str1, const char* str2) { - LOG_DEBUG(Lib_LibcInternal, "called"); -#ifdef _WIN32 - return _stricmp(str1, str2); +s32 PS4_SYSV_ABI internal_strcpy_s(char* dest, size_t dest_size, const char* src) { +#ifdef _WIN64 + return strcpy_s(dest, dest_size, src); #else - return strcasecmp(str1, str2); + std::strcpy(dest, src); + return 0; // ALL OK #endif } -char* PS4_SYSV_ABI internal_strcat(char* dest, const char* src) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::strcat(dest, src); -} - -s32 PS4_SYSV_ABI internal_strcat_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -const char* PS4_SYSV_ABI internal_strchr(const char* str, int c) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::strchr(str, c); +s32 PS4_SYSV_ABI internal_strcat_s(char* dest, size_t dest_size, const char* src) { +#ifdef _WIN64 + return strcat_s(dest, dest_size, src); +#else + std::strcat(dest, src); + return 0; // ALL OK +#endif } s32 PS4_SYSV_ABI internal_strcmp(const char* str1, const char* str2) { - LOG_DEBUG(Lib_LibcInternal, "called"); return std::strcmp(str1, str2); } -s32 PS4_SYSV_ABI internal_strcoll() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -char* PS4_SYSV_ABI internal_strcpy(char* dest, const char* src) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::strcpy(dest, src); -} - -char* PS4_SYSV_ABI internal_strcpy_s(char* dest, u64 len, const char* src) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::strncpy(dest, src, len); -} - -s32 PS4_SYSV_ABI internal_strcspn(const char* str1, const char* str2) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::strcspn(str1, str2); -} - -char* PS4_SYSV_ABI internal_strdup(const char* str1) { - LOG_DEBUG(Lib_LibcInternal, "called"); - char* dup = (char*)std::malloc(std::strlen(str1) + 1); - if (dup != NULL) - strcpy(dup, str1); - return dup; -} - -s32 PS4_SYSV_ABI internal_strerror() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_strerror_r() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_strerror_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_strerrorlen_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_strftime() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_strlcat() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_strlcpy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -size_t PS4_SYSV_ABI internal_strlen(const char* str) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::strlen(str); -} - -s32 PS4_SYSV_ABI internal_strncasecmp(const char* str1, const char* str2, size_t num) { - LOG_DEBUG(Lib_LibcInternal, "called"); -#ifdef _WIN32 - return _strnicmp(str1, str2, num); -#else - return strncasecmp(str1, str2, num); -#endif -} - -s32 PS4_SYSV_ABI internal_strncat() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_strncat_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - s32 PS4_SYSV_ABI internal_strncmp(const char* str1, const char* str2, size_t num) { - LOG_DEBUG(Lib_LibcInternal, "called"); return std::strncmp(str1, str2, num); } +size_t PS4_SYSV_ABI internal_strlen(const char* str) { + return std::strlen(str); +} + char* PS4_SYSV_ABI internal_strncpy(char* dest, const char* src, std::size_t count) { - LOG_DEBUG(Lib_LibcInternal, "called"); return std::strncpy(dest, src, count); } s32 PS4_SYSV_ABI internal_strncpy_s(char* dest, size_t destsz, const char* src, size_t count) { - LOG_DEBUG(Lib_LibcInternal, "called"); #ifdef _WIN64 return strncpy_s(dest, destsz, src, count); #else @@ -255,278 +52,33 @@ s32 PS4_SYSV_ABI internal_strncpy_s(char* dest, size_t destsz, const char* src, #endif } -s32 PS4_SYSV_ABI internal_strndup() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; +char* PS4_SYSV_ABI internal_strcat(char* dest, const char* src) { + return std::strcat(dest, src); } -s32 PS4_SYSV_ABI internal_strnlen(const char* str, size_t maxlen) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::min(std::strlen(str), maxlen); -} - -s32 PS4_SYSV_ABI internal_strnlen_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_strnstr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -const char* PS4_SYSV_ABI internal_strpbrk(const char* str1, const char* str2) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::strpbrk(str1, str2); -} - -const char* PS4_SYSV_ABI internal_strrchr(const char* str, int c) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::strrchr(str, c); -} - -char* PS4_SYSV_ABI internal_strsep(char** strp, const char* delim) { - LOG_DEBUG(Lib_LibcInternal, "called"); -#ifdef _GNU_SOURCE - return strsep(strp, delim); -#else - if (!*strp) - return nullptr; - char* token = *strp; - *strp = std::strpbrk(token, delim); - if (*strp) - *(*strp)++ = '\0'; - return token; -#endif -} - -s32 PS4_SYSV_ABI internal_strspn(const char* str1, const char* str2) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::strspn(str1, str2); -} - -char* PS4_SYSV_ABI internal_strstr(char* h, char* n) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::strstr(h, n); -} - -double PS4_SYSV_ABI internal_strtod(const char* str, char** endptr) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::strtod(str, endptr); -} - -float PS4_SYSV_ABI internal_strtof(const char* str, char** endptr) { - LOG_DEBUG(Lib_LibcInternal, "called"); - return std::strtof(str, endptr); -} - -s32 PS4_SYSV_ABI internal_strtoimax() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_strtok() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_strtok_r() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_strtok_s() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_strtol() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_strtold() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_strtoll() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_strtoul() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_strtoull() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_strtoumax() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_strtouq() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_strxfrm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal_wcsstr() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; +const char* PS4_SYSV_ABI internal_strchr(const char* str, int c) { + return std::strchr(str, c); } void RegisterlibSceLibcInternalStr(Core::Loader::SymbolsResolver* sym) { - - LIB_FUNCTION("ykNF6P3ZsdA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__CStrftime); - LIB_FUNCTION("we-vQBAugV8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__CStrxfrm); - LIB_FUNCTION("i2yN6xBwooo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Getstr); - LIB_FUNCTION("c41UEHVtiEA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Stod); - LIB_FUNCTION("QlcJbyd6jxM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Stodx); - LIB_FUNCTION("CpWcnrEZbLA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Stof); - LIB_FUNCTION("wO1-omboFjo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Stoflt); - LIB_FUNCTION("7dlAxeH-htg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Stofx); - LIB_FUNCTION("iNbtyJKM0iQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Stold); - LIB_FUNCTION("BKidCxmLC5w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Stoldx); - LIB_FUNCTION("7pNKcscKrf8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Stoll); - LIB_FUNCTION("mOnfZ5aNDQE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Stollx); - LIB_FUNCTION("Ecwid6wJMhY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Stolx); - LIB_FUNCTION("yhbF6MbVuYc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Stopfx); - LIB_FUNCTION("zlfEH8FmyUA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Stoul); - LIB_FUNCTION("q+9E0X3aWpU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Stoull); - LIB_FUNCTION("pSpDCDyxkaY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Stoullx); - LIB_FUNCTION("YDnLaav6W6Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Stoulx); - LIB_FUNCTION("Ouz5Q8+SUq4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Stoxflt); - LIB_FUNCTION("v6rXYSx-WGA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Strcollx); - LIB_FUNCTION("4F11tHMpJa0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Strerror); - LIB_FUNCTION("CpiD2ZXrhNo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__Strxfrmx); - LIB_FUNCTION("AV6ipCNa4Rw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strcasecmp); - LIB_FUNCTION("Ls4tzzhimqQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strcat); - LIB_FUNCTION("K+gcnFFJKVc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strcat_s); - LIB_FUNCTION("ob5xAW4ln-0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strchr); - LIB_FUNCTION("Ovb2dSJOAuE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strcmp); - LIB_FUNCTION("gjbmYpP-XJQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strcoll); - LIB_FUNCTION("kiZSXIWd9vg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strcpy); LIB_FUNCTION("5Xa2ACNECdo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_strcpy_s); - LIB_FUNCTION("q0F6yS-rCms", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strcspn); - LIB_FUNCTION("g7zzzLDYGw0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strdup); - LIB_FUNCTION("RIa6GnWp+iU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strerror); - LIB_FUNCTION("RBcs3uut1TA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strerror_r); - LIB_FUNCTION("o+ok6Y+DtgY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strerror_s); - LIB_FUNCTION("-g26XITGVgE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strerrorlen_s); - LIB_FUNCTION("Av3zjWi64Kw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strftime); - LIB_FUNCTION("ByfjUZsWiyg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strlcat); - LIB_FUNCTION("SfQIZcqvvms", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strlcpy); + LIB_FUNCTION("K+gcnFFJKVc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, + internal_strcat_s); + LIB_FUNCTION("aesyjrHVWy4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, + internal_strcmp); + LIB_FUNCTION("Ovb2dSJOAuE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, + internal_strncmp); LIB_FUNCTION("j4ViWNHEgww", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_strlen); - LIB_FUNCTION("pXvbDfchu6k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strncasecmp); - LIB_FUNCTION("kHg45qPC6f0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strncat); - LIB_FUNCTION("NC4MSB+BRQg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strncat_s); - LIB_FUNCTION("aesyjrHVWy4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strncmp); LIB_FUNCTION("6sJWiWSRuqk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_strncpy); LIB_FUNCTION("YNzNkJzYqEg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, internal_strncpy_s); - LIB_FUNCTION("XGnuIBmEmyk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strndup); - LIB_FUNCTION("5jNubw4vlAA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strnlen); - LIB_FUNCTION("DQbtGaBKlaw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strnlen_s); - LIB_FUNCTION("Xnrfb2-WhVw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strnstr); - LIB_FUNCTION("kDZvoVssCgQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strpbrk); - LIB_FUNCTION("9yDWMxEFdJU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strrchr); - LIB_FUNCTION("cJWGxiQPmDQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strsep); - LIB_FUNCTION("-kU6bB4M-+k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strspn); - LIB_FUNCTION("viiwFMaNamA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strstr); - LIB_FUNCTION("2vDqwBlpF-o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strtod); - LIB_FUNCTION("xENtRue8dpI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strtof); - LIB_FUNCTION("q5MWYCDfu3c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strtoimax); - LIB_FUNCTION("oVkZ8W8-Q8A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strtok); - LIB_FUNCTION("enqPGLfmVNU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strtok_r); - LIB_FUNCTION("-vXEQdRADLI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strtok_s); - LIB_FUNCTION("mXlxhmLNMPg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strtol); - LIB_FUNCTION("nW9JRkciRk4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strtold); - LIB_FUNCTION("VOBg+iNwB-4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strtoll); - LIB_FUNCTION("QxmSHBCuKTk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strtoul); - LIB_FUNCTION("5OqszGpy7Mg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strtoull); - LIB_FUNCTION("QNyUWGXmXNc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strtoumax); - LIB_FUNCTION("g-McpZfseZo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strtouq); - LIB_FUNCTION("zogPrkd46DY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_strxfrm); - LIB_FUNCTION("WDpobjImAb4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal_wcsstr); + LIB_FUNCTION("Ls4tzzhimqQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, + internal_strcat); + LIB_FUNCTION("ob5xAW4ln-0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, + internal_strchr); } } // namespace Libraries::LibcInternal diff --git a/src/core/libraries/libc_internal/libc_internal_stream.cpp b/src/core/libraries/libc_internal/libc_internal_stream.cpp deleted file mode 100644 index 2d793d9cb..000000000 --- a/src/core/libraries/libc_internal/libc_internal_stream.cpp +++ /dev/null @@ -1,3139 +0,0 @@ -// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project -// SPDX-License-Identifier: GPL-2.0-or-later - -#include "common/assert.h" -#include "common/logging/log.h" -#include "core/libraries/error_codes.h" -#include "core/libraries/libs.h" -#include "libc_internal_memory.h" - -namespace Libraries::LibcInternal { - -s32 PS4_SYSV_ABI internal__ZGVNSt14_Error_objectsIiE16_Iostream_objectE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZGVNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZGVNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZGVNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZGVNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZGVNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZGVNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZGVNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZGVNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZGVNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZGVNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZGVNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt19istreambuf_iteratorIcSt11char_traitsIcEE5equalERKS2_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt19istreambuf_iteratorIwSt11char_traitsIwEE5equalERKS2_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt24_Iostream_error_category4nameEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNKSt24_Iostream_error_category7messageEi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERd() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERe() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERj() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERPv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERt() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERd() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERe() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERj() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERPv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERt() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetffldEPcRS3_S6_RSt8ios_basePi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetifldEPcRS3_S6_NSt5_IosbIiE9_FmtflagsERKSt6locale() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE9_GetffldxEPcRS3_S6_RSt8ios_basePi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERd() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERe() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERj() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERPv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERt() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERd() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERe() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERf() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERj() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERPv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERt() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetffldEPcRS3_S6_RSt8ios_basePi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetifldEPcRS3_S6_NSt5_IosbIiE9_FmtflagsERKSt6locale() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE9_GetffldxEPcRS3_S6_RSt8ios_basePi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecd() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basece() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPKv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE4_PutES3_PKcm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE4_RepES3_cm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_FfmtEPccNSt5_IosbIiE9_FmtflagsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_FputES3_RSt8ios_basecPKcm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_FputES3_RSt8ios_basecPKcmmmm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_IfmtEPcPKcNSt5_IosbIiE9_FmtflagsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_IputES3_RSt8ios_basecPcm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basece() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecPKv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewd() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewe() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPKv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE4_PutES3_PKwm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE4_RepES3_wm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_FfmtEPccNSt5_IosbIiE9_FmtflagsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_FputES3_RSt8ios_basewPKcm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_FputES3_RSt8ios_basewPKcmmmm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_IfmtEPcPKcNSt5_IosbIiE9_FmtflagsE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_IputES3_RSt8ios_basewPcm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewd() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewe() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewl() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewPKv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewx() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewy() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE10date_orderEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_dateES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_timeES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_yearES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11get_weekdayES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE13do_date_orderEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE13get_monthnameES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14do_get_weekdayES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE16do_get_monthnameES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmcc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmPKcSE_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmcc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE7_GetfmtES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmPKc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE7_GetintERS3_S5_iiRiRKSt5ctypeIcE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_dateES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_timeES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_yearES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE10date_orderEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_dateES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_timeES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_yearES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11get_weekdayES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE13do_date_orderEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE13get_monthnameES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14do_get_weekdayES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE16do_get_monthnameES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmcc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmPKwSE_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmcc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE7_GetfmtES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmPKc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE7_GetintERS3_S5_iiRiRKSt5ctypeIwE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_dateES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_timeES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_yearES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPK2tmcc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPK2tmPKcSB_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecPK2tmcc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPK2tmcc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPK2tmPKwSB_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewPK2tmcc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERe() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERSs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERe() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERSs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetmfldERS3_S5_bRSt8ios_basePc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERe() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERSbIwS2_SaIwEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERe() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERSbIwS2_SaIwEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetmfldERS3_S5_bRSt8ios_basePw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_bRSt8ios_basece() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_bRSt8ios_basecRKSs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_bRSt8ios_basece() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_bRSt8ios_basecRKSs() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE8_PutmfldES3_bRSt8ios_basecbSsc() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_bRSt8ios_basewe() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_bRSt8ios_basewRKSbIwS2_SaIwEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_bRSt8ios_basewe() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_bRSt8ios_basewRKSbIwS2_SaIwEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE8_PutmfldES3_bRSt8ios_basewbSbIwS2_SaIwEEw() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_istreamIwSt11char_traitsIwEED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_istreamIwSt11char_traitsIwEED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryC2ERS2_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryD2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_ostreamIwSt11char_traitsIwEED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt13basic_ostreamIwSt11char_traitsIwEED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt14_Error_objectsIiE16_Iostream_objectE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt15basic_streambufIcSt11char_traitsIcEE6xsgetnEPci() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt15basic_streambufIcSt11char_traitsIcEE6xsputnEPKci() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt15basic_streambufIcSt11char_traitsIcEE9showmanycEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt15basic_streambufIwSt11char_traitsIwEE6xsgetnEPwi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt15basic_streambufIwSt11char_traitsIwEE6xsputnEPKwi() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt15basic_streambufIwSt11char_traitsIwEE9showmanycEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt24_Iostream_error_categoryD0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt24_Iostream_error_categoryD1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE5_InitERKSt8_Locinfo() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE5_InitERKSt8_Locinfo() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_InitERKSt8_Locinfo() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_InitERKSt8_Locinfo() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE5_TidyEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1EPKcm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2EPKcm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE5_TidyEv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1EPKcm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2EPKcm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_InitERKSt8_Locinfo() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_InitERKSt8_Locinfo() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9basic_iosIcSt11char_traitsIcEE4initEPSt15basic_streambufIcS1_Eb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9basic_iosIwSt11char_traitsIwEE4initEPSt15basic_streambufIwS1_Eb() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE5_InitERKSt8_Locinfo() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE5_InitERKSt8_Locinfo() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE4_PutES3_St22_String_const_iteratorISt11_String_valISt13_Simple_typesIcEEEm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE4_RepES3_cm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_InitERKSt8_Locinfo() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE4_PutES3_St22_String_const_iteratorISt11_String_valISt13_Simple_typesIwEEEm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE4_RepES3_wm() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_InitERKSt8_Locinfo() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZSt10_GetloctxtIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEiRT0_S5_mPKT_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZSt10_GetloctxtIcSt19istreambuf_iteratorIwSt11char_traitsIwEEEiRT0_S5_mPKT_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZSt10_GetloctxtIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEiRT0_S5_mPKT_() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZSt17iostream_categoryv() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt13basic_istreamIwSt11char_traitsIwEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt13basic_ostreamIwSt11char_traitsIwEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt15basic_streambufIcSt11char_traitsIcEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt15basic_streambufIwSt11char_traitsIwEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt24_Iostream_error_category() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt13basic_istreamIwSt11char_traitsIwEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt13basic_ostreamIwSt11char_traitsIwEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt15basic_streambufIcSt11char_traitsIcEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt15basic_streambufIwSt11char_traitsIwEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt24_Iostream_error_category() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTSSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt13basic_istreamIwSt11char_traitsIwEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt13basic_ostreamIwSt11char_traitsIwEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt24_Iostream_error_category() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI internal__ZTVSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetffldEPcRS3_S6_RSt8ios_basePiE4_Src() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetifldEPcRS3_S6_NSt5_IosbIiE9_FmtflagsERKSt6localeE4_Src() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE9_GetffldxEPcRS3_S6_RSt8ios_basePiE4_Src() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetffldEPcRS3_S6_RSt8ios_basePiE4_Src() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetifldEPcRS3_S6_NSt5_IosbIiE9_FmtflagsERKSt6localeE4_Src() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE9_GetffldxEPcRS3_S6_RSt8ios_basePiE4_Src() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetmfldERS3_S5_bRSt8ios_basePcE4_Src() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetmfldERS3_S5_bRSt8ios_basePwE4_Src() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_bRSt8ios_basecRKSsE4_Src() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -s32 PS4_SYSV_ABI -internal__ZZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_bRSt8ios_basewRKSbIwS2_SaIwEEE4_Src() { - LOG_ERROR(Lib_LibcInternal, "(STUBBED) called"); - return ORBIS_OK; -} - -void RegisterlibSceLibcInternalStream(Core::Loader::SymbolsResolver* sym) { - LIB_FUNCTION("ieNeByYxFgA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZGVNSt14_Error_objectsIiE16_Iostream_objectE); - LIB_FUNCTION("8o+oBXdeQPk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZGVNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE); - LIB_FUNCTION("5FD0gWEuuTs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZGVNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE); - LIB_FUNCTION("ZkP0sDpHLLg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZGVNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE); - LIB_FUNCTION("wozVkExRax4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZGVNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE); - LIB_FUNCTION("z-L6coXk6yo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZGVNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE); - LIB_FUNCTION("TuIEPzIwWcI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZGVNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE); - LIB_FUNCTION("Awj5m1LfcXQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZGVNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE); - LIB_FUNCTION("K+-VjJdCYVc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZGVNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE); - LIB_FUNCTION("HQAa3rCj8ho", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZGVNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE); - LIB_FUNCTION("koazg-62JMk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZGVNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE); - LIB_FUNCTION("HDnBZ+mkyjg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZGVNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE); - LIB_FUNCTION("u6UfGT9+HEA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt19istreambuf_iteratorIcSt11char_traitsIcEE5equalERKS2_); - LIB_FUNCTION("jZmLD-ASDto", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt19istreambuf_iteratorIwSt11char_traitsIwEE5equalERKS2_); - LIB_FUNCTION("sb2vivqtLS0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt24_Iostream_error_category4nameEv); - LIB_FUNCTION("n9-NJEULZ-0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt24_Iostream_error_category7messageEi); - LIB_FUNCTION( - "OWO5cpNw3NA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERb); - LIB_FUNCTION( - "mAwXCpkWaYc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERd); - LIB_FUNCTION( - "wUCRGap1j0U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERe); - LIB_FUNCTION( - "6RGkooTERsE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERf); - LIB_FUNCTION( - "N1VqUWz2OEI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERj); - LIB_FUNCTION( - "I2UzwkwwEPs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERl); - LIB_FUNCTION( - "2bfL3yIBi5k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERm); - LIB_FUNCTION( - "my9ujasm6-0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERPv); - LIB_FUNCTION( - "gozsp4urvq8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERt); - LIB_FUNCTION( - "4hiQK82QuLc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERx); - LIB_FUNCTION( - "eZfFLyWCkvg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERy); - LIB_FUNCTION( - "SmtBNDda5qU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERb); - LIB_FUNCTION( - "bNQpG-eKogg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERd); - LIB_FUNCTION( - "uukWbYS6Bn4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERe); - LIB_FUNCTION( - "IntAnFb+tw0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERf); - LIB_FUNCTION( - "ywJpNe675zo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERj); - LIB_FUNCTION( - "ALEXgLx9fqU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERl); - LIB_FUNCTION( - "Pq4PkG0x1fk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERm); - LIB_FUNCTION( - "VKdXFE7ualw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERPv); - LIB_FUNCTION( - "dRu2RLn4SKM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERt); - LIB_FUNCTION( - "F+AmVDFUyqM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERx); - LIB_FUNCTION( - "TtYifKtVkYA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERy); - LIB_FUNCTION( - "4+y8-2NsDw0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetffldEPcRS3_S6_RSt8ios_basePi); - LIB_FUNCTION( - "G9LB1YD5-xc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetifldEPcRS3_S6_NSt5_IosbIiE9_FmtflagsERKSt6locale); - LIB_FUNCTION( - "J-0I2PtiZc4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE9_GetffldxEPcRS3_S6_RSt8ios_basePi); - LIB_FUNCTION( - "vW-nnV62ea4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERb); - LIB_FUNCTION( - "+hjXHfvy1Mg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERd); - LIB_FUNCTION( - "xLZr4GJRMLo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERe); - LIB_FUNCTION( - "2mb8FYgER+E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERf); - LIB_FUNCTION( - "Y3hBU5FYmhM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERj); - LIB_FUNCTION( - "-m2YPwVCwJQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERl); - LIB_FUNCTION( - "94ZLp2+AOq0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERm); - LIB_FUNCTION( - "zomvAQ5RFdA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERPv); - LIB_FUNCTION( - "bZ+lKHGvOr8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERt); - LIB_FUNCTION( - "cG5hQhjFGog", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERx); - LIB_FUNCTION( - "banNSumaAZ0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERy); - LIB_FUNCTION( - "wEU8oFtBXT8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERb); - LIB_FUNCTION( - "t39dKpPEuVA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERd); - LIB_FUNCTION( - "MCtJ9D7B5Cs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERe); - LIB_FUNCTION( - "Gy2iRxp3LGk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERf); - LIB_FUNCTION( - "2bUUbbcqHUo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERj); - LIB_FUNCTION( - "QossXdwWltI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERl); - LIB_FUNCTION( - "ig6SRr1GCU4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERm); - LIB_FUNCTION( - "BNZq-mRvDS8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERPv); - LIB_FUNCTION( - "kU7PvJJKUng", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERt); - LIB_FUNCTION( - "Ou7GV51-ng4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERx); - LIB_FUNCTION( - "rYLrGFoqfi4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERy); - LIB_FUNCTION( - "W5VYncHdreo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetffldEPcRS3_S6_RSt8ios_basePi); - LIB_FUNCTION( - "GGqIV4cjzzI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetifldEPcRS3_S6_NSt5_IosbIiE9_FmtflagsERKSt6locale); - LIB_FUNCTION( - "bZ0oEGQUKO8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE9_GetffldxEPcRS3_S6_RSt8ios_basePi); - LIB_FUNCTION( - "nftirmo6hBg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecb); - LIB_FUNCTION( - "w9NzCYAjEpQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecd); - LIB_FUNCTION( - "VPcTGA-LwSo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basece); - LIB_FUNCTION( - "ffnhh0HcxJ4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecl); - LIB_FUNCTION( - "uODuM76vS4U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecm); - LIB_FUNCTION( - "8NVUcufbklM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPKv); - LIB_FUNCTION( - "NJtKruu9qOs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecx); - LIB_FUNCTION( - "dep6W2Ix35s", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecy); - LIB_FUNCTION( - "k8zgjeBmpVY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE4_PutES3_PKcm); - LIB_FUNCTION("tCihLs4UJxQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE4_RepES3_cm); - LIB_FUNCTION( - "w11G58-u4p8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_FfmtEPccNSt5_IosbIiE9_FmtflagsE); - LIB_FUNCTION( - "ll99KkqO6ig", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_FputES3_RSt8ios_basecPKcm); - LIB_FUNCTION( - "mNk6FfI8T7I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_FputES3_RSt8ios_basecPKcmmmm); - LIB_FUNCTION( - "xlgA01CQtBo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_IfmtEPcPKcNSt5_IosbIiE9_FmtflagsE); - LIB_FUNCTION( - "jykT-VWQVBY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_IputES3_RSt8ios_basecPcm); - LIB_FUNCTION( - "ke36E2bqNmI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecb); - LIB_FUNCTION( - "F+cp2B3cWNU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd); - LIB_FUNCTION( - "rLiFc4+HyHw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basece); - LIB_FUNCTION( - "I3+xmBWGPGo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecl); - LIB_FUNCTION( - "nlAk46weq1w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecm); - LIB_FUNCTION( - "0xgFRKf0Lc4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecPKv); - LIB_FUNCTION( - "H2KGT3vA7yQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecx); - LIB_FUNCTION( - "Vbeoft607aI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecy); - LIB_FUNCTION( - "mY9FWooxqJY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewb); - LIB_FUNCTION( - "V7aIsVIsIIA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewd); - LIB_FUNCTION( - "vCIFGeI6adI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewe); - LIB_FUNCTION( - "USLhWp7sZoU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewl); - LIB_FUNCTION( - "qtpzdwMMCPc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewm); - LIB_FUNCTION( - "xfOSCbCiY44", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPKv); - LIB_FUNCTION( - "ryykbHJ04Cw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewx); - LIB_FUNCTION( - "lmb3oBpMNPU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewy); - LIB_FUNCTION( - "kRGVhisjgMg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE4_PutES3_PKwm); - LIB_FUNCTION("-b+Avqa2v9k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE4_RepES3_wm); - LIB_FUNCTION( - "T07KcAOlIeU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_FfmtEPccNSt5_IosbIiE9_FmtflagsE); - LIB_FUNCTION( - "IdV-tXejEGQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_FputES3_RSt8ios_basewPKcm); - LIB_FUNCTION( - "B6JXVOMDdlw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_FputES3_RSt8ios_basewPKcmmmm); - LIB_FUNCTION( - "WheFSRlZ9JA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_IfmtEPcPKcNSt5_IosbIiE9_FmtflagsE); - LIB_FUNCTION( - "4pQ3B1BTMgo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_IputES3_RSt8ios_basewPcm); - LIB_FUNCTION( - "1C2-2WB9NN4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewb); - LIB_FUNCTION( - "sX3o6Zmihw0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewd); - LIB_FUNCTION( - "6OYWLisfrB8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewe); - LIB_FUNCTION( - "VpwhOe58wsM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewl); - LIB_FUNCTION( - "jHo78LGEtmU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewm); - LIB_FUNCTION( - "BDteGj1gqBY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewPKv); - LIB_FUNCTION( - "9SSHrlIamto", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewx); - LIB_FUNCTION( - "uX0nKsUo8gc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewy); - LIB_FUNCTION( - "ShlQcYrzRF8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE10date_orderEv); - LIB_FUNCTION( - "T85u2sPrKOo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_dateES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm); - LIB_FUNCTION( - "73GV+sRHbeY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_timeES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm); - LIB_FUNCTION( - "dSfKN47p6ac", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_yearES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm); - LIB_FUNCTION( - "KwJ5V3D0v3A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11get_weekdayES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm); - LIB_FUNCTION( - "8PIh8BFpNYQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE13do_date_orderEv); - LIB_FUNCTION( - "vvA7HtdtWnY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE13get_monthnameES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm); - LIB_FUNCTION( - "xzYpD5d24aA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14do_get_weekdayES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm); - LIB_FUNCTION( - "ZuCHPDq-dPw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE16do_get_monthnameES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm); - LIB_FUNCTION( - "+RuThw5axA4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmcc); - LIB_FUNCTION( - "S5WbPO54nD0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmPKcSE_); - LIB_FUNCTION( - "Vw03kdKZUN0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmcc); - LIB_FUNCTION( - "E7UermPZVcw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE7_GetfmtES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmPKc); - LIB_FUNCTION( - "8raXTYQ11cg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE7_GetintERS3_S5_iiRiRKSt5ctypeIcE); - LIB_FUNCTION( - "OY5mqEBxP+8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_dateES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm); - LIB_FUNCTION( - "rrqNi95bhMs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_timeES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm); - LIB_FUNCTION( - "5L5Aft+9nZU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_yearES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm); - LIB_FUNCTION( - "nc6OsiDx630", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE10date_orderEv); - LIB_FUNCTION( - "SYCwZXKZQ08", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_dateES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm); - LIB_FUNCTION( - "2pJJ0dl-aPQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_timeES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm); - LIB_FUNCTION( - "cRSJysDpVl4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_yearES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm); - LIB_FUNCTION( - "A0PftWMfrhk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11get_weekdayES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm); - LIB_FUNCTION( - "dP14OHWe4nI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE13do_date_orderEv); - LIB_FUNCTION( - "xy0MR+OOZI8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE13get_monthnameES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm); - LIB_FUNCTION( - "hGlkh5YpcKw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14do_get_weekdayES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm); - LIB_FUNCTION( - "R1ITHuTUMEI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE16do_get_monthnameES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm); - LIB_FUNCTION( - "64pqofAwJEg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmcc); - LIB_FUNCTION( - "B8c4P1vCixQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmPKwSE_); - LIB_FUNCTION( - "0MzJAexrlr4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmcc); - LIB_FUNCTION( - "r8003V6UwZg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE7_GetfmtES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmPKc); - LIB_FUNCTION( - "lhJWkEh-HXM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE7_GetintERS3_S5_iiRiRKSt5ctypeIwE); - LIB_FUNCTION( - "kwp-0uidHpw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_dateES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm); - LIB_FUNCTION( - "9TfGnN6xq-U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_timeES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm); - LIB_FUNCTION( - "Krt-A7EnHHs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_yearES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm); - LIB_FUNCTION( - "qkuA-unH7PU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPK2tmcc); - LIB_FUNCTION( - "j9LU8GsuEGw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPK2tmPKcSB_); - LIB_FUNCTION( - "+i81FtUCarA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecPK2tmcc); - LIB_FUNCTION( - "Nt6eyVKm+Z4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPK2tmcc); - LIB_FUNCTION( - "Sc0lXhQG5Ko", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPK2tmPKwSB_); - LIB_FUNCTION( - "Fr7j8dMsy4s", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewPK2tmcc); - LIB_FUNCTION( - "G84okRnyJJg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERe); - LIB_FUNCTION( - "2fxdcyt5tGs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERSs); - LIB_FUNCTION( - "IRVqdGwSNXE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERe); - LIB_FUNCTION( - "D2njLPpEt1E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERSs); - LIB_FUNCTION( - "CLT04GjI7UE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetmfldERS3_S5_bRSt8ios_basePc); - LIB_FUNCTION( - "cx-1THpef1A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERe); - LIB_FUNCTION( - "wWIsjOqfcSc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERSbIwS2_SaIwEE); - LIB_FUNCTION( - "zzubCm+nDzc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERe); - LIB_FUNCTION( - "DhXTD5eM7LQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERSbIwS2_SaIwEE); - LIB_FUNCTION( - "RalOJcOXJJo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetmfldERS3_S5_bRSt8ios_basePw); - LIB_FUNCTION( - "65cvm2NDLmU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_bRSt8ios_basece); - LIB_FUNCTION( - "DR029KeWsHw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_bRSt8ios_basecRKSs); - LIB_FUNCTION( - "iXVrhA51z0M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_bRSt8ios_basece); - LIB_FUNCTION( - "OR-4zyIi2aE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_bRSt8ios_basecRKSs); - LIB_FUNCTION( - "d57FDzON1h0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE8_PutmfldES3_bRSt8ios_basecbSsc); - LIB_FUNCTION( - "fsF-tGtGsD4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_bRSt8ios_basewe); - LIB_FUNCTION( - "JruBeQgsAaU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_bRSt8ios_basewRKSbIwS2_SaIwEE); - LIB_FUNCTION( - "wVY5DpvU6PU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_bRSt8ios_basewe); - LIB_FUNCTION( - "GDiCYtaiUyM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_bRSt8ios_basewRKSbIwS2_SaIwEE); - LIB_FUNCTION( - "r-JSsJQFUsY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE8_PutmfldES3_bRSt8ios_basewbSbIwS2_SaIwEEw); - LIB_FUNCTION("StJaKYTRdUE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_istreamIwSt11char_traitsIwEED0Ev); - LIB_FUNCTION("RP7ijkGGx50", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_istreamIwSt11char_traitsIwEED1Ev); - LIB_FUNCTION("4GbIwW5u5us", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryC2ERS2_); - LIB_FUNCTION("MB1VCygerRU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryD2Ev); - LIB_FUNCTION("7VRfkz22vPk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_ostreamIwSt11char_traitsIwEED0Ev); - LIB_FUNCTION("EYZJsnX58DE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt13basic_ostreamIwSt11char_traitsIwEED1Ev); - LIB_FUNCTION("D5m73fSIxAU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt14_Error_objectsIiE16_Iostream_objectE); - LIB_FUNCTION("VpwymQiS4ck", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt15basic_streambufIcSt11char_traitsIcEE6xsgetnEPci); - LIB_FUNCTION("sXaxl1QGorg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt15basic_streambufIcSt11char_traitsIcEE6xsputnEPKci); - LIB_FUNCTION("IAEl1Ta7yVU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt15basic_streambufIcSt11char_traitsIcEE9showmanycEv); - LIB_FUNCTION("lZVehk7yFok", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt15basic_streambufIwSt11char_traitsIwEE6xsgetnEPwi); - LIB_FUNCTION("041c37QfoUc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt15basic_streambufIwSt11char_traitsIwEE6xsputnEPKwi); - LIB_FUNCTION("olsoiZsezkk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt15basic_streambufIwSt11char_traitsIwEE9showmanycEv); - LIB_FUNCTION("jVwxMhFRw8Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt24_Iostream_error_categoryD0Ev); - LIB_FUNCTION("27Z-Cx1jbkU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt24_Iostream_error_categoryD1Ev); - LIB_FUNCTION("-mLzBSk-VGs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE); - LIB_FUNCTION( - "cXL+LN0lSwc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE5_InitERKSt8_Locinfo); - LIB_FUNCTION( - "p1WMhxL4Wds", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_); - LIB_FUNCTION("uXj-oWD2334", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em); - LIB_FUNCTION( - "iTODM3uXS2s", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom); - LIB_FUNCTION("RNmYVYlZvv8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em); - LIB_FUNCTION( - "yAobGI2Whrg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom); - LIB_FUNCTION("-1G1iE3KyGI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev); - LIB_FUNCTION("kAay0hfgDJs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev); - LIB_FUNCTION("6S8jzWWGcWo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev); - LIB_FUNCTION("NFAhHKyMnCg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE); - LIB_FUNCTION( - "4MHgRGOKOXY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE5_InitERKSt8_Locinfo); - LIB_FUNCTION( - "zTX7LL+w12Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_); - LIB_FUNCTION("18rLbEV-NQs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em); - LIB_FUNCTION( - "0UPU3kvxWb0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom); - LIB_FUNCTION("-+RKa3As0gE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em); - LIB_FUNCTION( - "e3shgCIZxRc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom); - LIB_FUNCTION("aHDdLa7jA1U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev); - LIB_FUNCTION("Zbaaq-d70ms", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev); - LIB_FUNCTION("bwVJf3kat9c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev); - LIB_FUNCTION("E14mW8pVpoE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE); - LIB_FUNCTION( - "BbJ4naWZeRw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_InitERKSt8_Locinfo); - LIB_FUNCTION( - "hNAh1l09UpA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_); - LIB_FUNCTION("LAEVU8cBSh4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em); - LIB_FUNCTION( - "Hg1im-rUeHc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom); - LIB_FUNCTION("1gYJIrfHxkQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em); - LIB_FUNCTION( - "Mniutm2JL2M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom); - LIB_FUNCTION("aOK5ucXO-5g", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev); - LIB_FUNCTION("WoCt9o2SYHw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev); - LIB_FUNCTION("U4JP-R+-70c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev); - LIB_FUNCTION("kImHEIWZ58Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE); - LIB_FUNCTION( - "V2FICbvPa+s", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_InitERKSt8_Locinfo); - LIB_FUNCTION( - "6iDi6e2e4x8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_); - LIB_FUNCTION("xdHqQoggdfo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em); - LIB_FUNCTION( - "Ky+C-qbKcX0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom); - LIB_FUNCTION("f1ZGLUnQGgo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em); - LIB_FUNCTION( - "0Pd-K5jGcgM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom); - LIB_FUNCTION("jyXTVnmlJD4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev); - LIB_FUNCTION("WiUy3dEtCOQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev); - LIB_FUNCTION("6hV3y21d59k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev); - LIB_FUNCTION("a54t8+k7KpY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE); - LIB_FUNCTION("+yrOX7MgVlk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE5_TidyEv); - LIB_FUNCTION( - "eMnBe5mZFLw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_); - LIB_FUNCTION("13xzrgS8N4o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em); - LIB_FUNCTION("9pPbNXw5N9E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1EPKcm); - LIB_FUNCTION( - "iO5AOflrTaA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom); - LIB_FUNCTION("dU8Q2yzFNQg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em); - LIB_FUNCTION("M0n7l76UVyE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2EPKcm); - LIB_FUNCTION( - "l7OtvplI42U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom); - LIB_FUNCTION("mmq9OwwYx74", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev); - LIB_FUNCTION("Cp9ksNOeun8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev); - LIB_FUNCTION("dOKh96qQFd0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev); - LIB_FUNCTION("Q17eavfOw2Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE); - LIB_FUNCTION("ImblNB7fVVU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE5_TidyEv); - LIB_FUNCTION( - "e5jQyuEE+9U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_); - LIB_FUNCTION("J2xO4cttypo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em); - LIB_FUNCTION("gOzIhGUAkME", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1EPKcm); - LIB_FUNCTION( - "y0hzUSFrkng", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom); - LIB_FUNCTION("p-SW25yE-Q8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em); - LIB_FUNCTION("XBmd6G-HoYI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2EPKcm); - LIB_FUNCTION( - "bU3S1OS1sc0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom); - LIB_FUNCTION("8H3yBUytv-0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev); - LIB_FUNCTION("QTgRx1NTp6o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev); - LIB_FUNCTION("Zqc++JB04Qs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev); - LIB_FUNCTION("BamOsNbUcn4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE); - LIB_FUNCTION( - "QdPT7uDTlo0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_InitERKSt8_Locinfo); - LIB_FUNCTION( - "ec0YLGHS8cw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_); - LIB_FUNCTION("6htjEH2Gi-w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em); - LIB_FUNCTION( - "u5yK3bGG1+w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom); - LIB_FUNCTION("6NH0xVj6p7M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em); - LIB_FUNCTION( - "IuFImJ5+kTk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom); - LIB_FUNCTION("WQQlL0n2SpU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev); - LIB_FUNCTION("h+c9OSfCAEg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev); - LIB_FUNCTION("vu0B+BGlol4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev); - LIB_FUNCTION("JFiji2DpvXQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE); - LIB_FUNCTION( - "ZolDcuDSD0Q", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_InitERKSt8_Locinfo); - LIB_FUNCTION( - "bF2uVCqVhBY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_); - LIB_FUNCTION("X3DrtC2AZCI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em); - LIB_FUNCTION( - "oi3kpQPqpMY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom); - LIB_FUNCTION("lOF5jrFNZUA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em); - LIB_FUNCTION( - "b1LciG4lUUk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom); - LIB_FUNCTION("6yplvTHbxpE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev); - LIB_FUNCTION("CiD6-BPDZrA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev); - LIB_FUNCTION("8PJ9qmklj2c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev); - LIB_FUNCTION("UQPicLg8Sx8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9basic_iosIcSt11char_traitsIcEE4initEPSt15basic_streambufIcS1_Eb); - LIB_FUNCTION("uqLGWOX7-YE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9basic_iosIwSt11char_traitsIwEE4initEPSt15basic_streambufIwS1_Eb); - LIB_FUNCTION("TsGewdW9Rto", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE); - LIB_FUNCTION( - "6zg3ziZ4Qis", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE5_InitERKSt8_Locinfo); - LIB_FUNCTION( - "MSSvHmcbs3g", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_); - LIB_FUNCTION("YGPopdkhujM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em); - LIB_FUNCTION( - "7NQGsY7VY3c", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom); - LIB_FUNCTION("f+1EaDVL5C4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em); - LIB_FUNCTION( - "iWtXRduTjHA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom); - LIB_FUNCTION("b9QSruV4nnc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev); - LIB_FUNCTION("zkCx9c2QKBc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev); - LIB_FUNCTION("CClObiVHzDY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev); - LIB_FUNCTION("dplyQ6+xatg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE); - LIB_FUNCTION( - "JOj6qfc4VLs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE5_InitERKSt8_Locinfo); - LIB_FUNCTION( - "DTH1zTBrOO8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_); - LIB_FUNCTION("bY9Y0J3GGbA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em); - LIB_FUNCTION( - "ej+44l1PjjY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom); - LIB_FUNCTION("x5yAFCJRz8I", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em); - LIB_FUNCTION( - "m2lChTx-9tM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom); - LIB_FUNCTION("RB3ratfpZDc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev); - LIB_FUNCTION("a6yvHMSqsV0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev); - LIB_FUNCTION("7ZmeGHyM6ew", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev); - LIB_FUNCTION("hf2Ljaf19Fs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE); - LIB_FUNCTION( - "66AuqgLnsQE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE4_PutES3_St22_String_const_iteratorISt11_String_valISt13_Simple_typesIcEEEm); - LIB_FUNCTION( - "1dY2KJfkgMM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE4_RepES3_cm); - LIB_FUNCTION( - "riBxNiKLvI0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_InitERKSt8_Locinfo); - LIB_FUNCTION( - "w9fCz0pbHdw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_); - LIB_FUNCTION("Qi5fpNt5+T0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em); - LIB_FUNCTION( - "mdYczJb+bb0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom); - LIB_FUNCTION("XqbpfYmAZB4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em); - LIB_FUNCTION( - "b2na0Dzd5j8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom); - LIB_FUNCTION("s2zG12AYKTg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev); - LIB_FUNCTION("AnE9WWbyWkM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev); - LIB_FUNCTION("MuACiCSA8-s", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev); - LIB_FUNCTION("pzfFqaTMsFc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE); - LIB_FUNCTION( - "-hrHhi-UFxs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE4_PutES3_St22_String_const_iteratorISt11_String_valISt13_Simple_typesIwEEEm); - LIB_FUNCTION( - "6QU40olMkOM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE4_RepES3_wm); - LIB_FUNCTION( - "kJmdxo4uM+8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_InitERKSt8_Locinfo); - LIB_FUNCTION( - "0sHarDG9BY4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_); - LIB_FUNCTION("rme+Po9yI5M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em); - LIB_FUNCTION( - "RV6sGVpYa-o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom); - LIB_FUNCTION("jIvWFH24Bjw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em); - LIB_FUNCTION( - "aTjYlKCxPGo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom); - LIB_FUNCTION("qkl3Siab04M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev); - LIB_FUNCTION("hnGhTkIDFHg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev); - LIB_FUNCTION("4+oswXtp7PQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev); - LIB_FUNCTION( - "bsohl1ZrRXE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt10_GetloctxtIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEiRT0_S5_mPKT_); - LIB_FUNCTION( - "FX+eS2YsEtY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt10_GetloctxtIcSt19istreambuf_iteratorIwSt11char_traitsIwEEEiRT0_S5_mPKT_); - LIB_FUNCTION( - "i4J5FvRPG-w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt10_GetloctxtIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEiRT0_S5_mPKT_); - LIB_FUNCTION("V23qt24VPVs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZSt17iostream_categoryv); - LIB_FUNCTION("iXChH4Elf7M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt13basic_istreamIwSt11char_traitsIwEE); - LIB_FUNCTION("Lc-l1GQi7tg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt13basic_ostreamIwSt11char_traitsIwEE); - LIB_FUNCTION("FCuvlxsgg0w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt24_Iostream_error_category); - LIB_FUNCTION("ymXfiwv59Z0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt15basic_streambufIcSt11char_traitsIcEE); - LIB_FUNCTION("muIOyDB+DP8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt15basic_streambufIwSt11char_traitsIwEE); - LIB_FUNCTION("6ddOFPDvuCo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE); - LIB_FUNCTION("dO7-MxIPfsw", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE); - LIB_FUNCTION("RYlvfQvnOzo", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE); - LIB_FUNCTION("C3sAx2aJy3E", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE); - LIB_FUNCTION("C4j57iQD4I8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE); - LIB_FUNCTION("oYliMCqNYQg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE); - LIB_FUNCTION("33t+tvosxCI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE); - LIB_FUNCTION("h9C+J68WriE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE); - LIB_FUNCTION("oNAnn5cOxfs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE); - LIB_FUNCTION("QNAIWEkBocY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE); - LIB_FUNCTION("hBeW7FhedsY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE); - LIB_FUNCTION("7DzM2fl46gU", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE); - LIB_FUNCTION("IfWUkB7Snkc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt15basic_streambufIcSt11char_traitsIcEE); - LIB_FUNCTION("qiloU7D8MBM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt15basic_streambufIwSt11char_traitsIwEE); - LIB_FUNCTION("0Ys3rv0tw7Y", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt13basic_istreamIwSt11char_traitsIwEE); - LIB_FUNCTION("R72NCZqMX58", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt13basic_ostreamIwSt11char_traitsIwEE); - LIB_FUNCTION("ItmiNlkXVkQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt24_Iostream_error_category); - LIB_FUNCTION("5DdJdPeXCHE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE); - LIB_FUNCTION("XYqrcE4cVMM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE); - LIB_FUNCTION("B9rn6eKNPJg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE); - LIB_FUNCTION("KY+yxjxFBSY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE); - LIB_FUNCTION("-l+ODHZ96LI", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE); - LIB_FUNCTION("bn3sb2SwGk8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE); - LIB_FUNCTION("OI989Lb3WK0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE); - LIB_FUNCTION("gqwPsSmdh+U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE); - LIB_FUNCTION("K8CzKJ7h1-8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE); - LIB_FUNCTION("Q3YIaCcEeOM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE); - LIB_FUNCTION("wRyKNdtYYEY", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE); - LIB_FUNCTION("0x4NT++LU9s", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTSSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE); - LIB_FUNCTION("izmoTISVoF8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED0Ev); - LIB_FUNCTION("q05IXuNA2NE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED1Ev); - LIB_FUNCTION("0j1jspKbuFk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev); - LIB_FUNCTION("HSkPyRyFFHQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev); - LIB_FUNCTION("DBO-xlHHEn8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt13basic_istreamIwSt11char_traitsIwEE); - LIB_FUNCTION("BMuRmwMy6eE", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt13basic_ostreamIwSt11char_traitsIwEE); - LIB_FUNCTION("lJPCM50sdTc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt24_Iostream_error_category); - LIB_FUNCTION("KfcTPbeaOqg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE); - LIB_FUNCTION("Y9C9GeKyZ3A", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE); - LIB_FUNCTION("1kZFcktOm+s", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE); - LIB_FUNCTION("59oywaaZbJk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE); - LIB_FUNCTION("o4kt51-uO48", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE); - LIB_FUNCTION("sEca1nUOueA", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE); - LIB_FUNCTION("OwfBD-2nhJQ", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE); - LIB_FUNCTION("5KOPB+1eEfs", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE); - LIB_FUNCTION("3n3wCJGFP7o", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE); - LIB_FUNCTION("CUkG1cK2T+U", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE); - LIB_FUNCTION("zdCex1HjCCM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE); - LIB_FUNCTION("ogi5ZolMUs4", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZTVSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE); - LIB_FUNCTION( - "4-Fllbzfh2k", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetffldEPcRS3_S6_RSt8ios_basePiE4_Src); - LIB_FUNCTION( - "NQW6QjEPUak", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetifldEPcRS3_S6_NSt5_IosbIiE9_FmtflagsERKSt6localeE4_Src); - LIB_FUNCTION( - "3P+CcdakSi0", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE9_GetffldxEPcRS3_S6_RSt8ios_basePiE4_Src); - LIB_FUNCTION( - "o-gc5R8f50M", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetffldEPcRS3_S6_RSt8ios_basePiE4_Src); - LIB_FUNCTION( - "3kjXzznHyCg", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetifldEPcRS3_S6_NSt5_IosbIiE9_FmtflagsERKSt6localeE4_Src); - LIB_FUNCTION( - "DKkwPpi+uWc", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE9_GetffldxEPcRS3_S6_RSt8ios_basePiE4_Src); - LIB_FUNCTION( - "mZW-My-zemM", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetmfldERS3_S5_bRSt8ios_basePcE4_Src); - LIB_FUNCTION( - "HCzNCcPxu+w", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetmfldERS3_S5_bRSt8ios_basePwE4_Src); - LIB_FUNCTION( - "sHagUsvHBnk", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_bRSt8ios_basecRKSsE4_Src); - LIB_FUNCTION( - "A5EX+eJmQI8", "libSceLibcInternal", 1, "libSceLibcInternal", 1, 1, - internal__ZZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_bRSt8ios_basewRKSbIwS2_SaIwEEE4_Src); -} - -} // namespace Libraries::LibcInternal diff --git a/src/core/libraries/libc_internal/libc_internal_stream.h b/src/core/libraries/libc_internal/libc_internal_stream.h deleted file mode 100644 index e245454aa..000000000 --- a/src/core/libraries/libc_internal/libc_internal_stream.h +++ /dev/null @@ -1,14 +0,0 @@ -// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project -// SPDX-License-Identifier: GPL-2.0-or-later - -#pragma once - -#include "common/types.h" - -namespace Core::Loader { -class SymbolsResolver; -} - -namespace Libraries::LibcInternal { -void RegisterlibSceLibcInternalStream(Core::Loader::SymbolsResolver* sym); -} // namespace Libraries::LibcInternal \ No newline at end of file diff --git a/src/core/libraries/libc_internal/printf.h b/src/core/libraries/libc_internal/printf.h new file mode 100644 index 000000000..fe63481a0 --- /dev/null +++ b/src/core/libraries/libc_internal/printf.h @@ -0,0 +1,763 @@ +// SPDX-FileCopyrightText: Copyright 2014-2018 Marco Paland (info@paland.com) +// SPDX-License-Identifier: MIT + +/////////////////////////////////////////////////////////////////////////////// +// \author (c) Marco Paland (info@paland.com) +// 2014-2018, PALANDesign Hannover, Germany +// +// \license The MIT License (MIT) +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// +// \brief Tiny printf, sprintf and snprintf implementation, optimized for speed on +// embedded systems with a very limited resources. +// Use this instead of bloated standard/newlib printf. +// These routines are thread safe and reentrant! +// +/////////////////////////////////////////////////////////////////////////////// +// Vita3K emulator project +// Copyright (C) 2023 Vita3K team +// +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License along +// with this program; if not, write to the Free Software Foundation, Inc., +// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +// copied from Vita3k project at 6/10/2023 (latest update 30/06/2023) +// modifications for adapting va_args parameters + +#pragma once + +#include + +#include +#include +#include +#include +#include +#include + +#include "common/va_ctx.h" + +namespace Libraries::LibcInternal { +// ntoa conversion buffer size, this must be big enough to hold +// one converted numeric number including padded zeros (dynamically created on stack) +// 32 byte is a good default +#define PRINTF_NTOA_BUFFER_SIZE 32U + +// ftoa conversion buffer size, this must be big enough to hold +// one converted float number including padded zeros (dynamically created on stack) +// 32 byte is a good default +#define PRINTF_FTOA_BUFFER_SIZE 32U + +// define this to support floating point (%f) +#define PRINTF_SUPPORT_FLOAT + +// define this to support long long types (%llu or %p) +#define PRINTF_SUPPORT_LONG_LONG + +// define this to support the ptrdiff_t type (%t) +// ptrdiff_t is normally defined in as long or long long type +#define PRINTF_SUPPORT_PTRDIFF_T + +/////////////////////////////////////////////////////////////////////////////// + +// internal flag definitions +#define FLAGS_ZEROPAD (1U << 0U) +#define FLAGS_LEFT (1U << 1U) +#define FLAGS_PLUS (1U << 2U) +#define FLAGS_SPACE (1U << 3U) +#define FLAGS_HASH (1U << 4U) +#define FLAGS_UPPERCASE (1U << 5U) +#define FLAGS_CHAR (1U << 6U) +#define FLAGS_SHORT (1U << 7U) +#define FLAGS_LONG (1U << 8U) +#define FLAGS_LONG_LONG (1U << 9U) +#define FLAGS_PRECISION (1U << 10U) +#define FLAGS_WIDTH (1U << 11U) + +// output function type +typedef void (*out_fct_type)(char character, void* buffer, size_t idx, size_t maxlen); + +// wrapper (used as buffer) for output function type +typedef struct { + void (*fct)(char character, void* arg); + void* arg; +} out_fct_wrap_type; + +// internal buffer output +static inline void _out_buffer(char character, void* buffer, size_t idx, size_t maxlen) { + if (idx < maxlen) { + ((char*)buffer)[idx] = character; + } +} + +// internal null output +static inline void _out_null(char character, void* buffer, size_t idx, size_t maxlen) { + (void)character; + (void)buffer; + (void)idx; + (void)maxlen; +} + +// internal output function wrapper +static inline void _out_fct(char character, void* buffer, size_t idx, size_t maxlen) { + (void)idx; + (void)maxlen; + // buffer is the output fct pointer + ((out_fct_wrap_type*)buffer)->fct(character, ((out_fct_wrap_type*)buffer)->arg); +} + +// internal strlen +// \return The length of the string (excluding the terminating 0) +static inline unsigned int _strlen(const char* str) { + const char* s; + for (s = str; *s; ++s) + ; + return (unsigned int)(s - str); +} + +// internal test if char is a digit (0-9) +// \return true if char is a digit +static inline bool _is_digit(char ch) { + return (ch >= '0') && (ch <= '9'); +} + +// internal ASCII string to unsigned int conversion +static inline unsigned int _atoi(const char** str) { + unsigned int i = 0U; + while (_is_digit(**str)) { + i = i * 10U + (unsigned int)(*((*str)++) - '0'); + } + return i; +} + +// internal itoa format +static inline size_t _ntoa_format(out_fct_type out, char* buffer, size_t idx, size_t maxlen, + char* buf, size_t len, bool negative, unsigned int base, + unsigned int prec, unsigned int width, unsigned int flags) { + const size_t start_idx = idx; + + // pad leading zeros + while (!(flags & FLAGS_LEFT) && (len < prec) && (len < PRINTF_NTOA_BUFFER_SIZE)) { + buf[len++] = '0'; + } + while (!(flags & FLAGS_LEFT) && (flags & FLAGS_ZEROPAD) && (len < width) && + (len < PRINTF_NTOA_BUFFER_SIZE)) { + buf[len++] = '0'; + } + + // handle hash + if (flags & FLAGS_HASH) { + if (((len == prec) || (len == width)) && (len > 0U)) { + len--; + if ((base == 16U) && (len > 0U)) { + len--; + } + } + if ((base == 16U) && !(flags & FLAGS_UPPERCASE) && (len < PRINTF_NTOA_BUFFER_SIZE)) { + buf[len++] = 'x'; + } + if ((base == 16U) && (flags & FLAGS_UPPERCASE) && (len < PRINTF_NTOA_BUFFER_SIZE)) { + buf[len++] = 'X'; + } + if (len < PRINTF_NTOA_BUFFER_SIZE) { + buf[len++] = '0'; + } + } + + // handle sign + if ((len == width) && (negative || (flags & FLAGS_PLUS) || (flags & FLAGS_SPACE))) { + len--; + } + if (len < PRINTF_NTOA_BUFFER_SIZE) { + if (negative) { + buf[len++] = '-'; + } else if (flags & FLAGS_PLUS) { + buf[len++] = '+'; // ignore the space if the '+' exists + } else if (flags & FLAGS_SPACE) { + buf[len++] = ' '; + } + } + + // pad spaces up to given width + if (!(flags & FLAGS_LEFT) && !(flags & FLAGS_ZEROPAD)) { + for (size_t i = len; i < width; i++) { + out(' ', buffer, idx++, maxlen); + } + } + + // reverse string + for (size_t i = 0U; i < len; i++) { + out(buf[len - i - 1U], buffer, idx++, maxlen); + } + + // append pad spaces up to given width + if (flags & FLAGS_LEFT) { + while (idx - start_idx < width) { + out(' ', buffer, idx++, maxlen); + } + } + + return idx; +} + +// internal itoa for 'long' type +static inline size_t _ntoa_long(out_fct_type out, char* buffer, size_t idx, size_t maxlen, + unsigned long value, bool negative, unsigned long base, + unsigned int prec, unsigned int width, unsigned int flags) { + char buf[PRINTF_NTOA_BUFFER_SIZE]; + size_t len = 0U; + + // write if precision != 0 and value is != 0 + if (!(flags & FLAGS_PRECISION) || value) { + do { + const char digit = (char)(value % base); + buf[len++] = + digit < 10 ? '0' + digit : (flags & FLAGS_UPPERCASE ? 'A' : 'a') + digit - 10; + value /= base; + } while (value && (len < PRINTF_NTOA_BUFFER_SIZE)); + } + + return _ntoa_format(out, buffer, idx, maxlen, buf, len, negative, (unsigned int)base, prec, + width, flags); +} + +// internal itoa for 'long long' type +#if defined(PRINTF_SUPPORT_LONG_LONG) +static inline size_t _ntoa_long_long(out_fct_type out, char* buffer, size_t idx, size_t maxlen, + unsigned long long value, bool negative, + unsigned long long base, unsigned int prec, unsigned int width, + unsigned int flags) { + char buf[PRINTF_NTOA_BUFFER_SIZE]; + size_t len = 0U; + + // write if precision != 0 and value is != 0 + if (!(flags & FLAGS_PRECISION) || value) { + do { + const char digit = (char)(value % base); + buf[len++] = + digit < 10 ? '0' + digit : (flags & FLAGS_UPPERCASE ? 'A' : 'a') + digit - 10; + value /= base; + } while (value && (len < PRINTF_NTOA_BUFFER_SIZE)); + } + + return _ntoa_format(out, buffer, idx, maxlen, buf, len, negative, (unsigned int)base, prec, + width, flags); +} +#endif // PRINTF_SUPPORT_LONG_LONG + +#if defined(PRINTF_SUPPORT_FLOAT) +static inline size_t _ftoa(out_fct_type out, char* buffer, size_t idx, size_t maxlen, double value, + unsigned int prec, unsigned int width, unsigned int flags) { + char buf[PRINTF_FTOA_BUFFER_SIZE]; + size_t len = 0U; + double diff = 0.0; + + // if input is larger than thres_max, revert to exponential + const double thres_max = (double)0x7FFFFFFF; + + // powers of 10 + static const double pow10[] = {1, 10, 100, 1000, 10000, + 100000, 1000000, 10000000, 100000000, 1000000000}; + + // test for negative + bool negative = false; + if (value < 0) { + negative = true; + value = 0 - value; + } + + // set default precision to 6, if not set explicitly + if (!(flags & FLAGS_PRECISION)) { + prec = 6U; + } + // limit precision to 9, cause a prec >= 10 can lead to overflow errors + while ((len < PRINTF_FTOA_BUFFER_SIZE) && (prec > 9U)) { + buf[len++] = '0'; + prec--; + } + + int whole = (int)value; + double tmp = (value - whole) * pow10[prec]; + unsigned long frac = (unsigned long)tmp; + diff = tmp - frac; + + if (diff > 0.5) { + ++frac; + // handle rollover, e.g. case 0.99 with prec 1 is 1.0 + if (frac >= pow10[prec]) { + frac = 0; + ++whole; + } + } else if ((diff == 0.5) && ((frac == 0U) || (frac & 1U))) { + // if halfway, round up if odd, OR if last digit is 0 + ++frac; + } + + // TBD: for very large numbers switch back to native sprintf for exponentials. Anyone want to + // write code to replace this? Normal printf behavior is to print EVERY whole number digit which + // can be 100s of characters overflowing your buffers == bad + if (value > thres_max) { + return 0U; + } + + if (prec == 0U) { + diff = value - (double)whole; + if (diff > 0.5) { + // greater than 0.5, round up, e.g. 1.6 -> 2 + ++whole; + } else if ((diff == 0.5) && (whole & 1)) { + // exactly 0.5 and ODD, then round up + // 1.5 -> 2, but 2.5 -> 2 + ++whole; + } + } else { + unsigned int count = prec; + // now do fractional part, as an unsigned number + while (len < PRINTF_FTOA_BUFFER_SIZE) { + --count; + buf[len++] = (char)(48U + (frac % 10U)); + if (!(frac /= 10U)) { + break; + } + } + // add extra 0s + while ((len < PRINTF_FTOA_BUFFER_SIZE) && (count-- > 0U)) { + buf[len++] = '0'; + } + if (len < PRINTF_FTOA_BUFFER_SIZE) { + // add decimal + buf[len++] = '.'; + } + } + + // do whole part, number is reversed + while (len < PRINTF_FTOA_BUFFER_SIZE) { + buf[len++] = (char)(48 + (whole % 10)); + if (!(whole /= 10)) { + break; + } + } + + // pad leading zeros + while (!(flags & FLAGS_LEFT) && (flags & FLAGS_ZEROPAD) && (len < width) && + (len < PRINTF_FTOA_BUFFER_SIZE)) { + buf[len++] = '0'; + } + + // handle sign + if ((len == width) && (negative || (flags & FLAGS_PLUS) || (flags & FLAGS_SPACE))) { + len--; + } + if (len < PRINTF_FTOA_BUFFER_SIZE) { + if (negative) { + buf[len++] = '-'; + } else if (flags & FLAGS_PLUS) { + buf[len++] = '+'; // ignore the space if the '+' exists + } else if (flags & FLAGS_SPACE) { + buf[len++] = ' '; + } + } + + // pad spaces up to given width + if (!(flags & FLAGS_LEFT) && !(flags & FLAGS_ZEROPAD)) { + for (size_t i = len; i < width; i++) { + out(' ', buffer, idx++, maxlen); + } + } + + // reverse string + for (size_t i = 0U; i < len; i++) { + out(buf[len - i - 1U], buffer, idx++, maxlen); + } + + // append pad spaces up to given width + if (flags & FLAGS_LEFT) { + while (idx < width) { + out(' ', buffer, idx++, maxlen); + } + } + + return idx; +} +#endif // PRINTF_SUPPORT_FLOAT + +// internal vsnprintf +static inline int _vsnprintf(out_fct_type out, char* buffer, const char* format, + Common::VaList* va_list) { + unsigned int flags, width, precision, n; + size_t idx = 0U; + auto maxlen = static_cast(-1); + + if (!buffer) { + // use null output function + out = _out_null; + } + + while (*format) { + // format specifier? %[flags][width][.precision][length] + if (*format != '%') { + // no + out(*format, buffer, idx++, maxlen); + format++; + continue; + } else { + // yes, evaluate it + format++; + } + + // evaluate flags + flags = 0U; + do { + switch (*format) { + case '0': + flags |= FLAGS_ZEROPAD; + format++; + n = 1U; + break; + case '-': + flags |= FLAGS_LEFT; + format++; + n = 1U; + break; + case '+': + flags |= FLAGS_PLUS; + format++; + n = 1U; + break; + case ' ': + flags |= FLAGS_SPACE; + format++; + n = 1U; + break; + case '#': + flags |= FLAGS_HASH; + format++; + n = 1U; + break; + default: + n = 0U; + break; + } + } while (n); + + // evaluate width field + width = 0U; + if (_is_digit(*format)) { + width = _atoi(&format); + } else if (*format == '*') { + const int w = vaArgInteger(va_list); // const int w = va.next(cpu, mem); + + if (w < 0) { + flags |= FLAGS_LEFT; // reverse padding + width = (unsigned int)-w; + } else { + width = (unsigned int)w; + } + format++; + } + + // evaluate precision field + precision = 0U; + if (*format == '.') { + flags |= FLAGS_PRECISION; + format++; + if (_is_digit(*format)) { + precision = _atoi(&format); + } else if (*format == '*') { + precision = + vaArgInteger(va_list); // precision = (unsigned int)va.next(cpu, mem); + format++; + } + } + + // evaluate length field + switch (*format) { + case 'l': + flags |= FLAGS_LONG; + format++; + if (*format == 'l') { + flags |= FLAGS_LONG_LONG; + format++; + } + break; + case 'h': + flags |= FLAGS_SHORT; + format++; + if (*format == 'h') { + flags |= FLAGS_CHAR; + format++; + } + break; +#if defined(PRINTF_SUPPORT_PTRDIFF_T) + case 't': + flags |= (sizeof(ptrdiff_t) == sizeof(long) ? FLAGS_LONG : FLAGS_LONG_LONG); + format++; + break; +#endif + case 'j': + flags |= (sizeof(intmax_t) == sizeof(long) ? FLAGS_LONG : FLAGS_LONG_LONG); + format++; + break; + case 'z': + flags |= (sizeof(size_t) == sizeof(long) ? FLAGS_LONG : FLAGS_LONG_LONG); + format++; + break; + default: + break; + } + + // evaluate specifier + switch (*format) { + case 'd': + case 'i': + case 'u': + case 'x': + case 'X': + case 'o': + case 'b': { + // set the base + unsigned int base; + if (*format == 'x' || *format == 'X') { + base = 16U; + } else if (*format == 'o') { + base = 8U; + } else if (*format == 'b') { + base = 2U; + flags &= ~FLAGS_HASH; // no hash for bin format + } else { + base = 10U; + flags &= ~FLAGS_HASH; // no hash for dec format + } + // uppercase + if (*format == 'X') { + flags |= FLAGS_UPPERCASE; + } + + // no plus or space flag for u, x, X, o, b + if ((*format != 'i') && (*format != 'd')) { + flags &= ~(FLAGS_PLUS | FLAGS_SPACE); + } + + // convert the integer + if ((*format == 'i') || (*format == 'd')) { + // signed + if (flags & FLAGS_LONG_LONG) { +#if defined(PRINTF_SUPPORT_LONG_LONG) + auto value = vaArgLongLong( + va_list); // const long long value = va.next(cpu, mem); + idx = _ntoa_long_long(out, buffer, idx, maxlen, + (unsigned long long)(value > 0 ? value : 0 - value), + value < 0, base, precision, width, flags); +#endif + } else if (flags & FLAGS_LONG) { + auto value = vaArgLong(va_list); // const long value = va.next(cpu, mem); + idx = _ntoa_long(out, buffer, idx, maxlen, + (unsigned long)(value > 0 ? value : 0 - value), value < 0, + base, precision, width, flags); + } else { + // const int value = (flags & FLAGS_CHAR) ? (char)va.next(cpu, mem) : + // (flags & FLAGS_SHORT) ? (short int)va.next(cpu, mem): va.next(cpu, + // mem); + const int value = + (flags & FLAGS_CHAR) ? static_cast(vaArgInteger(va_list)) + : (flags & FLAGS_SHORT) ? static_cast(vaArgInteger(va_list)) + : vaArgInteger(va_list); + idx = _ntoa_long(out, buffer, idx, maxlen, + (unsigned int)(value > 0 ? value : 0 - value), value < 0, base, + precision, width, flags); + } + } else { + // unsigned + if (flags & FLAGS_LONG_LONG) { +#if defined(PRINTF_SUPPORT_LONG_LONG) + // idx = _ntoa_long_long(out, buffer, idx, maxlen, va.next(cpu, mem), false, base, precision, width, flags); + idx = _ntoa_long_long(out, buffer, idx, maxlen, + static_cast(vaArgLongLong(va_list)), false, base, + precision, width, flags); +#endif + } else if (flags & FLAGS_LONG) { + // idx = _ntoa_long(out, buffer, idx, maxlen, va.next(cpu, mem), + // false, base, precision, width, flags); + idx = _ntoa_long(out, buffer, idx, maxlen, static_cast(vaArgLong(va_list)), + false, base, precision, width, flags); + } else { + // const unsigned int value = (flags & FLAGS_CHAR) ? (unsigned + // char)va.next(cpu, mem) : (flags & FLAGS_SHORT) ? + // (unsigned short int)va.next(cpu, mem) : va.next(cpu, mem); + const unsigned int value = + (flags & FLAGS_CHAR) ? static_cast(vaArgInteger(va_list)) + : (flags & FLAGS_SHORT) ? static_cast(vaArgInteger(va_list)) + : static_cast(vaArgInteger(va_list)); + idx = _ntoa_long(out, buffer, idx, maxlen, value, false, base, precision, width, + flags); + } + } + format++; + break; + } +#if defined(PRINTF_SUPPORT_FLOAT) + case 'f': + case 'F': + // idx = _ftoa(out, buffer, idx, maxlen, va.next(cpu, mem), precision, width, + // flags); + idx = _ftoa(out, buffer, idx, maxlen, vaArgDouble(va_list), precision, width, flags); + format++; + break; +#endif // PRINTF_SUPPORT_FLOAT + case 'c': { + unsigned int l = 1U; + // pre padding + if (!(flags & FLAGS_LEFT)) { + while (l++ < width) { + out(' ', buffer, idx++, maxlen); + } + } + // char output + // out((char)va.next(cpu, mem), buffer, idx++, maxlen); + out(static_cast(vaArgInteger(va_list)), buffer, idx++, maxlen); + // post padding + if (flags & FLAGS_LEFT) { + while (l++ < width) { + out(' ', buffer, idx++, maxlen); + } + } + format++; + break; + } + + case 's': { + const char* p = vaArgPtr( + va_list); // const char *p = va.next>(cpu, mem).get(mem); + p = p != nullptr ? p : "(null)"; + unsigned int l = _strlen(p); + // pre padding + if (flags & FLAGS_PRECISION) { + l = (l < precision ? l : precision); + } + if (!(flags & FLAGS_LEFT)) { + while (l++ < width) { + out(' ', buffer, idx++, maxlen); + } + } + // string output + while ((*p != 0) && (!(flags & FLAGS_PRECISION) || precision--)) { + out(*(p++), buffer, idx++, maxlen); + } + // post padding + if (flags & FLAGS_LEFT) { + while (l++ < width) { + out(' ', buffer, idx++, maxlen); + } + } + format++; + break; + } + + case 'p': { + width = sizeof(void*) * 2U; + flags |= FLAGS_ZEROPAD | FLAGS_UPPERCASE; +#if defined(PRINTF_SUPPORT_LONG_LONG) + const bool is_ll = sizeof(uintptr_t) == sizeof(long long); + if (is_ll) { + // idx = _ntoa_long_long(out, buffer, idx, maxlen, + // (uintptr_t)va.next>(cpu, mem).address(), false, 16U, precision, width, + // flags); + idx = _ntoa_long_long(out, buffer, idx, maxlen, + reinterpret_cast(vaArgPtr(va_list)), false, + 16U, precision, width, flags); + } else { +#endif + // idx = _ntoa_long(out, buffer, idx, maxlen, (unsigned + // long)((uintptr_t)va.next>(cpu, mem).address()), false, 16U, precision, + // width, flags); + idx = _ntoa_long( + out, buffer, idx, maxlen, + static_cast(reinterpret_cast(vaArgPtr(va_list))), + false, 16U, precision, width, flags); +#if defined(PRINTF_SUPPORT_LONG_LONG) + } +#endif + format++; + break; + } + + case '%': + out('%', buffer, idx++, maxlen); + format++; + break; + + default: + out(*format, buffer, idx++, maxlen); + format++; + break; + } + } + + // termination + out((char)0, buffer, idx < maxlen ? idx : maxlen - 1U, maxlen); + + // return written chars without terminating \0 + return (int)idx; +} + +static int printf_ctx(Common::VaCtx* ctx) { + const char* format = vaArgPtr(&ctx->va_list); + char buffer[256]; + int result = _vsnprintf(_out_buffer, buffer, format, &ctx->va_list); + printf("%s", buffer); + return result; +} + +static int fprintf_ctx(Common::VaCtx* ctx, char* buf) { + const char* format = vaArgPtr(&ctx->va_list); + char buffer[256]; + int result = _vsnprintf(_out_buffer, buffer, format, &ctx->va_list); + std::strcpy(buf, buffer); + return result; +} + +static int vsnprintf_ctx(char* s, size_t n, const char* format, Common::VaList* arg) { + char buffer[n]; + int result = _vsnprintf(_out_buffer, buffer, format, arg); + std::strcpy(s, buffer); + return result; +} + +static int snprintf_ctx(char* s, size_t n, Common::VaCtx* ctx) { + const char* format = vaArgPtr(&ctx->va_list); + char buffer[n]; + int result = _vsnprintf(_out_buffer, buffer, format, &ctx->va_list); + std::strcpy(s, buffer); + return result; +} + +} // namespace Libraries::LibcInternal \ No newline at end of file diff --git a/src/core/libraries/np_trophy/np_trophy.cpp b/src/core/libraries/np_trophy/np_trophy.cpp index ccd8ab710..91dd5b4b4 100644 --- a/src/core/libraries/np_trophy/np_trophy.cpp +++ b/src/core/libraries/np_trophy/np_trophy.cpp @@ -941,7 +941,7 @@ int PS4_SYSV_ABI sceNpTrophyUnlockTrophy(OrbisNpTrophyContext context, OrbisNpTr std::filesystem::path current_icon_path = trophy_dir / "trophy00" / "Icons" / trophy_icon_file; - AddTrophyToQueue(current_icon_path, current_trophy_name); + AddTrophyToQueue(current_icon_path, current_trophy_name, current_trophy_type); } } } @@ -978,7 +978,7 @@ int PS4_SYSV_ABI sceNpTrophyUnlockTrophy(OrbisNpTrophyContext context, OrbisNpTr trophy_dir / "trophy00" / "Icons" / platinum_icon_file; *platinumId = platinum_trophy_id; - AddTrophyToQueue(platinum_icon_path, platinum_trophy_name); + AddTrophyToQueue(platinum_icon_path, platinum_trophy_name, "P"); } } diff --git a/src/core/libraries/np_trophy/trophy_ui.cpp b/src/core/libraries/np_trophy/trophy_ui.cpp index 4bb8c8240..efa02e9c4 100644 --- a/src/core/libraries/np_trophy/trophy_ui.cpp +++ b/src/core/libraries/np_trophy/trophy_ui.cpp @@ -3,6 +3,7 @@ #include #include +#include #include #include "common/assert.h" #include "common/config.h" @@ -10,6 +11,8 @@ #include "imgui/imgui_std.h" #include "trophy_ui.h" +CMRC_DECLARE(res); + using namespace ImGui; namespace Libraries::NpTrophy { @@ -17,14 +20,33 @@ std::optional current_trophy_ui; std::queue trophy_queue; std::mutex queueMtx; -TrophyUI::TrophyUI(const std::filesystem::path& trophyIconPath, const std::string& trophyName) - : trophy_name(trophyName) { +TrophyUI::TrophyUI(const std::filesystem::path& trophyIconPath, const std::string& trophyName, + const std::string_view& rarity) + : trophy_name(trophyName), trophy_type(rarity) { + if (std::filesystem::exists(trophyIconPath)) { trophy_icon = RefCountedTexture::DecodePngFile(trophyIconPath); } else { LOG_ERROR(Lib_NpTrophy, "Couldnt load trophy icon at {}", fmt::UTF(trophyIconPath.u8string())); } + + std::string pathString; + if (trophy_type == "P") { + pathString = "src/images/platinum.png"; + } else if (trophy_type == "G") { + pathString = "src/images/gold.png"; + } else if (trophy_type == "S") { + pathString = "src/images/silver.png"; + } else if (trophy_type == "B") { + pathString = "src/images/bronze.png"; + } + + auto resource = cmrc::res::get_filesystem(); + auto file = resource.open(pathString); + std::vector imgdata(file.begin(), file.end()); + trophy_type_icon = RefCountedTexture::DecodePngTexture(imgdata); + AddLayer(this); } @@ -42,29 +64,59 @@ void TrophyUI::Draw() { float AdjustWidth = io.DisplaySize.x / 1280; float AdjustHeight = io.DisplaySize.y / 720; const ImVec2 window_size{ - std::min(io.DisplaySize.x, (300 * AdjustWidth)), + std::min(io.DisplaySize.x, (350 * AdjustWidth)), std::min(io.DisplaySize.y, (70 * AdjustHeight)), }; SetNextWindowSize(window_size); SetNextWindowCollapsed(false); - SetNextWindowPos(ImVec2(io.DisplaySize.x - (300 * AdjustWidth), (50 * AdjustHeight))); + SetNextWindowPos(ImVec2(io.DisplaySize.x - (370 * AdjustWidth), (50 * AdjustHeight))); KeepNavHighlight(); if (Begin("Trophy Window", nullptr, ImGuiWindowFlags_NoDecoration | ImGuiWindowFlags_NoSavedSettings | ImGuiWindowFlags_NoInputs)) { - if (trophy_icon) { - Image(trophy_icon.GetTexture().im_id, ImVec2((50 * AdjustWidth), (50 * AdjustHeight))); + if (trophy_type_icon) { + SetCursorPosY((window_size.y * 0.5f) - (25 * AdjustHeight)); + Image(trophy_type_icon.GetTexture().im_id, + ImVec2((50 * AdjustWidth), (50 * AdjustHeight))); ImGui::SameLine(); } else { // placeholder const auto pos = GetCursorScreenPos(); - ImGui::GetWindowDrawList()->AddRectFilled(pos, pos + ImVec2{50.0f}, + ImGui::GetWindowDrawList()->AddRectFilled(pos, pos + ImVec2{50.0f * AdjustHeight}, GetColorU32(ImVec4{0.7f})); ImGui::Indent(60); } - SetWindowFontScale((1.2 * AdjustHeight)); + + const std::string combinedString = "Trophy earned!\n%s" + trophy_name; + const float wrap_width = + CalcWrapWidthForPos(GetCursorScreenPos(), (window_size.x - (60 * AdjustWidth))); + SetWindowFontScale(1.2 * AdjustHeight); + // If trophy name exceeds 1 line + if (CalcTextSize(trophy_name.c_str()).x > wrap_width) { + SetCursorPosY(5 * AdjustHeight); + if (CalcTextSize(trophy_name.c_str()).x > (wrap_width * 2)) { + SetWindowFontScale(0.95 * AdjustHeight); + } else { + SetWindowFontScale(1.1 * AdjustHeight); + } + } else { + const float text_height = ImGui::CalcTextSize(combinedString.c_str()).y; + SetCursorPosY((window_size.y - text_height) * 0.5); + } + ImGui::PushTextWrapPos(window_size.x - (60 * AdjustWidth)); TextWrapped("Trophy earned!\n%s", trophy_name.c_str()); + ImGui::SameLine(window_size.x - (60 * AdjustWidth)); + + if (trophy_icon) { + SetCursorPosY((window_size.y * 0.5f) - (25 * AdjustHeight)); + Image(trophy_icon.GetTexture().im_id, ImVec2((50 * AdjustWidth), (50 * AdjustHeight))); + } else { + // placeholder + const auto pos = GetCursorScreenPos(); + ImGui::GetWindowDrawList()->AddRectFilled(pos, pos + ImVec2{50.0f * AdjustHeight}, + GetColorU32(ImVec4{0.7f})); + } } End(); @@ -74,14 +126,16 @@ void TrophyUI::Draw() { if (!trophy_queue.empty()) { TrophyInfo next_trophy = trophy_queue.front(); trophy_queue.pop(); - current_trophy_ui.emplace(next_trophy.trophy_icon_path, next_trophy.trophy_name); + current_trophy_ui.emplace(next_trophy.trophy_icon_path, next_trophy.trophy_name, + next_trophy.trophy_type); } else { current_trophy_ui.reset(); } } } -void AddTrophyToQueue(const std::filesystem::path& trophyIconPath, const std::string& trophyName) { +void AddTrophyToQueue(const std::filesystem::path& trophyIconPath, const std::string& trophyName, + const std::string_view& rarity) { std::lock_guard lock(queueMtx); if (Config::getisTrophyPopupDisabled()) { @@ -90,10 +144,11 @@ void AddTrophyToQueue(const std::filesystem::path& trophyIconPath, const std::st TrophyInfo new_trophy; new_trophy.trophy_icon_path = trophyIconPath; new_trophy.trophy_name = trophyName; + new_trophy.trophy_type = rarity; trophy_queue.push(new_trophy); } else { - current_trophy_ui.emplace(trophyIconPath, trophyName); + current_trophy_ui.emplace(trophyIconPath, trophyName, rarity); } } -} // namespace Libraries::NpTrophy \ No newline at end of file +} // namespace Libraries::NpTrophy diff --git a/src/core/libraries/np_trophy/trophy_ui.h b/src/core/libraries/np_trophy/trophy_ui.h index ce7a1c63a..16e707059 100644 --- a/src/core/libraries/np_trophy/trophy_ui.h +++ b/src/core/libraries/np_trophy/trophy_ui.h @@ -17,7 +17,8 @@ namespace Libraries::NpTrophy { class TrophyUI final : public ImGui::Layer { public: - TrophyUI(const std::filesystem::path& trophyIconPath, const std::string& trophyName); + TrophyUI(const std::filesystem::path& trophyIconPath, const std::string& trophyName, + const std::string_view& rarity); ~TrophyUI() override; void Finish(); @@ -26,15 +27,19 @@ public: private: std::string trophy_name; + std::string_view trophy_type; float trophy_timer = 5.0f; ImGui::RefCountedTexture trophy_icon; + ImGui::RefCountedTexture trophy_type_icon; }; struct TrophyInfo { std::filesystem::path trophy_icon_path; std::string trophy_name; + std::string_view trophy_type; }; -void AddTrophyToQueue(const std::filesystem::path& trophyIconPath, const std::string& trophyName); +void AddTrophyToQueue(const std::filesystem::path& trophyIconPath, const std::string& trophyName, + const std::string_view& rarity); -}; // namespace Libraries::NpTrophy \ No newline at end of file +}; // namespace Libraries::NpTrophy diff --git a/src/core/libraries/pad/pad.cpp b/src/core/libraries/pad/pad.cpp index bcc90c49b..2e5973144 100644 --- a/src/core/libraries/pad/pad.cpp +++ b/src/core/libraries/pad/pad.cpp @@ -315,12 +315,13 @@ int PS4_SYSV_ABI scePadRead(s32 handle, OrbisPadData* pData, s32 num) { pData[i].angularVelocity.x = states[i].angularVelocity.x; pData[i].angularVelocity.y = states[i].angularVelocity.y; pData[i].angularVelocity.z = states[i].angularVelocity.z; + pData[i].orientation = {0.0f, 0.0f, 0.0f, 1.0f}; if (engine) { - const auto accel_poll_rate = engine->GetAccelPollRate(); - if (accel_poll_rate != 0.0f) { + const auto gyro_poll_rate = engine->GetAccelPollRate(); + if (gyro_poll_rate != 0.0f) { GameController::CalculateOrientation(pData[i].acceleration, pData[i].angularVelocity, - 1.0f / accel_poll_rate, pData[i].orientation); + 1.0f / gyro_poll_rate, pData[i].orientation); } } pData[i].touchData.touchNum = @@ -384,11 +385,12 @@ int PS4_SYSV_ABI scePadReadState(s32 handle, OrbisPadData* pData) { pData->angularVelocity.x = state.angularVelocity.x; pData->angularVelocity.y = state.angularVelocity.y; pData->angularVelocity.z = state.angularVelocity.z; + pData->orientation = {0.0f, 0.0f, 0.0f, 1.0f}; if (engine) { - const auto accel_poll_rate = engine->GetAccelPollRate(); - if (accel_poll_rate != 0.0f) { + const auto gyro_poll_rate = engine->GetAccelPollRate(); + if (gyro_poll_rate != 0.0f) { GameController::CalculateOrientation(pData->acceleration, pData->angularVelocity, - 1.0f / accel_poll_rate, pData->orientation); + 1.0f / gyro_poll_rate, pData->orientation); } } pData->touchData.touchNum = diff --git a/src/core/libraries/playgo/playgo.cpp b/src/core/libraries/playgo/playgo.cpp index ade2ee496..aec32e139 100644 --- a/src/core/libraries/playgo/playgo.cpp +++ b/src/core/libraries/playgo/playgo.cpp @@ -137,9 +137,6 @@ s32 PS4_SYSV_ABI scePlayGoGetLanguageMask(OrbisPlayGoHandle handle, s32 PS4_SYSV_ABI scePlayGoGetLocus(OrbisPlayGoHandle handle, const OrbisPlayGoChunkId* chunkIds, uint32_t numberOfEntries, OrbisPlayGoLocus* outLoci) { - LOG_DEBUG(Lib_PlayGo, "called handle = {}, chunkIds = {}, numberOfEntries = {}", handle, - *chunkIds, numberOfEntries); - if (handle != PlaygoHandle) { return ORBIS_PLAYGO_ERROR_BAD_HANDLE; } @@ -149,6 +146,10 @@ s32 PS4_SYSV_ABI scePlayGoGetLocus(OrbisPlayGoHandle handle, const OrbisPlayGoCh if (numberOfEntries == 0) { return ORBIS_PLAYGO_ERROR_BAD_SIZE; } + + LOG_DEBUG(Lib_PlayGo, "called handle = {}, chunkIds = {}, numberOfEntries = {}", handle, + *chunkIds, numberOfEntries); + if (!playgo) { return ORBIS_PLAYGO_ERROR_NOT_INITIALIZED; } diff --git a/src/core/memory.cpp b/src/core/memory.cpp index 23fb6192f..98d587e00 100644 --- a/src/core/memory.cpp +++ b/src/core/memory.cpp @@ -57,15 +57,25 @@ void MemoryManager::SetupMemoryRegions(u64 flexible_size, bool use_extended_mem1 } u64 MemoryManager::ClampRangeSize(VAddr virtual_addr, u64 size) { - static constexpr u64 MinSizeToClamp = 1_GB; + static constexpr u64 MinSizeToClamp = 512_MB; // Dont bother with clamping if the size is small so we dont pay a map lookup on every buffer. if (size < MinSizeToClamp) { return size; } - const auto vma = FindVMA(virtual_addr); + + // Clamp size to the remaining size of the current VMA. + auto vma = FindVMA(virtual_addr); ASSERT_MSG(vma != vma_map.end(), "Attempted to access invalid GPU address {:#x}", virtual_addr); - const u64 clamped_size = - std::min(size, vma->second.base + vma->second.size - virtual_addr); + u64 clamped_size = vma->second.base + vma->second.size - virtual_addr; + ++vma; + + // Keep adding to the size while there is contigious virtual address space. + while (!vma->second.IsFree() && clamped_size < size) { + clamped_size += vma->second.size; + ++vma; + } + clamped_size = std::min(clamped_size, size); + if (size != clamped_size) { LOG_WARNING(Kernel_Vmm, "Clamped requested buffer range addr={:#x}, size={:#x} to {:#x}", virtual_addr, size, clamped_size); @@ -481,19 +491,14 @@ int MemoryManager::QueryProtection(VAddr addr, void** start, void** end, u32* pr return ORBIS_OK; } -int MemoryManager::Protect(VAddr addr, size_t size, MemoryProt prot) { - std::scoped_lock lk{mutex}; +s64 MemoryManager::ProtectBytes(VAddr addr, VirtualMemoryArea vma_base, size_t size, + MemoryProt prot) { + const auto start_in_vma = addr - vma_base.base; + const auto adjusted_size = + vma_base.size - start_in_vma < size ? vma_base.size - start_in_vma : size; - // Find the virtual memory area that contains the specified address range. - auto it = FindVMA(addr); - if (it == vma_map.end() || !it->second.Contains(addr, size)) { - LOG_ERROR(Core, "Address range not mapped"); - return ORBIS_KERNEL_ERROR_EINVAL; - } - - VirtualMemoryArea& vma = it->second; - if (vma.type == VMAType::Free) { - LOG_ERROR(Core, "Cannot change protection on free memory region"); + if (vma_base.type == VMAType::Free) { + LOG_ERROR(Kernel_Vmm, "Cannot change protection on free memory region"); return ORBIS_KERNEL_ERROR_EINVAL; } @@ -504,13 +509,13 @@ int MemoryManager::Protect(VAddr addr, size_t size, MemoryProt prot) { MemoryProt invalid_flags = prot & ~valid_flags; if (u32(invalid_flags) != 0 && u32(invalid_flags) != u32(MemoryProt::NoAccess)) { - LOG_ERROR(Core, "Invalid protection flags: prot = {:#x}, invalid flags = {:#x}", u32(prot), - u32(invalid_flags)); + LOG_ERROR(Kernel_Vmm, "Invalid protection flags: prot = {:#x}, invalid flags = {:#x}", + u32(prot), u32(invalid_flags)); return ORBIS_KERNEL_ERROR_EINVAL; } // Change protection - vma.prot = prot; + vma_base.prot = prot; // Set permissions Core::MemoryPermission perms{}; @@ -533,6 +538,24 @@ int MemoryManager::Protect(VAddr addr, size_t size, MemoryProt prot) { impl.Protect(addr, size, perms); + return adjusted_size; +} + +s32 MemoryManager::Protect(VAddr addr, size_t size, MemoryProt prot) { + std::scoped_lock lk{mutex}; + s64 protected_bytes = 0; + do { + auto it = FindVMA(addr + protected_bytes); + auto& vma_base = it->second; + auto result = 0; + result = ProtectBytes(addr + protected_bytes, vma_base, size - protected_bytes, prot); + if (result < 0) { + // ProtectBytes returned an error, return it + return result; + } + protected_bytes += result; + } while (protected_bytes < size); + return ORBIS_OK; } diff --git a/src/core/memory.h b/src/core/memory.h index ff7b82c10..a6a55e288 100644 --- a/src/core/memory.h +++ b/src/core/memory.h @@ -198,7 +198,9 @@ public: int QueryProtection(VAddr addr, void** start, void** end, u32* prot); - int Protect(VAddr addr, size_t size, MemoryProt prot); + s32 Protect(VAddr addr, size_t size, MemoryProt prot); + + s64 ProtectBytes(VAddr addr, VirtualMemoryArea vma_base, size_t size, MemoryProt prot); int VirtualQuery(VAddr addr, int flags, ::Libraries::Kernel::OrbisVirtualQueryInfo* info); diff --git a/src/emulator.cpp b/src/emulator.cpp index cd981add2..68c1e332c 100644 --- a/src/emulator.cpp +++ b/src/emulator.cpp @@ -50,29 +50,6 @@ Emulator::Emulator() { SetPriorityClass(GetCurrentProcess(), ABOVE_NORMAL_PRIORITY_CLASS); #endif - // Start logger. - Common::Log::Initialize(); - Common::Log::Start(); - LOG_INFO(Loader, "Starting shadps4 emulator v{} ", Common::VERSION); - LOG_INFO(Loader, "Revision {}", Common::g_scm_rev); - LOG_INFO(Loader, "Branch {}", Common::g_scm_branch); - LOG_INFO(Loader, "Description {}", Common::g_scm_desc); - LOG_INFO(Loader, "Remote {}", Common::g_scm_remote_url); - - LOG_INFO(Config, "General LogType: {}", Config::getLogType()); - LOG_INFO(Config, "General isNeo: {}", Config::isNeoModeConsole()); - LOG_INFO(Config, "GPU isNullGpu: {}", Config::nullGpu()); - LOG_INFO(Config, "GPU shouldDumpShaders: {}", Config::dumpShaders()); - LOG_INFO(Config, "GPU vblankDivider: {}", Config::vblankDiv()); - LOG_INFO(Config, "Vulkan gpuId: {}", Config::getGpuId()); - LOG_INFO(Config, "Vulkan vkValidation: {}", Config::vkValidationEnabled()); - LOG_INFO(Config, "Vulkan vkValidationSync: {}", Config::vkValidationSyncEnabled()); - LOG_INFO(Config, "Vulkan vkValidationGpu: {}", Config::vkValidationGpuEnabled()); - LOG_INFO(Config, "Vulkan crashDiagnostics: {}", Config::getVkCrashDiagnosticEnabled()); - LOG_INFO(Config, "Vulkan hostMarkers: {}", Config::getVkHostMarkersEnabled()); - LOG_INFO(Config, "Vulkan guestMarkers: {}", Config::getVkGuestMarkersEnabled()); - LOG_INFO(Config, "Vulkan rdocEnable: {}", Config::isRdocEnabled()); - // Create stdin/stdout/stderr Common::Singleton::Instance()->CreateStdHandles(); @@ -90,9 +67,8 @@ Emulator::Emulator() { const auto user_dir = Common::FS::GetUserPath(Common::FS::PathType::UserDir); QString filePath = QString::fromStdString((user_dir / "play_time.txt").string()); QFile file(filePath); - if (!file.open(QIODevice::ReadWrite | QIODevice::Text)) { - LOG_INFO(Loader, "Error opening or creating play_time.txt"); - } + ASSERT_MSG(file.open(QIODevice::ReadWrite | QIODevice::Text), + "Error opening or creating play_time.txt"); #endif } @@ -138,6 +114,33 @@ void Emulator::Run(const std::filesystem::path& file, const std::vectorGetString("CONTENT_ID"); ASSERT_MSG(content_id.has_value(), "Failed to get CONTENT_ID"); id = std::string(*content_id, 7, 9); + + if (Config::getSeparateLogFilesEnabled()) { + Common::Log::Initialize(id + ".log"); + } else { + Common::Log::Initialize(); + } + Common::Log::Start(); + LOG_INFO(Loader, "Starting shadps4 emulator v{} ", Common::VERSION); + LOG_INFO(Loader, "Revision {}", Common::g_scm_rev); + LOG_INFO(Loader, "Branch {}", Common::g_scm_branch); + LOG_INFO(Loader, "Description {}", Common::g_scm_desc); + LOG_INFO(Loader, "Remote {}", Common::g_scm_remote_url); + + LOG_INFO(Config, "General LogType: {}", Config::getLogType()); + LOG_INFO(Config, "General isNeo: {}", Config::isNeoModeConsole()); + LOG_INFO(Config, "GPU isNullGpu: {}", Config::nullGpu()); + LOG_INFO(Config, "GPU shouldDumpShaders: {}", Config::dumpShaders()); + LOG_INFO(Config, "GPU vblankDivider: {}", Config::vblankDiv()); + LOG_INFO(Config, "Vulkan gpuId: {}", Config::getGpuId()); + LOG_INFO(Config, "Vulkan vkValidation: {}", Config::vkValidationEnabled()); + LOG_INFO(Config, "Vulkan vkValidationSync: {}", Config::vkValidationSyncEnabled()); + LOG_INFO(Config, "Vulkan vkValidationGpu: {}", Config::vkValidationGpuEnabled()); + LOG_INFO(Config, "Vulkan crashDiagnostics: {}", Config::getVkCrashDiagnosticEnabled()); + LOG_INFO(Config, "Vulkan hostMarkers: {}", Config::getVkHostMarkersEnabled()); + LOG_INFO(Config, "Vulkan guestMarkers: {}", Config::getVkGuestMarkersEnabled()); + LOG_INFO(Config, "Vulkan rdocEnable: {}", Config::isRdocEnabled()); + Libraries::NpTrophy::game_serial = id; const auto trophyDir = Common::FS::GetUserPath(Common::FS::PathType::MetaDataDir) / id / "TrophyFiles"; diff --git a/src/images/bronze.png b/src/images/bronze.png new file mode 100644 index 000000000..65aa2fb69 Binary files /dev/null and b/src/images/bronze.png differ diff --git a/src/images/gold.png b/src/images/gold.png new file mode 100644 index 000000000..1af7023f5 Binary files /dev/null and b/src/images/gold.png differ diff --git a/src/images/platinum.png b/src/images/platinum.png new file mode 100644 index 000000000..c217fdd02 Binary files /dev/null and b/src/images/platinum.png differ diff --git a/src/images/silver.png b/src/images/silver.png new file mode 100644 index 000000000..0d9ff8ff6 Binary files /dev/null and b/src/images/silver.png differ diff --git a/src/input/controller.cpp b/src/input/controller.cpp index ae54553f4..bb8db9a7c 100644 --- a/src/input/controller.cpp +++ b/src/input/controller.cpp @@ -182,7 +182,7 @@ void GameController::CalculateOrientation(Libraries::Pad::OrbisFVector3& acceler // Normalize accelerometer measurement float norm = std::sqrt(ax * ax + ay * ay + az * az); - if (norm == 0.0f) + if (norm == 0.0f || deltaTime == 0.0f) return; // Handle NaN norm = 1.0f / norm; ax *= norm; diff --git a/src/qt_gui/cheats_patches.cpp b/src/qt_gui/cheats_patches.cpp index 597729a45..bf7877f18 100644 --- a/src/qt_gui/cheats_patches.cpp +++ b/src/qt_gui/cheats_patches.cpp @@ -26,8 +26,10 @@ #include #include #include -#include + #include "cheats_patches.h" +#include "common/config.h" +#include "common/logging/log.h" #include "common/memory_patcher.h" #include "common/path_util.h" #include "core/module.h" @@ -92,7 +94,7 @@ void CheatsPatches::setupUI() { gameVersionLabel->setAlignment(Qt::AlignLeft); gameInfoLayout->addWidget(gameVersionLabel); - if (m_gameSize.left(4) != "0.00") { + if (Config::GetLoadGameSizeEnabled()) { QLabel* gameSizeLabel = new QLabel(tr("Size: ") + m_gameSize); gameSizeLabel->setAlignment(Qt::AlignLeft); gameInfoLayout->addWidget(gameSizeLabel); diff --git a/src/qt_gui/game_info.cpp b/src/qt_gui/game_info.cpp index adbf392ed..947f25d84 100644 --- a/src/qt_gui/game_info.cpp +++ b/src/qt_gui/game_info.cpp @@ -49,6 +49,9 @@ void GameInfoClass::GetGameInfo(QWidget* parent) { return readGameInfo(Common::FS::PathFromQString(path)); }).results(); + // used to retrieve values after performing a search + m_games_backup = m_games; + // Progress bar, please be patient :) QProgressDialog dialog(tr("Loading game list, please wait :3"), tr("Cancel"), 0, 0, parent); dialog.setWindowTitle(tr("Loading...")); diff --git a/src/qt_gui/game_info.h b/src/qt_gui/game_info.h index 380c79e70..0759ccc52 100644 --- a/src/qt_gui/game_info.h +++ b/src/qt_gui/game_info.h @@ -17,6 +17,7 @@ public: ~GameInfoClass(); void GetGameInfo(QWidget* parent = nullptr); QVector m_games; + QVector m_games_backup; static bool CompareStrings(GameInfo& a, GameInfo& b) { std::string name_a = a.name, name_b = b.name; diff --git a/src/qt_gui/game_list_utils.h b/src/qt_gui/game_list_utils.h index c6b69e70e..804f0e4b7 100644 --- a/src/qt_gui/game_list_utils.h +++ b/src/qt_gui/game_list_utils.h @@ -69,8 +69,12 @@ public: } // Cache path - QFile size_cache_file(Common::FS::GetUserPath(Common::FS::PathType::MetaDataDir) / - game.serial / "size_cache.txt"); + QDir cacheDir = + QDir(Common::FS::GetUserPath(Common::FS::PathType::MetaDataDir) / game.serial); + if (!cacheDir.exists()) { + cacheDir.mkpath("."); + } + QFile size_cache_file(cacheDir.absoluteFilePath("size_cache.txt")); QFileInfo cacheInfo(size_cache_file); QFileInfo dirInfo(dirPath); diff --git a/src/qt_gui/gui_context_menus.h b/src/qt_gui/gui_context_menus.h index deb35de8d..1a059a850 100644 --- a/src/qt_gui/gui_context_menus.h +++ b/src/qt_gui/gui_context_menus.h @@ -84,7 +84,9 @@ public: copyMenu->addAction(copyName); copyMenu->addAction(copySerial); copyMenu->addAction(copyVersion); - copyMenu->addAction(copySize); + if (Config::GetLoadGameSizeEnabled()) { + copyMenu->addAction(copySize); + } copyMenu->addAction(copyNameAll); menu.addMenu(copyMenu); @@ -362,12 +364,18 @@ public: } if (selected == copyNameAll) { + QString GameSizeEnabled; + if (Config::GetLoadGameSizeEnabled()) { + GameSizeEnabled = " | Size:" + QString::fromStdString(m_games[itemID].size); + } + QClipboard* clipboard = QGuiApplication::clipboard(); - QString combinedText = QString("Name:%1 | Serial:%2 | Version:%3 | Size:%4") + QString combinedText = QString("Name:%1 | Serial:%2 | Version:%3%4") .arg(QString::fromStdString(m_games[itemID].name)) .arg(QString::fromStdString(m_games[itemID].serial)) .arg(QString::fromStdString(m_games[itemID].version)) - .arg(QString::fromStdString(m_games[itemID].size)); + .arg(GameSizeEnabled); + clipboard->setText(combinedText); } diff --git a/src/qt_gui/main_window.cpp b/src/qt_gui/main_window.cpp index 949d7062e..96bd1d9e5 100644 --- a/src/qt_gui/main_window.cpp +++ b/src/qt_gui/main_window.cpp @@ -290,6 +290,27 @@ void MainWindow::CreateConnects() { connect(settingsDialog, &SettingsDialog::CompatibilityChanged, this, &MainWindow::RefreshGameTable); + connect(settingsDialog, &SettingsDialog::accepted, this, &MainWindow::RefreshGameTable); + connect(settingsDialog, &SettingsDialog::rejected, this, &MainWindow::RefreshGameTable); + connect(settingsDialog, &SettingsDialog::close, this, &MainWindow::RefreshGameTable); + + connect(settingsDialog, &SettingsDialog::BackgroundOpacityChanged, this, + [this](int opacity) { + Config::setBackgroundImageOpacity(opacity); + if (m_game_list_frame) { + QTableWidgetItem* current = m_game_list_frame->GetCurrentItem(); + if (current) { + m_game_list_frame->SetListBackgroundImage(current); + } + } + if (m_game_grid_frame) { + if (m_game_grid_frame->IsValidCellSelected()) { + m_game_grid_frame->SetGridBackgroundImage(m_game_grid_frame->crtRow, + m_game_grid_frame->crtColumn); + } + } + }); + settingsDialog->exec(); }); @@ -302,6 +323,10 @@ void MainWindow::CreateConnects() { connect(settingsDialog, &SettingsDialog::CompatibilityChanged, this, &MainWindow::RefreshGameTable); + connect(settingsDialog, &SettingsDialog::accepted, this, &MainWindow::RefreshGameTable); + connect(settingsDialog, &SettingsDialog::rejected, this, &MainWindow::RefreshGameTable); + connect(settingsDialog, &SettingsDialog::close, this, &MainWindow::RefreshGameTable); + connect(settingsDialog, &SettingsDialog::BackgroundOpacityChanged, this, [this](int opacity) { Config::setBackgroundImageOpacity(opacity); @@ -413,6 +438,7 @@ void MainWindow::CreateConnects() { int slider_pos = Config::getSliderPosition(); ui->sizeSlider->setEnabled(true); ui->sizeSlider->setSliderPosition(slider_pos); + ui->mw_searchbar->setText(""); }); // Grid connect(ui->setlistModeGridAct, &QAction::triggered, m_dock_widget.data(), [this]() { @@ -430,6 +456,7 @@ void MainWindow::CreateConnects() { int slider_pos_grid = Config::getSliderPositionGrid(); ui->sizeSlider->setEnabled(true); ui->sizeSlider->setSliderPosition(slider_pos_grid); + ui->mw_searchbar->setText(""); }); // Elf Viewer connect(ui->setlistElfAct, &QAction::triggered, m_dock_widget.data(), [this]() { @@ -658,14 +685,24 @@ void MainWindow::StartGame() { } } +bool isTable; void MainWindow::SearchGameTable(const QString& text) { if (isTableList) { + if (isTable != true) { + m_game_info->m_games = m_game_info->m_games_backup; + m_game_list_frame->PopulateGameList(); + isTable = true; + } for (int row = 0; row < m_game_list_frame->rowCount(); row++) { QString game_name = QString::fromStdString(m_game_info->m_games[row].name); bool match = (game_name.contains(text, Qt::CaseInsensitive)); // Check only in column 1 m_game_list_frame->setRowHidden(row, !match); } } else { + isTable = false; + m_game_info->m_games = m_game_info->m_games_backup; + m_game_grid_frame->PopulateGameGrid(m_game_info->m_games, false); + QVector filteredGames; for (const auto& gameInfo : m_game_info->m_games) { QString game_name = QString::fromStdString(gameInfo.name); @@ -674,6 +711,7 @@ void MainWindow::SearchGameTable(const QString& text) { } } std::sort(filteredGames.begin(), filteredGames.end(), m_game_info->CompareStrings); + m_game_info->m_games = filteredGames; m_game_grid_frame->PopulateGameGrid(filteredGames, true); } } diff --git a/src/qt_gui/settings_dialog.cpp b/src/qt_gui/settings_dialog.cpp index bebb16c9a..9a946658f 100644 --- a/src/qt_gui/settings_dialog.cpp +++ b/src/qt_gui/settings_dialog.cpp @@ -60,9 +60,12 @@ const QVector languageIndexes = {21, 23, 14, 6, 18, 1, 12, 22, 2, 4, 25, 2 15, 16, 17, 7, 26, 8, 11, 20, 3, 13, 27, 10, 19, 30, 28}; QMap channelMap; QMap logTypeMap; -QMap fullscreenModeMap; +QMap screenModeMap; QMap chooseHomeTabMap; +int backgroundImageOpacitySlider_backup; +int bgm_volume_backup; + SettingsDialog::SettingsDialog(std::span physical_devices, std::shared_ptr m_compat_info, QWidget* parent) @@ -77,7 +80,9 @@ SettingsDialog::SettingsDialog(std::span physical_devices, channelMap = {{tr("Release"), "Release"}, {tr("Nightly"), "Nightly"}}; logTypeMap = {{tr("async"), "async"}, {tr("sync"), "sync"}}; - fullscreenModeMap = {{tr("Borderless"), "Borderless"}, {tr("True"), "True"}}; + screenModeMap = {{tr("Fullscreen (Borderless)"), "Fullscreen (Borderless)"}, + {tr("Windowed"), "Windowed"}, + {tr("Fullscreen"), "Fullscreen"}}; chooseHomeTabMap = {{tr("General"), "General"}, {tr("GUI"), "GUI"}, {tr("Graphics"), "Graphics"}, {tr("User"), "User"}, {tr("Input"), "Input"}, {tr("Paths"), "Paths"}, @@ -115,6 +120,7 @@ SettingsDialog::SettingsDialog(std::span physical_devices, connect(ui->buttonBox, &QDialogButtonBox::clicked, this, [this, config_dir](QAbstractButton* button) { if (button == ui->buttonBox->button(QDialogButtonBox::Save)) { + is_saving = true; UpdateSettings(); Config::save(config_dir / "config.toml"); QWidget::close(); @@ -126,6 +132,10 @@ SettingsDialog::SettingsDialog(std::span physical_devices, Config::save(config_dir / "config.toml"); LoadValuesFromConfig(); } else if (button == ui->buttonBox->button(QDialogButtonBox::Close)) { + ui->backgroundImageOpacitySlider->setValue(backgroundImageOpacitySlider_backup); + emit BackgroundOpacityChanged(backgroundImageOpacitySlider_backup); + ui->BGMVolumeSlider->setValue(bgm_volume_backup); + BackgroundMusicPlayer::getInstance().setVolume(bgm_volume_backup); ResetInstallFolders(); } if (Common::Log::IsActive()) { @@ -197,6 +207,12 @@ SettingsDialog::SettingsDialog(std::span physical_devices, // Gui TAB { + connect(ui->backgroundImageOpacitySlider, &QSlider::valueChanged, this, + [this](int value) { emit BackgroundOpacityChanged(value); }); + + connect(ui->BGMVolumeSlider, &QSlider::valueChanged, this, + [](int value) { BackgroundMusicPlayer::getInstance().setVolume(value); }); + connect(ui->chooseHomeTabComboBox, &QComboBox::currentTextChanged, this, [](const QString& hometab) { Config::setChooseHomeTab(hometab.toStdString()); }); @@ -274,7 +290,6 @@ SettingsDialog::SettingsDialog(std::span physical_devices, // General ui->consoleLanguageGroupBox->installEventFilter(this); ui->emulatorLanguageGroupBox->installEventFilter(this); - ui->fullscreenCheckBox->installEventFilter(this); ui->separateUpdatesCheckBox->installEventFilter(this); ui->showSplashCheckBox->installEventFilter(this); ui->discordRPCCheckbox->installEventFilter(this); @@ -300,8 +315,7 @@ SettingsDialog::SettingsDialog(std::span physical_devices, // Graphics ui->graphicsAdapterGroupBox->installEventFilter(this); - ui->widthGroupBox->installEventFilter(this); - ui->heightGroupBox->installEventFilter(this); + ui->windowSizeGroupBox->installEventFilter(this); ui->heightDivider->installEventFilter(this); ui->dumpShadersCheckBox->installEventFilter(this); ui->nullGpuCheckBox->installEventFilter(this); @@ -330,6 +344,16 @@ SettingsDialog::SettingsDialog(std::span physical_devices, } } +void SettingsDialog::closeEvent(QCloseEvent* event) { + if (!is_saving) { + ui->backgroundImageOpacitySlider->setValue(backgroundImageOpacitySlider_backup); + emit BackgroundOpacityChanged(backgroundImageOpacitySlider_backup); + ui->BGMVolumeSlider->setValue(bgm_volume_backup); + BackgroundMusicPlayer::getInstance().setVolume(bgm_volume_backup); + } + QDialog::closeEvent(event); +} + void SettingsDialog::LoadValuesFromConfig() { std::filesystem::path userdir = Common::FS::GetUserPath(Common::FS::PathType::UserDir); @@ -382,12 +406,9 @@ void SettingsDialog::LoadValuesFromConfig() { ui->BGMVolumeSlider->setValue(toml::find_or(data, "General", "BGMvolume", 50)); ui->discordRPCCheckbox->setChecked( toml::find_or(data, "General", "enableDiscordRPC", true)); - ui->fullscreenCheckBox->setChecked(toml::find_or(data, "General", "Fullscreen", false)); QString translatedText_FullscreenMode = - fullscreenModeMap.key(QString::fromStdString(Config::getFullscreenMode())); - if (!translatedText_FullscreenMode.isEmpty()) { - ui->fullscreenModeComboBox->setCurrentText(translatedText_FullscreenMode); - } + screenModeMap.key(QString::fromStdString(Config::getFullscreenMode())); + ui->displayModeComboBox->setCurrentText(translatedText_FullscreenMode); ui->separateUpdatesCheckBox->setChecked( toml::find_or(data, "General", "separateUpdateEnabled", false)); ui->gameSizeCheckBox->setChecked(toml::find_or(data, "GUI", "loadGameSizeEnabled", true)); @@ -404,6 +425,8 @@ void SettingsDialog::LoadValuesFromConfig() { QString::fromStdString(toml::find_or(data, "Keys", "TrophyKey", ""))); ui->trophyKeyLineEdit->setEchoMode(QLineEdit::Password); ui->debugDump->setChecked(toml::find_or(data, "Debug", "DebugDump", false)); + ui->separateLogFilesCheckbox->setChecked( + toml::find_or(data, "Debug", "isSeparateLogFilesEnabled", false)); ui->vkValidationCheckBox->setChecked(toml::find_or(data, "Vulkan", "validation", false)); ui->vkSyncValidationCheckBox->setChecked( toml::find_or(data, "Vulkan", "validation_sync", false)); @@ -460,6 +483,9 @@ void SettingsDialog::LoadValuesFromConfig() { ResetInstallFolders(); ui->backgroundImageOpacitySlider->setValue(Config::getBackgroundImageOpacity()); ui->showBackgroundImageCheckBox->setChecked(Config::getShowBackgroundImage()); + + backgroundImageOpacitySlider_backup = Config::getBackgroundImageOpacity(); + bgm_volume_backup = Config::getBGMvolume(); } void SettingsDialog::InitializeEmulatorLanguages() { @@ -533,8 +559,6 @@ void SettingsDialog::updateNoteTextEdit(const QString& elementName) { text = tr("Console Language:\\nSets the language that the PS4 game uses.\\nIt's recommended to set this to a language the game supports, which will vary by region."); } else if (elementName == "emulatorLanguageGroupBox") { text = tr("Emulator Language:\\nSets the language of the emulator's user interface."); - } else if (elementName == "fullscreenCheckBox") { - text = tr("Enable Full Screen:\\nAutomatically puts the game window into full-screen mode.\\nThis can be toggled by pressing the F11 key."); } else if (elementName == "separateUpdatesCheckBox") { text = tr("Enable Separate Update Folder:\\nEnables installing game updates into a separate folder for easy management.\\nThis can be manually created by adding the extracted update to the game folder with the name \"CUSA00000-UPDATE\" where the CUSA ID matches the game's ID."); } else if (elementName == "showSplashCheckBox") { @@ -581,7 +605,7 @@ void SettingsDialog::updateNoteTextEdit(const QString& elementName) { // Graphics if (elementName == "graphicsAdapterGroupBox") { text = tr("Graphics Device:\\nOn multiple GPU systems, select the GPU the emulator will use from the drop down list,\\nor select \"Auto Select\" to automatically determine it."); - } else if (elementName == "widthGroupBox" || elementName == "heightGroupBox") { + } else if (elementName == "windowSizeGroupBox") { text = tr("Width/Height:\\nSets the size of the emulator window at launch, which can be resized during gameplay.\\nThis is different from the in-game resolution."); } else if (elementName == "heightDivider") { text = tr("Vblank Divider:\\nThe frame rate at which the emulator refreshes at is multiplied by this number. Changing this may have adverse effects, such as increasing the game speed, or breaking critical game functionality that does not expect this to change!"); @@ -626,7 +650,8 @@ void SettingsDialog::updateNoteTextEdit(const QString& elementName) { text = tr("Copy GPU Buffers:\\nGets around race conditions involving GPU submits.\\nMay or may not help with PM4 type 0 crashes."); } else if (elementName == "collectShaderCheckBox") { text = tr("Collect Shaders:\\nYou need this enabled to edit shaders with the debug menu (Ctrl + F10)."); - } + } else if (elementName == "separateLogFilesCheckbox") { + text = tr("Separate Log Files:\\nWrites a separate logfile for each game.");} // clang-format on ui->descriptionText->setText(text.replace("\\n", "\n")); } @@ -652,9 +677,10 @@ void SettingsDialog::UpdateSettings() { const QVector TouchPadIndex = {"left", "center", "right", "none"}; Config::setBackButtonBehavior(TouchPadIndex[ui->backButtonBehaviorComboBox->currentIndex()]); - Config::setIsFullscreen(ui->fullscreenCheckBox->isChecked()); + Config::setIsFullscreen(screenModeMap.value(ui->displayModeComboBox->currentText()) != + "Windowed"); Config::setFullscreenMode( - fullscreenModeMap.value(ui->fullscreenModeComboBox->currentText()).toStdString()); + screenModeMap.value(ui->displayModeComboBox->currentText()).toStdString()); Config::setIsMotionControlsEnabled(ui->motionControlsCheckBox->isChecked()); Config::setisTrophyPopupDisabled(ui->disableTrophycheckBox->isChecked()); Config::setPlayBGM(ui->playBGMCheckBox->isChecked()); @@ -678,6 +704,7 @@ void SettingsDialog::UpdateSettings() { Config::setLoadGameSizeEnabled(ui->gameSizeCheckBox->isChecked()); Config::setShowSplash(ui->showSplashCheckBox->isChecked()); Config::setDebugDump(ui->debugDump->isChecked()); + Config::setSeparateLogFilesEnabled(ui->separateLogFilesCheckbox->isChecked()); Config::setVkValidation(ui->vkValidationCheckBox->isChecked()); Config::setVkSyncValidation(ui->vkSyncValidationCheckBox->isChecked()); Config::setRdocEnabled(ui->rdocCheckBox->isChecked()); diff --git a/src/qt_gui/settings_dialog.h b/src/qt_gui/settings_dialog.h index c440351f6..09aa2b855 100644 --- a/src/qt_gui/settings_dialog.h +++ b/src/qt_gui/settings_dialog.h @@ -42,6 +42,7 @@ private: void InitializeEmulatorLanguages(); void OnLanguageChanged(int index); void OnCursorStateChanged(s16 index); + void closeEvent(QCloseEvent* event) override; std::unique_ptr ui; @@ -50,4 +51,6 @@ private: QString defaultTextEdit; int initialHeight; + + bool is_saving = false; }; diff --git a/src/qt_gui/settings_dialog.ui b/src/qt_gui/settings_dialog.ui index 53bae664f..2df328fbe 100644 --- a/src/qt_gui/settings_dialog.ui +++ b/src/qt_gui/settings_dialog.ui @@ -59,7 +59,7 @@ - 0 + 6 @@ -73,8 +73,8 @@ 0 0 - 946 - 536 + 718 + 332 @@ -130,54 +130,14 @@ 9 + + Qt::AlignmentFlag::AlignLeading|Qt::AlignmentFlag::AlignLeft|Qt::AlignmentFlag::AlignTop + 10 - - - - Enable Fullscreen - - - - - - - Fullscreen Mode - - - - - - - 0 - 0 - - - - - Borderless - - - - - True - - - - - - - - - - - Enable HDR - - - @@ -494,8 +454,8 @@ 0 0 - 946 - 536 + 646 + 395 @@ -943,8 +903,8 @@ 0 0 - 946 - 536 + 545 + 141 @@ -1007,117 +967,168 @@ - - - 6 + + + Video - - 0 - - - - - - - Width - - - - - - true + + + 6 + + + 12 + + + + + Display Mode + + + + + + + 0 + 0 + + + + + Windowed - - QAbstractSpinBox::CorrectionMode::CorrectToNearestValue + + + + Fullscreen - - false + + + + Fullscreen (Borderless) - - 0 - - - 9999 - - - 1280 - - - - - - - - - - Height - - - - - - true - - - true - - - QAbstractSpinBox::CorrectionMode::CorrectToNearestValue - - - false - - - 0 - - - 9999 - - - 720 - - - - - - - - - - Vblank Divider - - - - - - true - - - true - - - QAbstractSpinBox::CorrectionMode::CorrectToNearestValue - - - false - - - 1 - - - 9999 - - - 1 - - - - - - - - - + + + + + + + + + + + + Window Size + + + + + + W: + + + + + + + true + + + QAbstractSpinBox::CorrectionMode::CorrectToNearestValue + + + false + + + 0 + + + 9999 + + + 1280 + + + + + + + H: + + + + + + + true + + + true + + + QAbstractSpinBox::CorrectionMode::CorrectToNearestValue + + + false + + + 0 + + + 9999 + + + 720 + + + + + + + + + + Vblank Divider + + + + + + true + + + true + + + QAbstractSpinBox::CorrectionMode::CorrectToNearestValue + + + false + + + 1 + + + 9999 + + + 1 + + + + + + + + + + + + Enable HDR + + + + + @@ -1187,8 +1198,8 @@ 0 0 - 946 - 536 + 234 + 292 @@ -1331,8 +1342,8 @@ 0 0 - 946 - 536 + 455 + 252 @@ -1615,8 +1626,8 @@ 0 0 - 946 - 536 + 216 + 254 @@ -1877,39 +1888,50 @@ - - - Enable Crash Diagnostics - - - - - - - Collect Shaders - - - - - - - Copy GPU Buffers - - - - - - - Host Debug Markers - - - - - - - Guest Debug Markers - - + + + + + Collect Shaders + + + + + + + Copy GPU Buffers + + + + + + + Enable Crash Diagnostics + + + + + + + Host Debug Markers + + + + + + + Guest Debug Markers + + + + + + + Separate Log Files + + + + diff --git a/src/qt_gui/translations/ar_SA.ts b/src/qt_gui/translations/ar_SA.ts index 2c4535cf6..f1b16d4b0 100644 --- a/src/qt_gui/translations/ar_SA.ts +++ b/src/qt_gui/translations/ar_SA.ts @@ -1279,14 +1279,6 @@ Emulator المحاكي - - Enable Fullscreen - تمكين ملء الشاشة - - - Fullscreen Mode - وضع ملء الشاشة - Enable Separate Update Folder Enable Separate Update Folder @@ -1379,14 +1371,6 @@ Graphics Device جهاز الرسومات - - Width - العرض - - - Height - الارتفاع - Vblank Divider Vblank مقسم @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. لغة المحاكي:\nتحدد لغة واجهة المستخدم الخاصة بالمحاكي. - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - تمكين وضع ملء الشاشة:\nيجعل نافذة اللعبة تنتقل تلقائيًا إلى وضع ملء الشاشة.\nيمكن التبديل بالضغط على المفتاح F11. - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management. @@ -1739,14 +1719,6 @@ Browse:\nBrowse for a folder to set as the save data path. Browse:\nBrowse for a folder to set as the save data path. - - Borderless - Borderless - - - True - True - Release Release @@ -1791,6 +1763,46 @@ Directory to save data Directory to save data + + Video + Video + + + Display Mode + Display Mode + + + Windowed + Windowed + + + Fullscreen + Fullscreen + + + Fullscreen (Borderless) + Fullscreen (Borderless) + + + Window Size + Window Size + + + W: + W: + + + H: + H: + + + Separate Log Files + Separate Log Files + + + Separate Log Files:\nWrites a separate logfile for each game. + Separate Log Files:\nWrites a separate logfile for each game. + TrophyViewer diff --git a/src/qt_gui/translations/da_DK.ts b/src/qt_gui/translations/da_DK.ts index b82b451bb..e6af07e74 100644 --- a/src/qt_gui/translations/da_DK.ts +++ b/src/qt_gui/translations/da_DK.ts @@ -1279,14 +1279,6 @@ Emulator Emulator - - Enable Fullscreen - Enable Fullscreen - - - Fullscreen Mode - Fuldskærmstilstand - Enable Separate Update Folder Enable Separate Update Folder @@ -1379,14 +1371,6 @@ Graphics Device Graphics Device - - Width - Width - - - Height - Height - Vblank Divider Vblank Divider @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. Emulatorsprog:\nIndstiller sproget i emulatorens brugergrænseflade. - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - Aktiver fuld skærm:\nSætter automatisk spilvinduet i fuld skærm.\nDette kan skiftes ved at trykke på F11-tasten. - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management. @@ -1739,14 +1719,6 @@ Browse:\nBrowse for a folder to set as the save data path. Browse:\nBrowse for a folder to set as the save data path. - - Borderless - Borderless - - - True - True - Release Release @@ -1791,6 +1763,46 @@ Directory to save data Directory to save data + + Video + Video + + + Display Mode + Display Mode + + + Windowed + Windowed + + + Fullscreen + Fullscreen + + + Fullscreen (Borderless) + Fullscreen (Borderless) + + + Window Size + Window Size + + + W: + W: + + + H: + H: + + + Separate Log Files + Separate Log Files + + + Separate Log Files:\nWrites a separate logfile for each game. + Separate Log Files:\nWrites a separate logfile for each game. + TrophyViewer diff --git a/src/qt_gui/translations/de_DE.ts b/src/qt_gui/translations/de_DE.ts index b1251452c..5d57b6361 100644 --- a/src/qt_gui/translations/de_DE.ts +++ b/src/qt_gui/translations/de_DE.ts @@ -1279,14 +1279,6 @@ Emulator Emulator - - Enable Fullscreen - Vollbild aktivieren - - - Fullscreen Mode - Vollbildmodus - Enable Separate Update Folder Separaten Update-Ordner aktivieren @@ -1379,14 +1371,6 @@ Graphics Device Grafikgerät - - Width - Breite - - - Height - Höhe - Vblank Divider Vblank-Teiler @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. Emulatorsprache:\nLegt die Sprache der Emulator-Benutzeroberfläche fest. - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - Vollbildmodus aktivieren:\nSchaltet das Spielfenster automatisch in den Vollbildmodus.\nKann durch Drücken der F11-Taste umgeschaltet werden. - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. Separaten Update-Ordner aktivieren:\nErmöglicht die Installation von Spielaktualiserungen in einem separaten Ordner zur einfachen Verwaltung. @@ -1739,14 +1719,6 @@ Browse:\nBrowse for a folder to set as the save data path. Browse:\nBrowse for a folder to set as the save data path. - - Borderless - Borderless - - - True - True - Release Release @@ -1791,6 +1763,46 @@ Directory to save data Directory to save data + + Video + Video + + + Display Mode + Display Mode + + + Windowed + Windowed + + + Fullscreen + Fullscreen + + + Fullscreen (Borderless) + Fullscreen (Borderless) + + + Window Size + Window Size + + + W: + W: + + + H: + H: + + + Separate Log Files + Separate Log Files + + + Separate Log Files:\nWrites a separate logfile for each game. + Separate Log Files:\nWrites a separate logfile for each game. + TrophyViewer diff --git a/src/qt_gui/translations/el_GR.ts b/src/qt_gui/translations/el_GR.ts index 8ecc06e6c..3d2763409 100644 --- a/src/qt_gui/translations/el_GR.ts +++ b/src/qt_gui/translations/el_GR.ts @@ -1279,14 +1279,6 @@ Emulator Emulator - - Enable Fullscreen - Enable Fullscreen - - - Fullscreen Mode - Λειτουργία Πλήρους Οθόνης - Enable Separate Update Folder Enable Separate Update Folder @@ -1379,14 +1371,6 @@ Graphics Device Graphics Device - - Width - Width - - - Height - Height - Vblank Divider Vblank Divider @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. Γλώσσα Εξομοιωτή:\nΡυθμίζει τη γλώσσα του γραφικού περιβάλλοντος του εξομοιωτή. - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - Ενεργοποίηση Πλήρους Οθόνης:\nΑυτόματα μετατρέπει το παράθυρο του παιχνιδιού σε λειτουργία πλήρους οθόνης.\nΜπορεί να ενεργοποιηθεί/απενεργοποιηθεί πατώντας το πλήκτρο F11. - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. @@ -1739,14 +1719,6 @@ Browse:\nBrowse for a folder to set as the save data path. Browse:\nBrowse for a folder to set as the save data path. - - Borderless - Borderless - - - True - True - Release Release @@ -1791,6 +1763,46 @@ Directory to save data Directory to save data + + Video + Video + + + Display Mode + Display Mode + + + Windowed + Windowed + + + Fullscreen + Fullscreen + + + Fullscreen (Borderless) + Fullscreen (Borderless) + + + Window Size + Window Size + + + W: + W: + + + H: + H: + + + Separate Log Files + Separate Log Files + + + Separate Log Files:\nWrites a separate logfile for each game. + Separate Log Files:\nWrites a separate logfile for each game. + TrophyViewer diff --git a/src/qt_gui/translations/en_US.ts b/src/qt_gui/translations/en_US.ts index 8d719977a..263267aba 100644 --- a/src/qt_gui/translations/en_US.ts +++ b/src/qt_gui/translations/en_US.ts @@ -1279,14 +1279,6 @@ Emulator Emulator - - Enable Fullscreen - Enable Fullscreen - - - Fullscreen Mode - Fullscreen Mode - Enable Separate Update Folder Enable Separate Update Folder @@ -1369,7 +1361,7 @@ GUI - Gui + GUI User @@ -1379,14 +1371,6 @@ Graphics Device Graphics Device - - Width - Width - - - Height - Height - Vblank Divider Vblank Divider @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. Emulator Language:\nSets the language of the emulator's user interface. - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. @@ -1739,14 +1719,6 @@ Browse:\nBrowse for a folder to set as the save data path. Browse:\nBrowse for a folder to set as the save data path. - - Borderless - - - - True - - Release @@ -1791,6 +1763,46 @@ Directory to save data + + Video + + + + Display Mode + + + + Windowed + + + + Fullscreen + + + + Fullscreen (Borderless) + + + + Window Size + + + + W: + + + + H: + + + + Separate Log Files + + + + Separate Log Files:\nWrites a separate logfile for each game. + + TrophyViewer diff --git a/src/qt_gui/translations/es_ES.ts b/src/qt_gui/translations/es_ES.ts index e342bf51f..932d72d2a 100644 --- a/src/qt_gui/translations/es_ES.ts +++ b/src/qt_gui/translations/es_ES.ts @@ -1279,14 +1279,6 @@ Emulator Emulador - - Enable Fullscreen - Habilitar pantalla completa - - - Fullscreen Mode - Modo de Pantalla Completa - Enable Separate Update Folder Enable Separate Update Folder @@ -1379,14 +1371,6 @@ Graphics Device Dispositivo gráfico - - Width - Ancho - - - Height - Alto - Vblank Divider Divisor de Vblank @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. Idioma del Emulador:\nConfigura el idioma de la interfaz de usuario del emulador. - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - Habilitar Pantalla Completa:\nColoca automáticamente la ventana del juego en modo de pantalla completa.\nEsto se puede alternar presionando la tecla F11. - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. @@ -1739,14 +1719,6 @@ Browse:\nBrowse for a folder to set as the save data path. Browse:\nBrowse for a folder to set as the save data path. - - Borderless - Borderless - - - True - True - Release Release @@ -1791,6 +1763,46 @@ Directory to save data Directory to save data + + Video + Video + + + Display Mode + Display Mode + + + Windowed + Windowed + + + Fullscreen + Fullscreen + + + Fullscreen (Borderless) + Fullscreen (Borderless) + + + Window Size + Window Size + + + W: + W: + + + H: + H: + + + Separate Log Files + Separate Log Files + + + Separate Log Files:\nWrites a separate logfile for each game. + Separate Log Files:\nWrites a separate logfile for each game. + TrophyViewer diff --git a/src/qt_gui/translations/fa_IR.ts b/src/qt_gui/translations/fa_IR.ts index 1cdddcf46..a173dc9d4 100644 --- a/src/qt_gui/translations/fa_IR.ts +++ b/src/qt_gui/translations/fa_IR.ts @@ -1279,14 +1279,6 @@ Emulator شبیه ساز - - Enable Fullscreen - تمام صفحه - - - Fullscreen Mode - حالت تمام صفحه - Enable Separate Update Folder فعال‌سازی پوشه جداگانه برای به‌روزرسانی @@ -1379,14 +1371,6 @@ Graphics Device کارت گرافیک مورداستفاده - - Width - عرض - - - Height - طول - Vblank Divider تقسیم‌کننده Vblank @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. زبان شبیه‌ساز:\nزبان رابط کاربری شبیه‌ساز را انتخاب می‌کند. - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - فعال‌سازی تمام صفحه:\nپنجره بازی را به‌طور خودکار به حالت تمام صفحه در می‌آورد.\nبرای تغییر این حالت می‌توانید کلید F11 را فشار دهید. - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. فعال‌سازی پوشه جداگانه برای به‌روزرسانی:\nامکان نصب به‌روزرسانی‌های بازی در یک پوشه جداگانه برای مدیریت راحت‌تر را فراهم می‌کند. @@ -1739,14 +1719,6 @@ Browse:\nBrowse for a folder to set as the save data path. Browse:\nBrowse for a folder to set as the save data path. - - Borderless - Borderless - - - True - True - Release Release @@ -1791,6 +1763,46 @@ Directory to save data Directory to save data + + Video + Video + + + Display Mode + Display Mode + + + Windowed + Windowed + + + Fullscreen + Fullscreen + + + Fullscreen (Borderless) + Fullscreen (Borderless) + + + Window Size + Window Size + + + W: + W: + + + H: + H: + + + Separate Log Files + Separate Log Files + + + Separate Log Files:\nWrites a separate logfile for each game. + Separate Log Files:\nWrites a separate logfile for each game. + TrophyViewer diff --git a/src/qt_gui/translations/fi_FI.ts b/src/qt_gui/translations/fi_FI.ts index 1b8ef4166..bcbbd07f6 100644 --- a/src/qt_gui/translations/fi_FI.ts +++ b/src/qt_gui/translations/fi_FI.ts @@ -1279,14 +1279,6 @@ Emulator Emulaattori - - Enable Fullscreen - Ota Käyttöön Koko Ruudun Tila - - - Fullscreen Mode - Koko näytön tila - Enable Separate Update Folder Ota Käyttöön Erillinen Päivityshakemisto @@ -1379,14 +1371,6 @@ Graphics Device Näytönohjain - - Width - Leveys - - - Height - Korkeus - Vblank Divider Vblank jakaja @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. Emulaattorin Kieli:\nAsettaa emulaattorin käyttöliittymän kielen. - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - Ota Koko Näytön Tila Käyttöön:\nAvaa pelin ikkunan automaattisesti koko näytön tilassa.\nTilaa voi vaihtaa painamalla F11-näppäintä. - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. Ota Käyttöön Erillinen Päivityskansio:\nOttaa käyttöön päivitysten asennuksen erilliseen kansioon helpottamaan niiden hallintaa.\nTämä on tehtävissä manuaalisesti lisäämällä puretun päivityksen pelikansioon "CUSA00000-UPDATE" nimellä, missä CUSA ID vastaa pelin ID:tä. @@ -1739,14 +1719,6 @@ Browse:\nBrowse for a folder to set as the save data path. Browse:\nBrowse for a folder to set as the save data path. - - Borderless - Borderless - - - True - True - Release Release @@ -1791,6 +1763,46 @@ Directory to save data Directory to save data + + Video + Video + + + Display Mode + Display Mode + + + Windowed + Windowed + + + Fullscreen + Fullscreen + + + Fullscreen (Borderless) + Fullscreen (Borderless) + + + Window Size + Window Size + + + W: + W: + + + H: + H: + + + Separate Log Files + Separate Log Files + + + Separate Log Files:\nWrites a separate logfile for each game. + Separate Log Files:\nWrites a separate logfile for each game. + TrophyViewer diff --git a/src/qt_gui/translations/fr_FR.ts b/src/qt_gui/translations/fr_FR.ts index d328e9bcc..fef03d7bb 100644 --- a/src/qt_gui/translations/fr_FR.ts +++ b/src/qt_gui/translations/fr_FR.ts @@ -1279,14 +1279,6 @@ Emulator Émulateur - - Enable Fullscreen - Plein écran - - - Fullscreen Mode - Mode Plein Écran - Enable Separate Update Folder Dossier séparé pour les mises à jour @@ -1379,14 +1371,6 @@ Graphics Device Carte graphique - - Width - Largeur - - - Height - Hauteur - Vblank Divider Vblank @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. Langue de l'émulateur:\nDéfinit la langue de l'interface utilisateur de l'émulateur. - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - Activer le mode plein écran:\nMet automatiquement la fenêtre du jeu en mode plein écran.\nCela peut être activé en appuyant sur la touche F11. - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. Dossier séparé pour les mises à jour:\nInstalle les mises à jours des jeux dans un dossier séparé pour une gestion plus facile. @@ -1739,14 +1719,6 @@ Browse:\nBrowse for a folder to set as the save data path. Browse:\nBrowse for a folder to set as the save data path. - - Borderless - Borderless - - - True - True - Release Release @@ -1791,6 +1763,46 @@ Directory to save data Directory to save data + + Video + Video + + + Display Mode + Display Mode + + + Windowed + Windowed + + + Fullscreen + Fullscreen + + + Fullscreen (Borderless) + Fullscreen (Borderless) + + + Window Size + Window Size + + + W: + W: + + + H: + H: + + + Separate Log Files + Separate Log Files + + + Separate Log Files:\nWrites a separate logfile for each game. + Separate Log Files:\nWrites a separate logfile for each game. + TrophyViewer diff --git a/src/qt_gui/translations/hu_HU.ts b/src/qt_gui/translations/hu_HU.ts index 5be4a6658..93e266f2c 100644 --- a/src/qt_gui/translations/hu_HU.ts +++ b/src/qt_gui/translations/hu_HU.ts @@ -1279,14 +1279,6 @@ Emulator Emulátor - - Enable Fullscreen - Teljes Képernyő Engedélyezése - - - Fullscreen Mode - Teljes képernyős mód - Enable Separate Update Folder Külön Frissítési Mappa Engedélyezése @@ -1379,14 +1371,6 @@ Graphics Device Grafikai Eszköz - - Width - Szélesség - - - Height - Magasság - Vblank Divider Vblank Elosztó @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. Emulátor nyelve:\nBeállítja az emulátor felhasználói felületének nyelvét. - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - Teljes képernyő engedélyezése:\nAutomatikusan teljes képernyőre állítja a játék ablakát.\nEz a F11 billentyű megnyomásával kapcsolható ki/be. - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. Külön Frissítéi Mappa Engedélyezése:\nEngedélyezi a frissítések külön mappába helyezését, a könnyű kezelésük érdekében. @@ -1739,14 +1719,6 @@ Browse:\nBrowse for a folder to set as the save data path. Browse:\nBrowse for a folder to set as the save data path. - - Borderless - Borderless - - - True - True - Release Release @@ -1791,6 +1763,46 @@ Directory to save data Directory to save data + + Video + Video + + + Display Mode + Display Mode + + + Windowed + Windowed + + + Fullscreen + Fullscreen + + + Fullscreen (Borderless) + Fullscreen (Borderless) + + + Window Size + Window Size + + + W: + W: + + + H: + H: + + + Separate Log Files + Separate Log Files + + + Separate Log Files:\nWrites a separate logfile for each game. + Separate Log Files:\nWrites a separate logfile for each game. + TrophyViewer diff --git a/src/qt_gui/translations/id_ID.ts b/src/qt_gui/translations/id_ID.ts index 81ae6b0ff..335450ca2 100644 --- a/src/qt_gui/translations/id_ID.ts +++ b/src/qt_gui/translations/id_ID.ts @@ -1279,14 +1279,6 @@ Emulator Emulator - - Enable Fullscreen - Enable Fullscreen - - - Fullscreen Mode - Mode Layar Penuh - Enable Separate Update Folder Enable Separate Update Folder @@ -1379,14 +1371,6 @@ Graphics Device Graphics Device - - Width - Width - - - Height - Height - Vblank Divider Vblank Divider @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. Bahasa Emulator:\nMenetapkan bahasa antarmuka pengguna emulator. - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - Aktifkan Mode Layar Penuh:\nSecara otomatis menempatkan jendela permainan dalam mode layar penuh.\nIni dapat dinonaktifkan dengan menekan tombol F11. - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management. @@ -1739,14 +1719,6 @@ Browse:\nBrowse for a folder to set as the save data path. Browse:\nBrowse for a folder to set as the save data path. - - Borderless - Borderless - - - True - True - Release Release @@ -1791,6 +1763,46 @@ Directory to save data Directory to save data + + Video + Video + + + Display Mode + Display Mode + + + Windowed + Windowed + + + Fullscreen + Fullscreen + + + Fullscreen (Borderless) + Fullscreen (Borderless) + + + Window Size + Window Size + + + W: + W: + + + H: + H: + + + Separate Log Files + Separate Log Files + + + Separate Log Files:\nWrites a separate logfile for each game. + Separate Log Files:\nWrites a separate logfile for each game. + TrophyViewer diff --git a/src/qt_gui/translations/it_IT.ts b/src/qt_gui/translations/it_IT.ts index be61e0df2..fd1f4d521 100644 --- a/src/qt_gui/translations/it_IT.ts +++ b/src/qt_gui/translations/it_IT.ts @@ -1279,14 +1279,6 @@ Emulator Emulatore - - Enable Fullscreen - Abilita Schermo Intero - - - Fullscreen Mode - Modalità Schermo Intero - Enable Separate Update Folder Abilita Cartella Aggiornamenti Separata @@ -1379,14 +1371,6 @@ Graphics Device Scheda Grafica - - Width - Larghezza - - - Height - Altezza - Vblank Divider Divisore Vblank @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. Lingua dell'Emulatore:\nImposta la lingua dell'interfaccia utente dell'emulatore. - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - Abilita Schermo Intero:\nMetti automaticamente la finestra di gioco in modalità schermo intero.\nQuesto può essere disattivato premendo il tasto F11. - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. Abilita Cartella Aggiornamenti Separata:\nAbilita l'installazione degli aggiornamenti in una cartella separata per una più facile gestione. @@ -1739,14 +1719,6 @@ Browse:\nBrowse for a folder to set as the save data path. Esplora:\nEsplora una cartella da impostare come percorso dati di salvataggio. - - Borderless - Finestra senza bordi - - - True - Vero - Release Rilascio @@ -1791,6 +1763,46 @@ Directory to save data Cartella per salvare i dati + + Video + Video + + + Display Mode + Modalità di visualizzazione + + + Windowed + In finestra + + + Fullscreen + Schermo Intero + + + Fullscreen (Borderless) + Schermo Intero (Senza Bordi) + + + Window Size + Dimensione Finestra + + + W: + L: + + + H: + A: + + + Separate Log Files + File Di Registro Separati + + + Separate Log Files:\nWrites a separate logfile for each game. + File di registro separati:\nScrive un file di registro separato per ogni gioco. + TrophyViewer diff --git a/src/qt_gui/translations/ja_JP.ts b/src/qt_gui/translations/ja_JP.ts index 8614fb79d..6e11dfe0c 100644 --- a/src/qt_gui/translations/ja_JP.ts +++ b/src/qt_gui/translations/ja_JP.ts @@ -1279,14 +1279,6 @@ Emulator エミュレーター - - Enable Fullscreen - フルスクリーンを有効にする - - - Fullscreen Mode - 全画面モード - Enable Separate Update Folder アップデートフォルダの分離を有効化 @@ -1379,14 +1371,6 @@ Graphics Device グラフィックスデバイス - - Width - - - - Height - 高さ - Vblank Divider Vblankディバイダー @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. エミュレーターの言語:\nエミュレーターのユーザーインターフェースの言語を設定します。 - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - 全画面モードを有効にする:\nゲームウィンドウを自動的に全画面モードにします。\nF11キーを押すことで切り替えることができます。 - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. Enable Separate Update Folder:\nゲームのアップデートを別のフォルダにインストールすることで、管理が容易になります。 @@ -1739,14 +1719,6 @@ Browse:\nBrowse for a folder to set as the save data path. Browse:\nBrowse for a folder to set as the save data path. - - Borderless - ボーダーレス - - - True - True - Release Release @@ -1791,6 +1763,46 @@ Directory to save data Directory to save data + + Video + Video + + + Display Mode + Display Mode + + + Windowed + Windowed + + + Fullscreen + Fullscreen + + + Fullscreen (Borderless) + Fullscreen (Borderless) + + + Window Size + Window Size + + + W: + W: + + + H: + H: + + + Separate Log Files + Separate Log Files + + + Separate Log Files:\nWrites a separate logfile for each game. + Separate Log Files:\nWrites a separate logfile for each game. + TrophyViewer diff --git a/src/qt_gui/translations/ko_KR.ts b/src/qt_gui/translations/ko_KR.ts index 98393050f..ad24f6f54 100644 --- a/src/qt_gui/translations/ko_KR.ts +++ b/src/qt_gui/translations/ko_KR.ts @@ -1279,14 +1279,6 @@ Emulator Emulator - - Enable Fullscreen - Enable Fullscreen - - - Fullscreen Mode - 전체 화면 모드 - Enable Separate Update Folder Enable Separate Update Folder @@ -1379,14 +1371,6 @@ Graphics Device Graphics Device - - Width - Width - - - Height - Height - Vblank Divider Vblank Divider @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. Emulator Language:\nSets the language of the emulator's user interface. - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. @@ -1739,14 +1719,6 @@ Browse:\nBrowse for a folder to set as the save data path. Browse:\nBrowse for a folder to set as the save data path. - - Borderless - Borderless - - - True - True - Release Release @@ -1791,6 +1763,46 @@ Directory to save data Directory to save data + + Video + Video + + + Display Mode + Display Mode + + + Windowed + Windowed + + + Fullscreen + Fullscreen + + + Fullscreen (Borderless) + Fullscreen (Borderless) + + + Window Size + Window Size + + + W: + W: + + + H: + H: + + + Separate Log Files + Separate Log Files + + + Separate Log Files:\nWrites a separate logfile for each game. + Separate Log Files:\nWrites a separate logfile for each game. + TrophyViewer diff --git a/src/qt_gui/translations/lt_LT.ts b/src/qt_gui/translations/lt_LT.ts index b9be1abbd..c1886a4fa 100644 --- a/src/qt_gui/translations/lt_LT.ts +++ b/src/qt_gui/translations/lt_LT.ts @@ -1279,14 +1279,6 @@ Emulator Emulator - - Enable Fullscreen - Enable Fullscreen - - - Fullscreen Mode - Viso ekranas - Enable Separate Update Folder Enable Separate Update Folder @@ -1379,14 +1371,6 @@ Graphics Device Graphics Device - - Width - Width - - - Height - Height - Vblank Divider Vblank Divider @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. Emuliatoriaus kalba:\nNustato emuliatoriaus vartotojo sąsajos kalbą. - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - Įjungti visą ekraną:\nAutomatiškai perjungia žaidimo langą į viso ekrano režimą.\nTai galima išjungti paspaudus F11 klavišą. - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. @@ -1739,14 +1719,6 @@ Browse:\nBrowse for a folder to set as the save data path. Browse:\nBrowse for a folder to set as the save data path. - - Borderless - Borderless - - - True - True - Release Release @@ -1791,6 +1763,46 @@ Directory to save data Directory to save data + + Video + Video + + + Display Mode + Display Mode + + + Windowed + Windowed + + + Fullscreen + Fullscreen + + + Fullscreen (Borderless) + Fullscreen (Borderless) + + + Window Size + Window Size + + + W: + W: + + + H: + H: + + + Separate Log Files + Separate Log Files + + + Separate Log Files:\nWrites a separate logfile for each game. + Separate Log Files:\nWrites a separate logfile for each game. + TrophyViewer diff --git a/src/qt_gui/translations/nb_NO.ts b/src/qt_gui/translations/nb_NO.ts index aea48dec4..daf44c3bb 100644 --- a/src/qt_gui/translations/nb_NO.ts +++ b/src/qt_gui/translations/nb_NO.ts @@ -70,11 +70,11 @@ Do you want to delete the selected file?\n%1 - Ønsker du å slette den valgte filen?\n%1 + Ønsker du å slette den valgte fila?\n%1 Select Patch File: - Velg programrettelse-filen: + Velg programrettelse-fila: Download Patches @@ -110,11 +110,11 @@ Unable to open the file for reading. - Kan ikke åpne filen for lesing. + Kan ikke åpne fila for lesing. Unable to open the file for writing. - Kan ikke åpne filen for skriving. + Kan ikke åpne fila for skriving. Failed to parse XML: @@ -138,19 +138,19 @@ File Exists - Filen eksisterer + Fila eksisterer File already exists. Do you want to replace it? - Filen eksisterer allerede. Ønsker du å erstatte den? + Fila eksisterer allerede. Ønsker du å erstatte den? Failed to save file: - Kunne ikke lagre filen: + Kunne ikke lagre fila: Failed to download file: - Kunne ikke laste ned filen: + Kunne ikke laste ned fila: Cheats Not Found @@ -166,7 +166,7 @@ You have successfully downloaded the cheats for this version of the game from the selected repository. You can try downloading from another repository, if it is available it will also be possible to use it by selecting the file from the list. - Du har lastet ned juks for denne versjonen av spillet fra den valgte pakkebrønnen. Du kan prøve å laste ned fra en annen pakkebrønn, hvis det er tilgjengelig, vil det også være mulig å bruke det ved å velge filen fra listen. + Du har lastet ned juks for denne versjonen av spillet fra den valgte pakkebrønnen. Du kan prøve å laste ned fra en annen pakkebrønn, hvis det er tilgjengelig, vil det også være mulig å bruke det ved å velge fila fra lista. Failed to save: @@ -210,7 +210,7 @@ Failed to open file: - Kunne ikke åpne filen: + Kunne ikke åpne fila: XML ERROR: @@ -341,7 +341,7 @@ Failed to save the update file at - Kunne ikke lagre oppdateringsfilen på + Kunne ikke lagre oppdateringsfila på Starting Update... @@ -349,7 +349,7 @@ Failed to create the update script file - Kunne ikke opprette oppdateringsskriptfilen + Kunne ikke opprette oppdateringsskriptfila @@ -479,7 +479,7 @@ Options / Start - Options / Start + Options / Start R3 @@ -519,27 +519,27 @@ Color Adjustment - Color Adjustment + Fargejustering R: - R: + R: G: - G: + G: B: - B: + B: Override Lightbar Color - Override Lightbar Color + Overstyr farge på lyslinja Override Color - Override Color + Overstyr farge @@ -553,7 +553,7 @@ GameInfoClass Loading game list, please wait :3 - Laster spill-liste, vennligst vent :3 + Laster spilliste, vennligst vent :3 Cancel @@ -572,7 +572,7 @@ Directory to install games - Mappe for å installere spill + Mappe for installering av spill Browse @@ -584,7 +584,7 @@ Directory to install DLC - Mappe for å installere DLC + Mappe for installering av DLC @@ -717,7 +717,7 @@ Trophy Viewer - Trofé viser + Troféviser Open Folder... @@ -865,7 +865,7 @@ SFO Viewer for - SFO Viewer for + SFO-viser for @@ -939,11 +939,11 @@ Show Game List - Vis spill-listen + Vis spilliste Game List Refresh - Oppdater spill-listen + Oppdater spillista Tiny @@ -983,11 +983,11 @@ Dump Game List - Dump spill-liste + Dump spilliste PKG Viewer - PKG viser + PKG-viser Search... @@ -1003,11 +1003,11 @@ Game List Icons - Spill-liste ikoner + Spilliste ikoner Game List Mode - Spill-liste modus + Spilliste modus Settings @@ -1051,7 +1051,7 @@ Game List - Spill-liste + Spilliste * Unsupported Vulkan Version @@ -1159,7 +1159,7 @@ File doesn't appear to be a valid PKG file - Filen ser ikke ut til å være en gyldig PKG-fil + Fila ser ikke ut til å være en gyldig PKG-fil Run Game @@ -1279,14 +1279,6 @@ Emulator Emulator - - Enable Fullscreen - Bruk fullskjerm - - - Fullscreen Mode - Fullskjermmodus - Enable Separate Update Folder Bruk seperat oppdateringsmappe @@ -1297,7 +1289,7 @@ Show Game Size In List - Vis spillstørrelse i listen + Vis spillstørrelse i lista Show Splash @@ -1325,11 +1317,11 @@ Log Type - Logg type + Loggføringstype Log Filter - Logg filter + Loggfilter Open Log Location @@ -1379,14 +1371,6 @@ Graphics Device Grafikkenhet - - Width - Bredde - - - Height - Høyde - Vblank Divider Vblank skillelinje @@ -1437,7 +1421,7 @@ Enable Vulkan Synchronization Validation - Bruk Vulkan Validation Layers + Bruk Vulkan Synchronization Validation Enable RenderDoc Debugging @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. Emulatorspråket:\nAngir språket for emulatorens brukergrensesnitt. - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - Bruk fullskjerm:\nSetter spillvinduet automatisk i fullskjermmodus.\nDette kan slås av ved å trykke på F11-tasten. - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. Bruk separat oppdateringsmappe:\n Gjør det mulig å installere spilloppdateringer i en egen mappe for enkel administrasjon.\nDette kan gjøres manuelt ved å legge til den utpakkede oppdateringen, til spillmappa med navnet "CUSA00000-UPDATE" der CUSA-ID-en samsvarer med spillets-ID. @@ -1585,15 +1565,15 @@ Log Type:\nSets whether to synchronize the output of the log window for performance. May have adverse effects on emulation. - Logg type:\nAngir om loggvinduets utdata skal synkroniseres for ytelse. Kan ha negative effekter for emulatoren. + Loggføringstype:\nAngir om loggvinduets utdata skal synkroniseres for ytelse. Kan ha negative effekter for emulatoren. Log Filter:\nFilters the log to only print specific information.\nExamples: "Core:Trace" "Lib.Pad:Debug Common.Filesystem:Error" "*:Critical"\nLevels: Trace, Debug, Info, Warning, Error, Critical - in this order, a specific level silences all levels preceding it in the list and logs every level after it. - Logg filter:\nFiltrerer loggen for å kun skrive ut spesifikk informasjon.\nEksempler: "Core:Trace" "Lib.Pad:Debug Common.Filesystem:Error" "*:Critical" Nivåer: Trace, Debug, Info, Warning, Error, Critical - i denne rekkefølgen, et spesifikt nivå demper alle tidligere nivåer i listen og logger alle nivåer etter det. + Loggfilter:\nFiltrerer loggen for å kun skrive ut spesifikk informasjon.\nEksempler: "Core:Trace" "Lib.Pad:Debug Common.Filesystem:Error" "*:Critical" \nNivåer: Trace, Debug, Info, Warning, Error, Critical - i denne rekkefølgen, et spesifikt nivå demper alle tidligere nivåer i lista og loggfører alle nivåer etter det. Update:\nRelease: Official versions released every month that may be very outdated, but are more reliable and tested.\nNightly: Development versions that have all the latest features and fixes, but may contain bugs and are less stable. - Oppdatering:\nRelease: Offisielle versjoner utgitt hver måned som kan være veldig utdaterte, men er mer pålitelige og testet.\nNightly: Utviklingsversjoner som har alle de nyeste funksjonene og feilrettingene, men som kan inneholde feil og er mindre stabile. + Oppdatering:\nOffisiell: Offisielle versjoner utgitt hver måned som kan være veldig utdaterte, men er mer pålitelige og testet.\nNattlig: Utviklingsversjoner som har alle de nyeste funksjonene og feilrettingene, men som kan inneholde feil og er mindre stabile. Background Image:\nControl the opacity of the game background image. @@ -1661,7 +1641,7 @@ Graphics Device:\nOn multiple GPU systems, select the GPU the emulator will use from the drop down list,\nor select "Auto Select" to automatically determine it. - Grafikkenhet:\nI systemer med flere GPU-er, velg GPU-en emulatoren skal bruke fra rullegardinlisten,\neller "Velg automatisk". + Grafikkenhet:\nI systemer med flere GPU-er, velg GPU-en emulatoren skal bruke fra rullegardinlista,\neller "Velg automatisk&quot. Width/Height:\nSets the size of the emulator window at launch, which can be resized during gameplay.\nThis is different from the in-game resolution. @@ -1689,11 +1669,11 @@ Add:\nAdd a folder to the list. - Legg til:\nLegg til en mappe til listen. + Legg til:\nLegg til en mappe til lista. Remove:\nRemove a folder from the list. - Fjern:\nFjern en mappe fra listen. + Fjern:\nFjern en mappe fra lista. Enable Debug Dumping:\nSaves the import and export symbols and file header information of the currently running PS4 program to a directory. @@ -1701,11 +1681,11 @@ Enable Vulkan Validation Layers:\nEnables a system that validates the state of the Vulkan renderer and logs information about its internal state.\nThis will reduce performance and likely change the behavior of emulation. - Bruk Vulkan Validation Layers:\nAktiverer et system som bekrefter tilstanden til Vulkan-gjengiveren og logger informasjon om dens indre tilstand.\n Dette vil redusere ytelsen og sannsynligvis endre emulatorens atferd. + Bruk Vulkan Validation Layers:\nAktiverer et system som bekrefter tilstanden til Vulkan-gjengiveren og loggfører informasjon om dens indre tilstand.\n Dette vil redusere ytelsen og sannsynligvis endre emulatorens atferd. Enable Vulkan Synchronization Validation:\nEnables a system that validates the timing of Vulkan rendering tasks.\nThis will reduce performance and likely change the behavior of emulation. - Bruk Vulkan synkronisering validering:\nEt system som bekrefter frekvens tiden av Vulkan-gjengivelseoppgaver.\nDette vil redusere ytelsen og sannsynligvis endre emulatorens atferd. + Bruk Vulkan Synchronization Validation:\nEt system som bekrefter frekvens tiden av Vulkan-gjengivelseoppgaver.\nDette vil redusere ytelsen og sannsynligvis endre emulatorens atferd. Enable RenderDoc Debugging:\nIf enabled, the emulator will provide compatibility with Renderdoc to allow capture and analysis of the currently rendered frame. @@ -1739,21 +1719,13 @@ Browse:\nBrowse for a folder to set as the save data path. Endre mappe:\nEndrer hvilken mappe shadPS4 skal lagre data til. - - Borderless - Kantløs - - - True - Sant - Release - Release + Offisiell Nightly - Nightly + Nattlig Set the volume of the background music. @@ -1773,11 +1745,11 @@ async - async + asynkron sync - sync + synkron Auto Select @@ -1791,12 +1763,52 @@ Directory to save data Mappe for lagring av data + + Video + Video + + + Display Mode + Skjermmodus + + + Windowed + I vindu + + + Fullscreen + Fullskjerm + + + Fullscreen (Borderless) + Fullskjerm i vindu + + + Window Size + Vindustørrelse + + + W: + B: + + + H: + H: + + + Separate Log Files + Separate loggfiler + + + Separate Log Files:\nWrites a separate logfile for each game. + Separate loggfiler:\nOppretter en separat loggfil for hvert spill. + TrophyViewer Trophy Viewer - Trofé viser + Troféviser diff --git a/src/qt_gui/translations/nl_NL.ts b/src/qt_gui/translations/nl_NL.ts index e6497768e..762254a6e 100644 --- a/src/qt_gui/translations/nl_NL.ts +++ b/src/qt_gui/translations/nl_NL.ts @@ -1279,14 +1279,6 @@ Emulator Emulator - - Enable Fullscreen - Enable Fullscreen - - - Fullscreen Mode - Volledig schermmodus - Enable Separate Update Folder Enable Separate Update Folder @@ -1379,14 +1371,6 @@ Graphics Device Graphics Device - - Width - Width - - - Height - Height - Vblank Divider Vblank Divider @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. Emulator Taal:\nStelt de taal van de gebruikersinterface van de emulator in. - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - Volledig scherm inschakelen:\nZet het gamevenster automatisch in de volledig scherm modus.\nDit kan worden omgeschakeld door op de F11-toets te drukken. - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management. @@ -1739,14 +1719,6 @@ Browse:\nBrowse for a folder to set as the save data path. Browse:\nBrowse for a folder to set as the save data path. - - Borderless - Borderless - - - True - True - Release Release @@ -1791,6 +1763,46 @@ Directory to save data Directory to save data + + Video + Video + + + Display Mode + Display Mode + + + Windowed + Windowed + + + Fullscreen + Fullscreen + + + Fullscreen (Borderless) + Fullscreen (Borderless) + + + Window Size + Window Size + + + W: + W: + + + H: + H: + + + Separate Log Files + Separate Log Files + + + Separate Log Files:\nWrites a separate logfile for each game. + Separate Log Files:\nWrites a separate logfile for each game. + TrophyViewer diff --git a/src/qt_gui/translations/pl_PL.ts b/src/qt_gui/translations/pl_PL.ts index 379abe346..05ce4d9be 100644 --- a/src/qt_gui/translations/pl_PL.ts +++ b/src/qt_gui/translations/pl_PL.ts @@ -1279,14 +1279,6 @@ Emulator Emulator - - Enable Fullscreen - Włącz pełny ekran - - - Fullscreen Mode - Tryb Pełnoekranowy - Enable Separate Update Folder Włącz oddzielny folder aktualizacji @@ -1379,14 +1371,6 @@ Graphics Device Karta graficzna - - Width - Szerokość - - - Height - Wysokość - Vblank Divider Dzielnik przerwy pionowej (Vblank) @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. Język emulatora:\nUstala język interfejsu użytkownika emulatora. - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - Włącz tryb pełnoekranowy:\nAutomatycznie przełącza okno gry w tryb pełnoekranowy.\nMożna to wyłączyć naciskając klawisz F11. - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. Włącz oddzielny folder aktualizacji:\nUmożliwia instalowanie aktualizacji gier w oddzielnym folderze w celu łatwego zarządzania. @@ -1739,14 +1719,6 @@ Browse:\nBrowse for a folder to set as the save data path. Browse:\nBrowse for a folder to set as the save data path. - - Borderless - Borderless - - - True - True - Release Release @@ -1791,6 +1763,46 @@ Directory to save data Directory to save data + + Video + Video + + + Display Mode + Display Mode + + + Windowed + Windowed + + + Fullscreen + Fullscreen + + + Fullscreen (Borderless) + Fullscreen (Borderless) + + + Window Size + Window Size + + + W: + W: + + + H: + H: + + + Separate Log Files + Separate Log Files + + + Separate Log Files:\nWrites a separate logfile for each game. + Separate Log Files:\nWrites a separate logfile for each game. + TrophyViewer diff --git a/src/qt_gui/translations/pt_BR.ts b/src/qt_gui/translations/pt_BR.ts index 6b92e74af..3ff4e106a 100644 --- a/src/qt_gui/translations/pt_BR.ts +++ b/src/qt_gui/translations/pt_BR.ts @@ -1279,14 +1279,6 @@ Emulator Emulador - - Enable Fullscreen - Ativar Tela Cheia - - - Fullscreen Mode - Modo de Tela Cheia - Enable Separate Update Folder Ativar Pasta de Atualização Separada @@ -1379,14 +1371,6 @@ Graphics Device Placa de Vídeo - - Width - Largura - - - Height - Altura - Vblank Divider Divisor Vblank @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. Idioma do emulador:\nDefine o idioma da interface do emulador. - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - Ativar Tela Cheia:\nAltera a janela do jogo para o modo tela cheia.\nIsso pode ser alterado pressionando a tecla F11. - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. Ativar pasta de atualização separada:\nPermite instalar atualizações de jogos em uma pasta separada para fácil gerenciamento.\nIsso pode ser manualmente criado adicionando a atualização extraída à pasta do jogo com o nome "CUSA00000-UPDATE" onde o ID do CUSA corresponde ao ID do jogo. @@ -1739,14 +1719,6 @@ Browse:\nBrowse for a folder to set as the save data path. Procurar:\nProcure uma pasta para definir como o caminho para salvar dados. - - Borderless - Janela sem Bordas - - - True - Tela Cheia - Release Release @@ -1791,6 +1763,46 @@ Directory to save data Diretório para salvar dados + + Video + Vídeo + + + Display Mode + Modo de Exibição + + + Windowed + Em Janela + + + Fullscreen + Tela Cheia + + + Fullscreen (Borderless) + Tela Cheia (Sem Bordas) + + + Window Size + Tamanho da Janela + + + W: + L: + + + H: + A: + + + Separate Log Files + Separar Arquivos de Log + + + Separate Log Files:\nWrites a separate logfile for each game. + Separar Arquivos de Log:\nGrava um arquivo de log para cada jogo. + TrophyViewer diff --git a/src/qt_gui/translations/pt_PT.ts b/src/qt_gui/translations/pt_PT.ts index 0b5cd5632..e5cbedb96 100644 --- a/src/qt_gui/translations/pt_PT.ts +++ b/src/qt_gui/translations/pt_PT.ts @@ -1279,14 +1279,6 @@ Emulator Emulador - - Enable Fullscreen - Ativar Ecrã Inteiro - - - Fullscreen Mode - Modo de Ecrã Inteiro - Enable Separate Update Folder Ativar Pasta de Atualizações Separada @@ -1379,14 +1371,6 @@ Graphics Device Placa Gráfica - - Width - Largura - - - Height - Altura - Vblank Divider Divisor Vblank @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. Idioma do Emulador:\nDefine o idioma da interface gráfica do emulador. - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - Ativar Ecrã Cheio:\nPõe automaticamente a janela do jogo no modo de ecrã cheio.\nIsto pode ser alterado pressionando a tecla F11. - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. Ativar Pasta de Atualização Separada:\nPermite instalar as atualizações dos jogos numa pasta separada para uma fácil gestão.\nIsto pode ser manualmente criado adicionando a atualização extraída à pasta do jogo com o nome "CUSA00000-UPDATE" onde o ID do CUSA corresponde ao ID do jogo. @@ -1739,14 +1719,6 @@ Browse:\nBrowse for a folder to set as the save data path. Procurar:\nProcure uma pasta para definir como o caminho para guardar os dados. - - Borderless - Janela sem Bordas - - - True - Verdadeiro - Release Lançamento @@ -1791,6 +1763,46 @@ Directory to save data Diretório onde guardar os dados + + Video + Vídeo + + + Display Mode + Modo de Exibição + + + Windowed + Em Janela + + + Fullscreen + Ecrã inteiro + + + Fullscreen (Borderless) + Ecrã Inteiro (Sem Bordas) + + + Window Size + Tamanho da Janela + + + W: + L: + + + H: + A: + + + Separate Log Files + Separar Ficheiros de Registo + + + Separate Log Files:\nWrites a separate logfile for each game. + Separar Ficheiros de Registo:\nEscreve um ficheiro de registo para cada jogo. + TrophyViewer diff --git a/src/qt_gui/translations/ro_RO.ts b/src/qt_gui/translations/ro_RO.ts index 4f74cb21d..4d9052261 100644 --- a/src/qt_gui/translations/ro_RO.ts +++ b/src/qt_gui/translations/ro_RO.ts @@ -1279,14 +1279,6 @@ Emulator Emulator - - Enable Fullscreen - Enable Fullscreen - - - Fullscreen Mode - Mod Ecran Complet - Enable Separate Update Folder Enable Separate Update Folder @@ -1379,14 +1371,6 @@ Graphics Device Graphics Device - - Width - Width - - - Height - Height - Vblank Divider Vblank Divider @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. Limba emulatorului:\nSetează limba interfeței utilizatorului a emulatorului. - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - Activează modul pe ecran complet:\nPune automat fereastra jocului în modul pe ecran complet.\nAceasta poate fi dezactivată apăsând tasta F11. - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. @@ -1739,14 +1719,6 @@ Browse:\nBrowse for a folder to set as the save data path. Browse:\nBrowse for a folder to set as the save data path. - - Borderless - Borderless - - - True - True - Release Release @@ -1791,6 +1763,46 @@ Directory to save data Directory to save data + + Video + Video + + + Display Mode + Display Mode + + + Windowed + Windowed + + + Fullscreen + Fullscreen + + + Fullscreen (Borderless) + Fullscreen (Borderless) + + + Window Size + Window Size + + + W: + W: + + + H: + H: + + + Separate Log Files + Separate Log Files + + + Separate Log Files:\nWrites a separate logfile for each game. + Separate Log Files:\nWrites a separate logfile for each game. + TrophyViewer diff --git a/src/qt_gui/translations/ru_RU.ts b/src/qt_gui/translations/ru_RU.ts index 71fd06b6f..d9e90d1a2 100644 --- a/src/qt_gui/translations/ru_RU.ts +++ b/src/qt_gui/translations/ru_RU.ts @@ -1279,14 +1279,6 @@ Emulator Эмулятор - - Enable Fullscreen - Полноэкранный режим - - - Fullscreen Mode - Тип полноэкранного режима - Enable Separate Update Folder Отдельная папка обновлений @@ -1333,7 +1325,7 @@ Open Log Location - Открыть местоположение журнала + Открыть местоположение логов Input @@ -1379,14 +1371,6 @@ Graphics Device Графическое устройство - - Width - Ширина - - - Height - Высота - Vblank Divider Делитель Vblank @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. Язык эмулятора:\nУстанавливает язык пользовательского интерфейса эмулятора. - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - Полноэкранный режим:\nАвтоматически переводит игровое окно в полноэкранный режим.\nЭто можно переключить, нажав клавишу F11. - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. Отдельная папка обновлений:\nПозволяет устанавливать обновления игры в отдельную папку для удобства.\nМожно создать вручную, добавив извлеченное обновление в папку с игрой с именем "CUSA00000-UPDATE", где идентификатор CUSA совпадает с идентификатором игры. @@ -1739,14 +1719,6 @@ Browse:\nBrowse for a folder to set as the save data path. Обзор:\nНайдите папку, которую можно указать в качестве пути для сохранений. - - Borderless - Без полей - - - True - Истинный - Release Релиз @@ -1791,6 +1763,46 @@ Directory to save data Каталог для сохранений + + Video + Видео + + + Display Mode + Режим отображения + + + Windowed + Оконный + + + Fullscreen + Полный экран + + + Fullscreen (Borderless) + Полный экран (без рамок) + + + Window Size + Размер окна + + + W: + Ш: + + + H: + В: + + + Separate Log Files + Отдельные файлы логов + + + Separate Log Files:\nWrites a separate logfile for each game. + Отдельные файлы логов:\nПишет отдельный файл логов для каждой игры. + TrophyViewer diff --git a/src/qt_gui/translations/sq_AL.ts b/src/qt_gui/translations/sq_AL.ts index 623b15604..ec07db041 100644 --- a/src/qt_gui/translations/sq_AL.ts +++ b/src/qt_gui/translations/sq_AL.ts @@ -1279,14 +1279,6 @@ Emulator Emulatori - - Enable Fullscreen - Aktivizo Ekranin e plotë - - - Fullscreen Mode - Mënyra me ekran të plotë - Enable Separate Update Folder Aktivizo dosjen e ndarë të përditësimit @@ -1379,14 +1371,6 @@ Graphics Device Pajisja e Grafikës - - Width - Gjerësia - - - Height - Lartësia - Vblank Divider Ndarës Vblank @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. Gjuha e emulatorit:\nPërcakton gjuhën e ndërfaqes së përdoruesit të emulatorit. - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - Aktivizo ekranin e plotë:\nVendos automatikisht dritaren e lojës në mënyrën e ekranit të plotë.\nKjo mund të aktivizohet duke shtypur tastin F11. - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. Aktivizo dosjen e ndarë të përditësimit:\nAktivizon instalimin e përditësimeve të lojërave në dosje të veçanta për menaxhim më të lehtë.\nKjo mund të krijohet manualisht duke shtuar përditësimin e shpaketuar në dosjen e lojës me emrin "CUSA00000-UPDATE" ku ID-ja CUSA përputhet me ID-në e lojës. @@ -1739,14 +1719,6 @@ Browse:\nBrowse for a folder to set as the save data path. Shfleto:\nShfleto për të vendosur një dosje si shteg të ruajtjes së të dhënave. - - Borderless - Pa kufij - - - True - Vërtetë - Release Release @@ -1791,6 +1763,46 @@ Directory to save data Dosja për të ruajtur të dhënat + + Video + Video + + + Display Mode + Display Mode + + + Windowed + Windowed + + + Fullscreen + Fullscreen + + + Fullscreen (Borderless) + Fullscreen (Borderless) + + + Window Size + Window Size + + + W: + W: + + + H: + H: + + + Separate Log Files + Separate Log Files + + + Separate Log Files:\nWrites a separate logfile for each game. + Separate Log Files:\nWrites a separate logfile for each game. + TrophyViewer diff --git a/src/qt_gui/translations/sv_SE.ts b/src/qt_gui/translations/sv_SE.ts index c7d83055a..bdd2d2aa0 100644 --- a/src/qt_gui/translations/sv_SE.ts +++ b/src/qt_gui/translations/sv_SE.ts @@ -1279,14 +1279,6 @@ Emulator Emulator - - Enable Fullscreen - Aktivera helskärm - - - Fullscreen Mode - Helskärmsläge - Enable Separate Update Folder Aktivera separat uppdateringsmapp @@ -1379,14 +1371,6 @@ Graphics Device Grafikenhet - - Width - Bredd - - - Height - Höjd - Vblank Divider Vblank Divider @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. Emulatorspråk:\nStäller in språket för emulatorns användargränssnitt - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - Aktivera helskärm:\nStäller automatiskt in spelfönstret till helskämsläget.\nDetta kan växlas genom att trycka på F11-tangenten - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. Aktivera separat uppdateringsmapp:\nAktiverar installation av speluppdateringar i en separat mapp för enkel hantering.\nDetta kan skapas manuellt genom att lägga till uppackad uppdatering till spelmappen med namnet "CUSA00000-UPDATE" där CUSA ID matchar spelets id @@ -1739,14 +1719,6 @@ Browse:\nBrowse for a folder to set as the save data path. Bläddra:\nBläddra efter en mapp att ställa in som sökväg för sparat data - - Borderless - Fönster utan kanter - - - True - Sant - Release Release @@ -1791,6 +1763,46 @@ Directory to save data Katalog för sparat data + + Video + Video + + + Display Mode + Display Mode + + + Windowed + Windowed + + + Fullscreen + Fullscreen + + + Fullscreen (Borderless) + Fullscreen (Borderless) + + + Window Size + Window Size + + + W: + W: + + + H: + H: + + + Separate Log Files + Separate Log Files + + + Separate Log Files:\nWrites a separate logfile for each game. + Separate Log Files:\nWrites a separate logfile for each game. + TrophyViewer diff --git a/src/qt_gui/translations/tr_TR.ts b/src/qt_gui/translations/tr_TR.ts index 0ecddb128..ac7dee9a4 100644 --- a/src/qt_gui/translations/tr_TR.ts +++ b/src/qt_gui/translations/tr_TR.ts @@ -1279,14 +1279,6 @@ Emulator Emülatör - - Enable Fullscreen - Tam Ekranı Etkinleştir - - - Fullscreen Mode - Tam Ekran Modu - Enable Separate Update Folder Ayrı Güncelleme Klasörünü Etkinleştir @@ -1379,14 +1371,6 @@ Graphics Device Grafik Cihazı - - Width - Genişlik - - - Height - Yükseklik - Vblank Divider Vblank Bölücü @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. Emülatör Dili:\nEmülatörün kullanıcı arayüzünün dilini ayarlar. - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - Tam Ekranı Etkinleştir:\nOyun penceresini otomatik olarak tam ekran moduna alır.\nBu, F11 tuşuna basarak geçiş yapılabilir. - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management. @@ -1739,14 +1719,6 @@ Browse:\nBrowse for a folder to set as the save data path. Gözat:\nVerileri kaydetme yolu olarak ayarlamak için bir klasöre göz atın. - - Borderless - Çerçevesiz - - - True - Gerçek Ekran - Release Kararlı @@ -1791,6 +1763,46 @@ Directory to save data Kayıt verilerinin tutulacağı dizin + + Video + Video + + + Display Mode + Display Mode + + + Windowed + Windowed + + + Fullscreen + Tam Ekran + + + Fullscreen (Borderless) + Tam Ekran (Kenarlıksız) + + + Window Size + Pencere Boyutu + + + W: + G: + + + H: + Y: + + + Separate Log Files + Ayrı Günlük Dosyaları + + + Separate Log Files:\nWrites a separate logfile for each game. + Ayrı Günlük Dosyaları:\nHer oyun için ayrı bir günlük dosyası yazar. + TrophyViewer diff --git a/src/qt_gui/translations/uk_UA.ts b/src/qt_gui/translations/uk_UA.ts index aa430d401..0a3865d49 100644 --- a/src/qt_gui/translations/uk_UA.ts +++ b/src/qt_gui/translations/uk_UA.ts @@ -1279,14 +1279,6 @@ Emulator Емулятор - - Enable Fullscreen - Увімкнути повноекранний режим - - - Fullscreen Mode - Тип повноекранного режиму - Enable Separate Update Folder Увімкнути окрему папку оновлень @@ -1379,14 +1371,6 @@ Graphics Device Графічний пристрій - - Width - Ширина - - - Height - Висота - Vblank Divider Розділювач Vblank @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. Мова емулятора:\nВстановіть мову користувацького інтерфейсу емулятора. - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - Повноекранний режим:\nАвтоматично переводить вікно гри у повноекранний режим.\nВи можете відключити це, натиснувши клавішу F11. - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. Окрема папка для оновлень:\nДає змогу встановлювати оновлення гри в окрему папку для зручності. @@ -1739,14 +1719,6 @@ Browse:\nBrowse for a folder to set as the save data path. Вибрати:\nВиберіть папку для ігрових збережень. - - Borderless - Без рамок - - - True - Повний екран - Release Релізний @@ -1791,6 +1763,46 @@ Directory to save data Directory to save data + + Video + Video + + + Display Mode + Display Mode + + + Windowed + Windowed + + + Fullscreen + Fullscreen + + + Fullscreen (Borderless) + Fullscreen (Borderless) + + + Window Size + Window Size + + + W: + W: + + + H: + H: + + + Separate Log Files + Separate Log Files + + + Separate Log Files:\nWrites a separate logfile for each game. + Separate Log Files:\nWrites a separate logfile for each game. + TrophyViewer diff --git a/src/qt_gui/translations/vi_VN.ts b/src/qt_gui/translations/vi_VN.ts index cccec7ae0..50a34ad7a 100644 --- a/src/qt_gui/translations/vi_VN.ts +++ b/src/qt_gui/translations/vi_VN.ts @@ -1279,14 +1279,6 @@ Emulator Trình giả lập - - Enable Fullscreen - Bật toàn màn hình - - - Fullscreen Mode - Chế độ Toàn màn hình - Enable Separate Update Folder Bật thư mục cập nhật riêng @@ -1379,14 +1371,6 @@ Graphics Device Thiết bị đồ họa - - Width - Rộng - - - Height - Cao - Vblank Divider Vblank Divider @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. Ngôn ngữ của trình giả lập:\nChọn ngôn ngữ của giao diện người dùng của trình giả lập. - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - Bật chế độ toàn màn hình:\nTự động đặt cửa sổ trò chơi ở chế độ toàn màn hình.\nĐiều này có thể bị vô hiệu hóa bằng cách nhấn phím F11. - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management. @@ -1739,14 +1719,6 @@ Browse:\nBrowse for a folder to set as the save data path. Browse:\nBrowse for a folder to set as the save data path. - - Borderless - Không viền - - - True - True - Release Release @@ -1791,6 +1763,46 @@ Directory to save data Thư mục để lưu dữ liệu + + Video + Video + + + Display Mode + Display Mode + + + Windowed + Windowed + + + Fullscreen + Fullscreen + + + Fullscreen (Borderless) + Fullscreen (Borderless) + + + Window Size + Window Size + + + W: + W: + + + H: + H: + + + Separate Log Files + Separate Log Files + + + Separate Log Files:\nWrites a separate logfile for each game. + Separate Log Files:\nWrites a separate logfile for each game. + TrophyViewer diff --git a/src/qt_gui/translations/zh_CN.ts b/src/qt_gui/translations/zh_CN.ts index 2c5d5005e..b855f2dcd 100644 --- a/src/qt_gui/translations/zh_CN.ts +++ b/src/qt_gui/translations/zh_CN.ts @@ -1279,14 +1279,6 @@ Emulator 模拟器 - - Enable Fullscreen - 启用全屏 - - - Fullscreen Mode - 全屏模式 - Enable Separate Update Folder 启用单独的更新目录 @@ -1379,14 +1371,6 @@ Graphics Device 图形设备 - - Width - 宽度 - - - Height - 高度 - Vblank Divider Vblank Divider @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. 模拟器语言:\n设置模拟器用户界面的语言。 - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - 启用全屏:\n以全屏模式启动游戏。\n您可以按 F11 键切换回窗口模式。 - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. 启用单独的更新目录:\n启用安装游戏更新到一个单独的目录中以更便于管理。 @@ -1739,14 +1719,6 @@ Browse:\nBrowse for a folder to set as the save data path. 浏览:\n选择一个目录保存游戏存档数据。 - - Borderless - 无边框全屏 - - - True - 真全屏 - Release 稳定版 @@ -1791,6 +1763,46 @@ Directory to save data 存档数据目录 + + Video + 显示 + + + Display Mode + 显示模式 + + + Windowed + 窗口 + + + Fullscreen + 全屏 + + + Fullscreen (Borderless) + 无边框全屏 + + + Window Size + 窗口大小 + + + W: + 宽: + + + H: + 高: + + + Separate Log Files + 独立日志文件 + + + Separate Log Files:\nWrites a separate logfile for each game. + 独立日志文件:\n每个游戏使用单独的日志文件。 + TrophyViewer diff --git a/src/qt_gui/translations/zh_TW.ts b/src/qt_gui/translations/zh_TW.ts index 82202a6d6..15c921d15 100644 --- a/src/qt_gui/translations/zh_TW.ts +++ b/src/qt_gui/translations/zh_TW.ts @@ -1279,14 +1279,6 @@ Emulator Emulator - - Enable Fullscreen - Enable Fullscreen - - - Fullscreen Mode - 全螢幕模式 - Enable Separate Update Folder Enable Separate Update Folder @@ -1379,14 +1371,6 @@ Graphics Device Graphics Device - - Width - Width - - - Height - Height - Vblank Divider Vblank Divider @@ -1559,10 +1543,6 @@ Emulator Language:\nSets the language of the emulator's user interface. 模擬器語言:\n設定模擬器的用戶介面的語言。 - - Enable Full Screen:\nAutomatically puts the game window into full-screen mode.\nThis can be toggled by pressing the F11 key. - 啟用全螢幕:\n自動將遊戲視窗設置為全螢幕模式。\n可以按F11鍵進行切換。 - Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management.\nThis can be manually created by adding the extracted update to the game folder with the name "CUSA00000-UPDATE" where the CUSA ID matches the game's ID. Enable Separate Update Folder:\nEnables installing game updates into a separate folder for easy management. @@ -1739,14 +1719,6 @@ Browse:\nBrowse for a folder to set as the save data path. Browse:\nBrowse for a folder to set as the save data path. - - Borderless - Borderless - - - True - True - Release Release @@ -1791,6 +1763,46 @@ Directory to save data Directory to save data + + Video + Video + + + Display Mode + Display Mode + + + Windowed + Windowed + + + Fullscreen + Fullscreen + + + Fullscreen (Borderless) + Fullscreen (Borderless) + + + Window Size + Window Size + + + W: + W: + + + H: + H: + + + Separate Log Files + Separate Log Files + + + Separate Log Files:\nWrites a separate logfile for each game. + Separate Log Files:\nWrites a separate logfile for each game. + TrophyViewer diff --git a/src/qt_gui/trophy_viewer.cpp b/src/qt_gui/trophy_viewer.cpp index 4fa5ee5e2..63e9f04dd 100644 --- a/src/qt_gui/trophy_viewer.cpp +++ b/src/qt_gui/trophy_viewer.cpp @@ -2,9 +2,12 @@ // SPDX-License-Identifier: GPL-2.0-or-later #include +#include #include "common/path_util.h" #include "trophy_viewer.h" +CMRC_DECLARE(res); + TrophyViewer::TrophyViewer(QString trophyPath, QString gameTrpPath) : QMainWindow() { this->setWindowTitle(tr("Trophy Viewer")); this->setAttribute(Qt::WA_DeleteOnClose); @@ -115,13 +118,33 @@ void TrophyViewer::PopulateTrophyWidget(QString title) { item->setData(Qt::DecorationRole, icon); item->setFlags(item->flags() & ~Qt::ItemIsEditable); tableWidget->setItem(row, 1, item); + + const std::string filename = GetTrpType(trpType[row].at(0)); + QTableWidgetItem* typeitem = new QTableWidgetItem(); + + auto resource = cmrc::res::get_filesystem(); + std::string resourceString = "src/images/" + filename; + auto file = resource.open(resourceString); + std::vector imgdata(file.begin(), file.end()); + QImage type_icon = QImage::fromData(imgdata).scaled(QSize(64, 64), Qt::KeepAspectRatio, + Qt::SmoothTransformation); + typeitem->setData(Qt::DecorationRole, type_icon); + typeitem->setFlags(typeitem->flags() & ~Qt::ItemIsEditable); + tableWidget->setItem(row, 6, typeitem); + + std::string detailString = trophyDetails[row].toStdString(); + std::size_t newline_pos = 0; + while ((newline_pos = detailString.find("\n", newline_pos)) != std::string::npos) { + detailString.replace(newline_pos, 1, " "); + ++newline_pos; + } + if (!trophyNames.isEmpty() && !trophyDetails.isEmpty()) { SetTableItem(tableWidget, row, 0, trpUnlocked[row]); SetTableItem(tableWidget, row, 2, trophyNames[row]); - SetTableItem(tableWidget, row, 3, trophyDetails[row]); + SetTableItem(tableWidget, row, 3, QString::fromStdString(detailString)); SetTableItem(tableWidget, row, 4, trpId[row]); SetTableItem(tableWidget, row, 5, trpHidden[row]); - SetTableItem(tableWidget, row, 6, GetTrpType(trpType[row].at(0))); SetTableItem(tableWidget, row, 7, trpPid[row]); } tableWidget->verticalHeader()->resizeSection(row, icon.height()); @@ -157,7 +180,7 @@ void TrophyViewer::SetTableItem(QTableWidget* parent, int row, int column, QStri label->setGraphicsEffect(shadowEffect); // Apply shadow effect to the QLabel layout->addWidget(label); - if (column != 1 && column != 2) + if (column != 1 && column != 2 && column != 3) layout->setAlignment(Qt::AlignCenter); widget->setLayout(layout); parent->setItem(row, column, item); diff --git a/src/qt_gui/trophy_viewer.h b/src/qt_gui/trophy_viewer.h index 81b9b1adc..089de433e 100644 --- a/src/qt_gui/trophy_viewer.h +++ b/src/qt_gui/trophy_viewer.h @@ -32,17 +32,17 @@ private: QString gameTrpPath_; TRP trp; - QString GetTrpType(const QChar trp_) { + std::string GetTrpType(const QChar trp_) { switch (trp_.toLatin1()) { case 'B': - return "Bronze"; + return "bronze.png"; case 'S': - return "Silver"; + return "silver.png"; case 'G': - return "Gold"; + return "gold.png"; case 'P': - return "Platinum"; + return "platinum.png"; } return "Unknown"; } -}; \ No newline at end of file +}; diff --git a/src/sdl_window.cpp b/src/sdl_window.cpp index db6f37e2a..80d196147 100644 --- a/src/sdl_window.cpp +++ b/src/sdl_window.cpp @@ -134,13 +134,17 @@ void SDLInputEngine::Init() { m_gyro_poll_rate = SDL_GetGamepadSensorDataRate(m_gamepad, SDL_SENSOR_GYRO); LOG_INFO(Input, "Gyro initialized, poll rate: {}", m_gyro_poll_rate); } else { - LOG_ERROR(Input, "Failed to initialize gyro controls for gamepad"); + LOG_ERROR(Input, "Failed to initialize gyro controls for gamepad, error: {}", + SDL_GetError()); + SDL_SetGamepadSensorEnabled(m_gamepad, SDL_SENSOR_GYRO, false); } if (SDL_SetGamepadSensorEnabled(m_gamepad, SDL_SENSOR_ACCEL, true)) { m_accel_poll_rate = SDL_GetGamepadSensorDataRate(m_gamepad, SDL_SENSOR_ACCEL); LOG_INFO(Input, "Accel initialized, poll rate: {}", m_accel_poll_rate); } else { - LOG_ERROR(Input, "Failed to initialize accel controls for gamepad"); + LOG_ERROR(Input, "Failed to initialize accel controls for gamepad, error: {}", + SDL_GetError()); + SDL_SetGamepadSensorEnabled(m_gamepad, SDL_SENSOR_ACCEL, false); } } @@ -290,8 +294,8 @@ WindowSDL::WindowSDL(s32 width_, s32 height_, Input::GameController* controller_ error = true; } if (!error) { - SDL_SetWindowFullscreenMode(window, - Config::getFullscreenMode() == "True" ? displayMode : NULL); + SDL_SetWindowFullscreenMode( + window, Config::getFullscreenMode() == "Fullscreen" ? displayMode : NULL); } SDL_SetWindowFullscreen(window, Config::getIsFullscreen()); diff --git a/src/sdl_window.h b/src/sdl_window.h index 9acd2b16b..03ba0797b 100644 --- a/src/sdl_window.h +++ b/src/sdl_window.h @@ -27,8 +27,8 @@ public: private: SDL_Gamepad* m_gamepad = nullptr; - float m_gyro_poll_rate{}; - float m_accel_poll_rate{}; + float m_gyro_poll_rate = 0.0f; + float m_accel_poll_rate = 0.0f; }; } // namespace Input diff --git a/src/shader_recompiler/backend/spirv/emit_spirv.cpp b/src/shader_recompiler/backend/spirv/emit_spirv.cpp index 2a5b9335e..6b0d7228b 100644 --- a/src/shader_recompiler/backend/spirv/emit_spirv.cpp +++ b/src/shader_recompiler/backend/spirv/emit_spirv.cpp @@ -369,7 +369,12 @@ void SetupFloatMode(EmitContext& ctx, const Profile& profile, const RuntimeInfo& LOG_WARNING(Render_Vulkan, "Unknown FP denorm mode {}", u32(fp_denorm_mode)); } const auto fp_round_mode = runtime_info.fp_round_mode32; - if (fp_round_mode != AmdGpu::FpRoundMode::NearestEven) { + if (fp_round_mode == AmdGpu::FpRoundMode::ToZero) { + if (profile.support_fp32_round_to_zero) { + ctx.AddCapability(spv::Capability::RoundingModeRTZ); + ctx.AddExecutionMode(main_func, spv::ExecutionMode::RoundingModeRTZ, 32U); + } + } else if (fp_round_mode != AmdGpu::FpRoundMode::NearestEven) { LOG_WARNING(Render_Vulkan, "Unknown FP rounding mode {}", u32(fp_round_mode)); } } diff --git a/src/shader_recompiler/backend/spirv/emit_spirv_quad_rect.cpp b/src/shader_recompiler/backend/spirv/emit_spirv_quad_rect.cpp index e74044f63..48aa9f870 100644 --- a/src/shader_recompiler/backend/spirv/emit_spirv_quad_rect.cpp +++ b/src/shader_recompiler/backend/spirv/emit_spirv_quad_rect.cpp @@ -13,8 +13,7 @@ constexpr u32 SPIRV_VERSION_1_5 = 0x00010500; struct QuadRectListEmitter : public Sirit::Module { explicit QuadRectListEmitter(const FragmentRuntimeInfo& fs_info_) - : Sirit::Module{SPIRV_VERSION_1_5}, fs_info{fs_info_}, inputs{fs_info_.num_inputs}, - outputs{fs_info_.num_inputs} { + : Sirit::Module{SPIRV_VERSION_1_5}, fs_info{fs_info_} { void_id = TypeVoid(); bool_id = TypeBool(); float_id = TypeFloat(32); @@ -253,15 +252,16 @@ private: } else { gl_per_vertex = AddOutput(gl_per_vertex_type); } + outputs.reserve(fs_info.num_inputs); for (int i = 0; i < fs_info.num_inputs; i++) { const auto& input = fs_info.inputs[i]; if (input.IsDefault()) { continue; } - outputs[i] = AddOutput(model == spv::ExecutionModel::TessellationControl - ? TypeArray(vec4_id, Int(4)) - : vec4_id); - Decorate(outputs[i], spv::Decoration::Location, input.param_index); + outputs.emplace_back(AddOutput(model == spv::ExecutionModel::TessellationControl + ? TypeArray(vec4_id, Int(4)) + : vec4_id)); + Decorate(outputs.back(), spv::Decoration::Location, input.param_index); } } @@ -276,13 +276,14 @@ private: const Id gl_per_vertex_array{TypeArray(gl_per_vertex_type, Constant(uint_id, 32U))}; gl_in = AddInput(gl_per_vertex_array); const Id float_arr{TypeArray(vec4_id, Int(32))}; + inputs.reserve(fs_info.num_inputs); for (int i = 0; i < fs_info.num_inputs; i++) { const auto& input = fs_info.inputs[i]; if (input.IsDefault()) { continue; } - inputs[i] = AddInput(float_arr); - Decorate(inputs[i], spv::Decoration::Location, input.param_index); + inputs.emplace_back(AddInput(float_arr)); + Decorate(inputs.back(), spv::Decoration::Location, input.param_index); } } @@ -334,4 +335,4 @@ std::vector EmitAuxilaryTessShader(AuxShaderType type, const FragmentRuntim return ctx.Assemble(); } -} // namespace Shader::Backend::SPIRV \ No newline at end of file +} // namespace Shader::Backend::SPIRV diff --git a/src/shader_recompiler/frontend/translate/scalar_alu.cpp b/src/shader_recompiler/frontend/translate/scalar_alu.cpp index b5c7c98ae..39f972848 100644 --- a/src/shader_recompiler/frontend/translate/scalar_alu.cpp +++ b/src/shader_recompiler/frontend/translate/scalar_alu.cpp @@ -27,7 +27,7 @@ void Translator::EmitScalarAlu(const GcnInst& inst) { case Opcode::S_ADD_I32: return S_ADD_I32(inst); case Opcode::S_SUB_I32: - return S_SUB_U32(inst); + return S_SUB_I32(inst); case Opcode::S_ADDC_U32: return S_ADDC_U32(inst); case Opcode::S_MIN_I32: @@ -216,24 +216,52 @@ void Translator::EmitSOPK(const GcnInst& inst) { void Translator::S_ADD_U32(const GcnInst& inst) { const IR::U32 src0{GetSrc(inst.src[0])}; const IR::U32 src1{GetSrc(inst.src[1])}; - SetDst(inst.dst[0], ir.IAdd(src0, src1)); - // TODO: Carry out - ir.SetScc(ir.Imm1(false)); + const IR::U32 result{ir.IAdd(src0, src1)}; + SetDst(inst.dst[0], result); + + // SCC = tmp >= 0x100000000ULL ? 1'1U : 1'0U; + // The above assumes tmp is a 64-bit value. + // It should be enough however to test that the truncated result is less than at least one + // of the operands. In unsigned addition the result is always bigger than both the operands, + // except in the case of overflow where the truncated result is less than both. + ir.SetScc(ir.ILessThan(result, src0, false)); } void Translator::S_SUB_U32(const GcnInst& inst) { const IR::U32 src0{GetSrc(inst.src[0])}; const IR::U32 src1{GetSrc(inst.src[1])}; SetDst(inst.dst[0], ir.ISub(src0, src1)); - // TODO: Carry out - ir.SetScc(ir.Imm1(false)); + + // SCC = S1.u > S0.u ? 1'1U : 1'0U; + ir.SetScc(ir.IGreaterThan(src1, src0, false)); } void Translator::S_ADD_I32(const GcnInst& inst) { const IR::U32 src0{GetSrc(inst.src[0])}; const IR::U32 src1{GetSrc(inst.src[1])}; - SetDst(inst.dst[0], ir.IAdd(src0, src1)); - // TODO: Overflow flag + const IR::U32 result{ir.IAdd(src0, src1)}; + SetDst(inst.dst[0], result); + + // SCC = ((S0.u[31] == S1.u[31]) && (S0.u[31] != Result.u[31])); + const IR::U32 shift{ir.Imm32(31)}; + const IR::U32 sign0{ir.ShiftRightLogical(src0, shift)}; + const IR::U32 sign1{ir.ShiftRightLogical(src1, shift)}; + const IR::U32 signr{ir.ShiftRightLogical(result, shift)}; + ir.SetScc(ir.LogicalAnd(ir.IEqual(sign0, sign1), ir.INotEqual(sign0, signr))); +} + +void Translator::S_SUB_I32(const GcnInst& inst) { + const IR::U32 src0{GetSrc(inst.src[0])}; + const IR::U32 src1{GetSrc(inst.src[1])}; + const IR::U32 result{ir.ISub(src0, src1)}; + SetDst(inst.dst[0], result); + + // SCC = ((S0.u[31] != S1.u[31]) && (S0.u[31] != tmp.u[31])); + const IR::U32 shift{ir.Imm32(31)}; + const IR::U32 sign0{ir.ShiftRightLogical(src0, shift)}; + const IR::U32 sign1{ir.ShiftRightLogical(src1, shift)}; + const IR::U32 signr{ir.ShiftRightLogical(result, shift)}; + ir.SetScc(ir.LogicalAnd(ir.INotEqual(sign0, sign1), ir.INotEqual(sign0, signr))); } void Translator::S_ADDC_U32(const GcnInst& inst) { diff --git a/src/shader_recompiler/frontend/translate/translate.h b/src/shader_recompiler/frontend/translate/translate.h index b4919213b..2fd48a051 100644 --- a/src/shader_recompiler/frontend/translate/translate.h +++ b/src/shader_recompiler/frontend/translate/translate.h @@ -81,6 +81,7 @@ public: void S_ADD_U32(const GcnInst& inst); void S_SUB_U32(const GcnInst& inst); void S_ADD_I32(const GcnInst& inst); + void S_SUB_I32(const GcnInst& inst); void S_ADDC_U32(const GcnInst& inst); void S_MIN_U32(bool is_signed, const GcnInst& inst); void S_MAX_U32(bool is_signed, const GcnInst& inst); @@ -277,10 +278,9 @@ public: // Buffer Memory // MUBUF / MTBUF - void BUFFER_LOAD(u32 num_dwords, bool is_typed, const GcnInst& inst); - void BUFFER_LOAD_FORMAT(u32 num_dwords, const GcnInst& inst); - void BUFFER_STORE(u32 num_dwords, bool is_typed, const GcnInst& inst); - void BUFFER_STORE_FORMAT(u32 num_dwords, const GcnInst& inst); + void BUFFER_LOAD(u32 num_dwords, bool is_inst_typed, bool is_buffer_typed, const GcnInst& inst); + void BUFFER_STORE(u32 num_dwords, bool is_inst_typed, bool is_buffer_typed, + const GcnInst& inst); void BUFFER_ATOMIC(AtomicOp op, const GcnInst& inst); // Image Memory diff --git a/src/shader_recompiler/frontend/translate/vector_memory.cpp b/src/shader_recompiler/frontend/translate/vector_memory.cpp index bfbe937a1..ed7788d8c 100644 --- a/src/shader_recompiler/frontend/translate/vector_memory.cpp +++ b/src/shader_recompiler/frontend/translate/vector_memory.cpp @@ -11,59 +11,59 @@ void Translator::EmitVectorMemory(const GcnInst& inst) { // Buffer load operations case Opcode::TBUFFER_LOAD_FORMAT_X: - return BUFFER_LOAD(1, true, inst); + return BUFFER_LOAD(1, true, false, inst); case Opcode::TBUFFER_LOAD_FORMAT_XY: - return BUFFER_LOAD(2, true, inst); + return BUFFER_LOAD(2, true, false, inst); case Opcode::TBUFFER_LOAD_FORMAT_XYZ: - return BUFFER_LOAD(3, true, inst); + return BUFFER_LOAD(3, true, false, inst); case Opcode::TBUFFER_LOAD_FORMAT_XYZW: - return BUFFER_LOAD(4, true, inst); + return BUFFER_LOAD(4, true, false, inst); case Opcode::BUFFER_LOAD_FORMAT_X: - return BUFFER_LOAD_FORMAT(1, inst); + return BUFFER_LOAD(1, false, true, inst); case Opcode::BUFFER_LOAD_FORMAT_XY: - return BUFFER_LOAD_FORMAT(2, inst); + return BUFFER_LOAD(2, false, true, inst); case Opcode::BUFFER_LOAD_FORMAT_XYZ: - return BUFFER_LOAD_FORMAT(3, inst); + return BUFFER_LOAD(3, false, true, inst); case Opcode::BUFFER_LOAD_FORMAT_XYZW: - return BUFFER_LOAD_FORMAT(4, inst); + return BUFFER_LOAD(4, false, true, inst); case Opcode::BUFFER_LOAD_DWORD: - return BUFFER_LOAD(1, false, inst); + return BUFFER_LOAD(1, false, false, inst); case Opcode::BUFFER_LOAD_DWORDX2: - return BUFFER_LOAD(2, false, inst); + return BUFFER_LOAD(2, false, false, inst); case Opcode::BUFFER_LOAD_DWORDX3: - return BUFFER_LOAD(3, false, inst); + return BUFFER_LOAD(3, false, false, inst); case Opcode::BUFFER_LOAD_DWORDX4: - return BUFFER_LOAD(4, false, inst); + return BUFFER_LOAD(4, false, false, inst); // Buffer store operations case Opcode::BUFFER_STORE_FORMAT_X: - return BUFFER_STORE_FORMAT(1, inst); + return BUFFER_STORE(1, false, true, inst); case Opcode::BUFFER_STORE_FORMAT_XY: - return BUFFER_STORE_FORMAT(2, inst); + return BUFFER_STORE(2, false, true, inst); case Opcode::BUFFER_STORE_FORMAT_XYZ: - return BUFFER_STORE_FORMAT(3, inst); + return BUFFER_STORE(3, false, true, inst); case Opcode::BUFFER_STORE_FORMAT_XYZW: - return BUFFER_STORE_FORMAT(4, inst); + return BUFFER_STORE(4, false, true, inst); case Opcode::TBUFFER_STORE_FORMAT_X: - return BUFFER_STORE(1, true, inst); + return BUFFER_STORE(1, true, false, inst); case Opcode::TBUFFER_STORE_FORMAT_XY: - return BUFFER_STORE(2, true, inst); + return BUFFER_STORE(2, true, false, inst); case Opcode::TBUFFER_STORE_FORMAT_XYZ: - return BUFFER_STORE(3, true, inst); + return BUFFER_STORE(3, true, false, inst); case Opcode::TBUFFER_STORE_FORMAT_XYZW: - return BUFFER_STORE(4, true, inst); + return BUFFER_STORE(4, true, false, inst); case Opcode::BUFFER_STORE_DWORD: - return BUFFER_STORE(1, false, inst); + return BUFFER_STORE(1, false, false, inst); case Opcode::BUFFER_STORE_DWORDX2: - return BUFFER_STORE(2, false, inst); + return BUFFER_STORE(2, false, false, inst); case Opcode::BUFFER_STORE_DWORDX3: - return BUFFER_STORE(3, false, inst); + return BUFFER_STORE(3, false, false, inst); case Opcode::BUFFER_STORE_DWORDX4: - return BUFFER_STORE(4, false, inst); + return BUFFER_STORE(4, false, false, inst); // Buffer atomic operations case Opcode::BUFFER_ATOMIC_ADD: @@ -165,7 +165,8 @@ void Translator::EmitVectorMemory(const GcnInst& inst) { } } -void Translator::BUFFER_LOAD(u32 num_dwords, bool is_typed, const GcnInst& inst) { +void Translator::BUFFER_LOAD(u32 num_dwords, bool is_inst_typed, bool is_buffer_typed, + const GcnInst& inst) { const auto& mubuf = inst.control.mubuf; const bool is_ring = mubuf.glc && mubuf.slc; const IR::VectorReg vaddr{inst.src[0].code}; @@ -195,66 +196,38 @@ void Translator::BUFFER_LOAD(u32 num_dwords, bool is_typed, const GcnInst& inst) buffer_info.inst_offset.Assign(mubuf.offset); buffer_info.globally_coherent.Assign(mubuf.glc); buffer_info.system_coherent.Assign(mubuf.slc); - buffer_info.typed.Assign(is_typed); - if (is_typed) { + buffer_info.typed.Assign(is_inst_typed || is_buffer_typed); + if (is_inst_typed) { const auto& mtbuf = inst.control.mtbuf; - const auto dmft = static_cast(mtbuf.dfmt); - const auto nfmt = static_cast(mtbuf.nfmt); - ASSERT(nfmt == AmdGpu::NumberFormat::Float && - (dmft == AmdGpu::DataFormat::Format32_32_32_32 || - dmft == AmdGpu::DataFormat::Format32_32_32 || - dmft == AmdGpu::DataFormat::Format32_32 || dmft == AmdGpu::DataFormat::Format32)); + buffer_info.inst_data_fmt.Assign(static_cast(mtbuf.dfmt)); + buffer_info.inst_num_fmt.Assign(static_cast(mtbuf.nfmt)); + } else { + buffer_info.inst_data_fmt.Assign(AmdGpu::DataFormat::FormatInvalid); } const IR::Value handle = ir.CompositeConstruct(ir.GetScalarReg(sharp), ir.GetScalarReg(sharp + 1), ir.GetScalarReg(sharp + 2), ir.GetScalarReg(sharp + 3)); - const IR::Value value = ir.LoadBufferU32(num_dwords, handle, address, buffer_info); const IR::VectorReg dst_reg{inst.src[1].code}; - if (num_dwords == 1) { - ir.SetVectorReg(dst_reg, IR::U32{value}); - return; - } - for (u32 i = 0; i < num_dwords; i++) { - ir.SetVectorReg(dst_reg + i, IR::U32{ir.CompositeExtract(value, i)}); + if (buffer_info.typed) { + const IR::Value value = ir.LoadBufferFormat(handle, address, buffer_info); + for (u32 i = 0; i < num_dwords; i++) { + ir.SetVectorReg(dst_reg + i, IR::F32{ir.CompositeExtract(value, i)}); + } + } else { + const IR::Value value = ir.LoadBufferU32(num_dwords, handle, address, buffer_info); + if (num_dwords == 1) { + ir.SetVectorReg(dst_reg, IR::U32{value}); + return; + } + for (u32 i = 0; i < num_dwords; i++) { + ir.SetVectorReg(dst_reg + i, IR::U32{ir.CompositeExtract(value, i)}); + } } } -void Translator::BUFFER_LOAD_FORMAT(u32 num_dwords, const GcnInst& inst) { - const auto& mubuf = inst.control.mubuf; - const IR::VectorReg vaddr{inst.src[0].code}; - const IR::ScalarReg sharp{inst.src[2].code * 4}; - const IR::Value address = [&] -> IR::Value { - if (mubuf.idxen && mubuf.offen) { - return ir.CompositeConstruct(ir.GetVectorReg(vaddr), ir.GetVectorReg(vaddr + 1)); - } - if (mubuf.idxen || mubuf.offen) { - return ir.GetVectorReg(vaddr); - } - return {}; - }(); - const IR::Value soffset{GetSrc(inst.src[3])}; - ASSERT_MSG(soffset.IsImmediate() && soffset.U32() == 0, "Non immediate offset not supported"); - - IR::BufferInstInfo buffer_info{}; - buffer_info.index_enable.Assign(mubuf.idxen); - buffer_info.offset_enable.Assign(mubuf.offen); - buffer_info.inst_offset.Assign(mubuf.offset); - buffer_info.globally_coherent.Assign(mubuf.glc); - buffer_info.system_coherent.Assign(mubuf.slc); - buffer_info.typed.Assign(true); - - const IR::Value handle = - ir.CompositeConstruct(ir.GetScalarReg(sharp), ir.GetScalarReg(sharp + 1), - ir.GetScalarReg(sharp + 2), ir.GetScalarReg(sharp + 3)); - const IR::Value value = ir.LoadBufferFormat(handle, address, buffer_info); - const IR::VectorReg dst_reg{inst.src[1].code}; - for (u32 i = 0; i < num_dwords; i++) { - ir.SetVectorReg(dst_reg + i, IR::F32{ir.CompositeExtract(value, i)}); - } -} - -void Translator::BUFFER_STORE(u32 num_dwords, bool is_typed, const GcnInst& inst) { +void Translator::BUFFER_STORE(u32 num_dwords, bool is_inst_typed, bool is_buffer_typed, + const GcnInst& inst) { const auto& mubuf = inst.control.mubuf; const bool is_ring = mubuf.glc && mubuf.slc; const IR::VectorReg vaddr{inst.src[0].code}; @@ -285,80 +258,38 @@ void Translator::BUFFER_STORE(u32 num_dwords, bool is_typed, const GcnInst& inst buffer_info.inst_offset.Assign(mubuf.offset); buffer_info.globally_coherent.Assign(mubuf.glc); buffer_info.system_coherent.Assign(mubuf.slc); - buffer_info.typed.Assign(is_typed); - if (is_typed) { + buffer_info.typed.Assign(is_inst_typed || is_buffer_typed); + if (is_inst_typed) { const auto& mtbuf = inst.control.mtbuf; - const auto dmft = static_cast(mtbuf.dfmt); - const auto nfmt = static_cast(mtbuf.nfmt); - ASSERT(nfmt == AmdGpu::NumberFormat::Float && - (dmft == AmdGpu::DataFormat::Format32_32_32_32 || - dmft == AmdGpu::DataFormat::Format32_32_32 || - dmft == AmdGpu::DataFormat::Format32_32 || dmft == AmdGpu::DataFormat::Format32)); + buffer_info.inst_data_fmt.Assign(static_cast(mtbuf.dfmt)); + buffer_info.inst_num_fmt.Assign(static_cast(mtbuf.nfmt)); + } else { + buffer_info.inst_data_fmt.Assign(AmdGpu::DataFormat::FormatInvalid); } - IR::Value value{}; - const IR::VectorReg src_reg{inst.src[1].code}; - switch (num_dwords) { - case 1: - value = ir.GetVectorReg(src_reg); - break; - case 2: - value = ir.CompositeConstruct(ir.GetVectorReg(src_reg), ir.GetVectorReg(src_reg + 1)); - break; - case 3: - value = ir.CompositeConstruct(ir.GetVectorReg(src_reg), ir.GetVectorReg(src_reg + 1), - ir.GetVectorReg(src_reg + 2)); - break; - case 4: - value = ir.CompositeConstruct(ir.GetVectorReg(src_reg), ir.GetVectorReg(src_reg + 1), - ir.GetVectorReg(src_reg + 2), ir.GetVectorReg(src_reg + 3)); - break; - } const IR::Value handle = ir.CompositeConstruct(ir.GetScalarReg(sharp), ir.GetScalarReg(sharp + 1), ir.GetScalarReg(sharp + 2), ir.GetScalarReg(sharp + 3)); - ir.StoreBufferU32(num_dwords, handle, address, value, buffer_info); -} - -void Translator::BUFFER_STORE_FORMAT(u32 num_dwords, const GcnInst& inst) { - const auto& mubuf = inst.control.mubuf; - const IR::VectorReg vaddr{inst.src[0].code}; - const IR::ScalarReg sharp{inst.src[2].code * 4}; - const IR::Value address = [&] -> IR::Value { - if (mubuf.idxen && mubuf.offen) { - return ir.CompositeConstruct(ir.GetVectorReg(vaddr), ir.GetVectorReg(vaddr + 1)); - } - if (mubuf.idxen || mubuf.offen) { - return ir.GetVectorReg(vaddr); - } - return {}; - }(); - const IR::Value soffset{GetSrc(inst.src[3])}; - ASSERT_MSG(soffset.IsImmediate() && soffset.U32() == 0, "Non immediate offset not supported"); - - IR::BufferInstInfo buffer_info{}; - buffer_info.index_enable.Assign(mubuf.idxen); - buffer_info.offset_enable.Assign(mubuf.offen); - buffer_info.inst_offset.Assign(mubuf.offset); - buffer_info.globally_coherent.Assign(mubuf.glc); - buffer_info.system_coherent.Assign(mubuf.slc); - buffer_info.typed.Assign(true); - const IR::VectorReg src_reg{inst.src[1].code}; - std::array comps{}; + boost::container::static_vector comps; for (u32 i = 0; i < num_dwords; i++) { - comps[i] = ir.GetVectorReg(src_reg + i); + const auto src_reg_i = src_reg + i; + if (buffer_info.typed) { + comps.push_back(ir.GetVectorReg(src_reg_i)); + } else { + comps.push_back(ir.GetVectorReg(src_reg_i)); + } } - for (u32 i = num_dwords; i < 4; i++) { - comps[i] = ir.Imm32(0.f); + if (buffer_info.typed) { + for (u32 i = num_dwords; i < 4; i++) { + comps.push_back(ir.Imm32(0.f)); + } + ir.StoreBufferFormat(handle, address, ir.CompositeConstruct(comps), buffer_info); + } else { + const auto value = num_dwords == 1 ? comps[0] : ir.CompositeConstruct(comps); + ir.StoreBufferU32(num_dwords, handle, address, value, buffer_info); } - - const IR::Value value = ir.CompositeConstruct(comps[0], comps[1], comps[2], comps[3]); - const IR::Value handle = - ir.CompositeConstruct(ir.GetScalarReg(sharp), ir.GetScalarReg(sharp + 1), - ir.GetScalarReg(sharp + 2), ir.GetScalarReg(sharp + 3)); - ir.StoreBufferFormat(handle, address, value, buffer_info); } void Translator::BUFFER_ATOMIC(AtomicOp op, const GcnInst& inst) { diff --git a/src/shader_recompiler/ir/ir_emitter.cpp b/src/shader_recompiler/ir/ir_emitter.cpp index 06c01878d..3615e8cbb 100644 --- a/src/shader_recompiler/ir/ir_emitter.cpp +++ b/src/shader_recompiler/ir/ir_emitter.cpp @@ -638,7 +638,8 @@ Value IREmitter::CompositeConstruct(std::span elements) { case 4: return CompositeConstruct(elements[0], elements[1], elements[2], elements[3]); default: - UNREACHABLE_MSG("Composite construct with greater than 4 elements"); + UNREACHABLE_MSG("Composite construct with {} elements, only 2-4 are supported", + elements.size()); } } diff --git a/src/shader_recompiler/ir/passes/lower_buffer_format_to_raw.cpp b/src/shader_recompiler/ir/passes/lower_buffer_format_to_raw.cpp index b30b022f8..3fdc6f0cd 100644 --- a/src/shader_recompiler/ir/passes/lower_buffer_format_to_raw.cpp +++ b/src/shader_recompiler/ir/passes/lower_buffer_format_to_raw.cpp @@ -10,6 +10,14 @@ namespace Shader::Optimization { +struct FormatInfo { + AmdGpu::DataFormat data_format; + AmdGpu::NumberFormat num_format; + AmdGpu::CompMapping swizzle; + AmdGpu::NumberConversion num_conversion; + int num_components; +}; + static bool IsBufferFormatLoad(const IR::Inst& inst) { return inst.GetOpcode() == IR::Opcode::LoadBufferFormatF32; } @@ -18,152 +26,151 @@ static bool IsBufferFormatStore(const IR::Inst& inst) { return inst.GetOpcode() == IR::Opcode::StoreBufferFormatF32; } -static IR::Value LoadBufferFormat(IR::IREmitter& ir, const AmdGpu::Buffer& buffer, - const IR::Value handle, const IR::U32 address, - const IR::BufferInstInfo info) { - const auto data_fmt = buffer.GetDataFmt(); - const auto num_fmt = buffer.GetNumberFmt(); - const auto num_conv = buffer.GetNumberConversion(); - const auto num_components = AmdGpu::NumComponents(buffer.GetDataFmt()); - +static IR::Value LoadBufferFormat(IR::IREmitter& ir, const IR::Value handle, const IR::U32 address, + const IR::BufferInstInfo info, const FormatInfo& format_info) { IR::Value interpreted; - switch (data_fmt) { + switch (format_info.data_format) { case AmdGpu::DataFormat::FormatInvalid: interpreted = ir.Imm32(0.f); break; case AmdGpu::DataFormat::Format8: { - const auto unpacked = ir.Unpack4x8(num_fmt, ir.LoadBufferU8(handle, address, info)); + const auto unpacked = + ir.Unpack4x8(format_info.num_format, ir.LoadBufferU8(handle, address, info)); interpreted = ir.CompositeExtract(unpacked, 0); break; } case AmdGpu::DataFormat::Format8_8: { const auto raw = ir.LoadBufferU16(handle, address, info); - const auto unpacked = ir.Unpack4x8(num_fmt, raw); + const auto unpacked = ir.Unpack4x8(format_info.num_format, raw); interpreted = ir.CompositeConstruct(ir.CompositeExtract(unpacked, 0), ir.CompositeExtract(unpacked, 1)); break; } case AmdGpu::DataFormat::Format8_8_8_8: - interpreted = ir.Unpack4x8(num_fmt, IR::U32{ir.LoadBufferU32(1, handle, address, info)}); + interpreted = ir.Unpack4x8(format_info.num_format, + IR::U32{ir.LoadBufferU32(1, handle, address, info)}); break; case AmdGpu::DataFormat::Format16: { - const auto unpacked = ir.Unpack2x16(num_fmt, ir.LoadBufferU16(handle, address, info)); + const auto unpacked = + ir.Unpack2x16(format_info.num_format, ir.LoadBufferU16(handle, address, info)); interpreted = ir.CompositeExtract(unpacked, 0); break; } case AmdGpu::DataFormat::Format16_16: - interpreted = ir.Unpack2x16(num_fmt, IR::U32{ir.LoadBufferU32(1, handle, address, info)}); + interpreted = ir.Unpack2x16(format_info.num_format, + IR::U32{ir.LoadBufferU32(1, handle, address, info)}); break; case AmdGpu::DataFormat::Format10_11_11: - interpreted = - ir.Unpack10_11_11(num_fmt, IR::U32{ir.LoadBufferU32(1, handle, address, info)}); + interpreted = ir.Unpack10_11_11(format_info.num_format, + IR::U32{ir.LoadBufferU32(1, handle, address, info)}); break; case AmdGpu::DataFormat::Format2_10_10_10: - interpreted = - ir.Unpack2_10_10_10(num_fmt, IR::U32{ir.LoadBufferU32(1, handle, address, info)}); + interpreted = ir.Unpack2_10_10_10(format_info.num_format, + IR::U32{ir.LoadBufferU32(1, handle, address, info)}); break; case AmdGpu::DataFormat::Format16_16_16_16: { const auto raw = ir.LoadBufferU32(2, handle, address, info); - interpreted = - ir.CompositeConstruct(ir.Unpack2x16(num_fmt, IR::U32{ir.CompositeExtract(raw, 0)}), - ir.Unpack2x16(num_fmt, IR::U32{ir.CompositeExtract(raw, 1)})); + interpreted = ir.CompositeConstruct( + ir.Unpack2x16(format_info.num_format, IR::U32{ir.CompositeExtract(raw, 0)}), + ir.Unpack2x16(format_info.num_format, IR::U32{ir.CompositeExtract(raw, 1)})); break; } case AmdGpu::DataFormat::Format32: case AmdGpu::DataFormat::Format32_32: case AmdGpu::DataFormat::Format32_32_32: case AmdGpu::DataFormat::Format32_32_32_32: { - ASSERT(num_fmt == AmdGpu::NumberFormat::Uint || num_fmt == AmdGpu::NumberFormat::Sint || - num_fmt == AmdGpu::NumberFormat::Float); - interpreted = ir.LoadBufferF32(num_components, handle, address, info); + ASSERT(format_info.num_format == AmdGpu::NumberFormat::Uint || + format_info.num_format == AmdGpu::NumberFormat::Sint || + format_info.num_format == AmdGpu::NumberFormat::Float); + interpreted = ir.LoadBufferF32(format_info.num_components, handle, address, info); break; } default: - UNREACHABLE_MSG("Unsupported buffer data format: {}", data_fmt); + UNREACHABLE_MSG("Unsupported buffer data format: {}", format_info.data_format); } // Pad to 4 components and apply additional modifications. boost::container::static_vector components; for (u32 i = 0; i < 4; i++) { - if (i < num_components) { + if (i < format_info.num_components) { const auto component = - IR::F32{num_components == 1 ? interpreted : ir.CompositeExtract(interpreted, i)}; - components.push_back(ApplyReadNumberConversion(ir, component, num_conv)); + IR::F32{format_info.num_components == 1 ? interpreted + : ir.CompositeExtract(interpreted, i)}; + components.push_back( + ApplyReadNumberConversion(ir, component, format_info.num_conversion)); } else { components.push_back(ir.Imm32(0.f)); } } - const auto swizzled = ApplySwizzle(ir, ir.CompositeConstruct(components), buffer.DstSelect()); + const auto swizzled = ApplySwizzle(ir, ir.CompositeConstruct(components), format_info.swizzle); return swizzled; } -static void StoreBufferFormat(IR::IREmitter& ir, const AmdGpu::Buffer& buffer, - const IR::Value handle, const IR::U32 address, const IR::Value& value, - const IR::BufferInstInfo info) { - const auto data_fmt = buffer.GetDataFmt(); - const auto num_fmt = buffer.GetNumberFmt(); - const auto num_conv = buffer.GetNumberConversion(); - const auto num_components = AmdGpu::NumComponents(buffer.GetDataFmt()); - +static void StoreBufferFormat(IR::IREmitter& ir, const IR::Value handle, const IR::U32 address, + const IR::Value& value, const IR::BufferInstInfo info, + const FormatInfo& format_info) { // Extract actual number of components and apply additional modifications. - const auto swizzled = ApplySwizzle(ir, value, buffer.DstSelect().Inverse()); + const auto swizzled = ApplySwizzle(ir, value, format_info.swizzle.Inverse()); boost::container::static_vector components; - for (u32 i = 0; i < num_components; i++) { + for (u32 i = 0; i < format_info.num_components; i++) { const auto component = IR::F32{ir.CompositeExtract(swizzled, i)}; - components.push_back(ApplyWriteNumberConversion(ir, component, num_conv)); + components.push_back(ApplyWriteNumberConversion(ir, component, format_info.num_conversion)); } const auto real_value = components.size() == 1 ? components[0] : ir.CompositeConstruct(components); - switch (data_fmt) { + switch (format_info.data_format) { case AmdGpu::DataFormat::FormatInvalid: break; case AmdGpu::DataFormat::Format8: { const auto packed = - ir.Pack4x8(num_fmt, ir.CompositeConstruct(real_value, ir.Imm32(0.f), ir.Imm32(0.f), - ir.Imm32(0.f))); + ir.Pack4x8(format_info.num_format, ir.CompositeConstruct(real_value, ir.Imm32(0.f), + ir.Imm32(0.f), ir.Imm32(0.f))); ir.StoreBufferU8(handle, address, packed, info); break; } case AmdGpu::DataFormat::Format8_8: { - const auto packed = - ir.Pack4x8(num_fmt, ir.CompositeConstruct(ir.CompositeExtract(real_value, 0), - ir.CompositeExtract(real_value, 1), - ir.Imm32(0.f), ir.Imm32(0.f))); + const auto packed = ir.Pack4x8(format_info.num_format, + ir.CompositeConstruct(ir.CompositeExtract(real_value, 0), + ir.CompositeExtract(real_value, 1), + ir.Imm32(0.f), ir.Imm32(0.f))); ir.StoreBufferU16(handle, address, packed, info); break; } case AmdGpu::DataFormat::Format8_8_8_8: { - auto packed = ir.Pack4x8(num_fmt, real_value); + auto packed = ir.Pack4x8(format_info.num_format, real_value); ir.StoreBufferU32(1, handle, address, packed, info); break; } case AmdGpu::DataFormat::Format16: { - const auto packed = ir.Pack2x16(num_fmt, ir.CompositeConstruct(real_value, ir.Imm32(0.f))); + const auto packed = + ir.Pack2x16(format_info.num_format, ir.CompositeConstruct(real_value, ir.Imm32(0.f))); ir.StoreBufferU16(handle, address, packed, info); break; } case AmdGpu::DataFormat::Format16_16: { - const auto packed = ir.Pack2x16(num_fmt, real_value); + const auto packed = ir.Pack2x16(format_info.num_format, real_value); ir.StoreBufferU32(1, handle, address, packed, info); break; } case AmdGpu::DataFormat::Format10_11_11: { - const auto packed = ir.Pack10_11_11(num_fmt, real_value); + const auto packed = ir.Pack10_11_11(format_info.num_format, real_value); ir.StoreBufferU32(1, handle, address, packed, info); break; } case AmdGpu::DataFormat::Format2_10_10_10: { - const auto packed = ir.Pack2_10_10_10(num_fmt, real_value); + const auto packed = ir.Pack2_10_10_10(format_info.num_format, real_value); ir.StoreBufferU32(1, handle, address, packed, info); break; } case AmdGpu::DataFormat::Format16_16_16_16: { const auto packed = ir.CompositeConstruct( - ir.Pack2x16(num_fmt, ir.CompositeConstruct(ir.CompositeExtract(real_value, 0), - ir.CompositeExtract(real_value, 1))), - ir.Pack2x16(num_fmt, ir.CompositeConstruct(ir.CompositeExtract(real_value, 2), - ir.CompositeExtract(real_value, 3)))); + ir.Pack2x16(format_info.num_format, + ir.CompositeConstruct(ir.CompositeExtract(real_value, 0), + ir.CompositeExtract(real_value, 1))), + ir.Pack2x16(format_info.num_format, + ir.CompositeConstruct(ir.CompositeExtract(real_value, 2), + ir.CompositeExtract(real_value, 3)))); ir.StoreBufferU32(2, handle, address, packed, info); break; } @@ -171,28 +178,40 @@ static void StoreBufferFormat(IR::IREmitter& ir, const AmdGpu::Buffer& buffer, case AmdGpu::DataFormat::Format32_32: case AmdGpu::DataFormat::Format32_32_32: case AmdGpu::DataFormat::Format32_32_32_32: { - ASSERT(num_fmt == AmdGpu::NumberFormat::Uint || num_fmt == AmdGpu::NumberFormat::Sint || - num_fmt == AmdGpu::NumberFormat::Float); - ir.StoreBufferF32(num_components, handle, address, real_value, info); + ASSERT(format_info.num_format == AmdGpu::NumberFormat::Uint || + format_info.num_format == AmdGpu::NumberFormat::Sint || + format_info.num_format == AmdGpu::NumberFormat::Float); + ir.StoreBufferF32(format_info.num_components, handle, address, real_value, info); break; } default: - UNREACHABLE_MSG("Unsupported buffer data format: {}", data_fmt); + UNREACHABLE_MSG("Unsupported buffer data format: {}", format_info.data_format); } } static void LowerBufferFormatInst(IR::Block& block, IR::Inst& inst, Info& info) { IR::IREmitter ir{block, IR::Block::InstructionList::s_iterator_to(inst)}; + const auto flags = inst.Flags(); const auto desc{info.buffers[inst.Arg(0).U32()]}; const auto buffer{desc.GetSharp(info)}; + const auto is_inst_typed = flags.inst_data_fmt != AmdGpu::DataFormat::FormatInvalid; + const auto data_format = is_inst_typed ? flags.inst_data_fmt.Value() : buffer.GetDataFmt(); + const auto num_format = is_inst_typed ? flags.inst_num_fmt.Value() : buffer.GetNumberFmt(); + const auto format_info = FormatInfo{ + .data_format = data_format, + .num_format = num_format, + .swizzle = is_inst_typed ? AmdGpu::IdentityMapping : buffer.DstSelect(), + .num_conversion = AmdGpu::MapNumberConversion(num_format), + .num_components = AmdGpu::NumComponents(data_format), + }; + if (IsBufferFormatLoad(inst)) { - const auto interpreted = LoadBufferFormat(ir, buffer, inst.Arg(0), IR::U32{inst.Arg(1)}, - inst.Flags()); + const auto interpreted = + LoadBufferFormat(ir, inst.Arg(0), IR::U32{inst.Arg(1)}, flags, format_info); inst.ReplaceUsesWithAndRemove(interpreted); } else if (IsBufferFormatStore(inst)) { - StoreBufferFormat(ir, buffer, inst.Arg(0), IR::U32{inst.Arg(1)}, inst.Arg(2), - inst.Flags()); + StoreBufferFormat(ir, inst.Arg(0), IR::U32{inst.Arg(1)}, inst.Arg(2), flags, format_info); inst.Invalidate(); } } diff --git a/src/shader_recompiler/ir/passes/shared_memory_barrier_pass.cpp b/src/shader_recompiler/ir/passes/shared_memory_barrier_pass.cpp index 0ee52cf19..baf6ad0d1 100644 --- a/src/shader_recompiler/ir/passes/shared_memory_barrier_pass.cpp +++ b/src/shader_recompiler/ir/passes/shared_memory_barrier_pass.cpp @@ -43,6 +43,10 @@ static void EmitBarrierInBlock(IR::Block* block) { action = BarrierAction::BarrierOnRead; } } + if (action != BarrierAction::None) { + IR::IREmitter ir{*block, --block->end()}; + ir.Barrier(); + } } // Inserts a barrier after divergent conditional blocks to avoid undefined diff --git a/src/shader_recompiler/ir/reg.h b/src/shader_recompiler/ir/reg.h index 3ee7c4355..40c4b61c3 100644 --- a/src/shader_recompiler/ir/reg.h +++ b/src/shader_recompiler/ir/reg.h @@ -7,6 +7,7 @@ #include "common/bit_field.h" #include "common/enum.h" #include "common/types.h" +#include "video_core/amdgpu/types.h" namespace Shader::IR { @@ -52,6 +53,8 @@ union BufferInstInfo { BitField<14, 1, u32> system_coherent; BitField<15, 1, u32> globally_coherent; BitField<16, 1, u32> typed; + BitField<17, 4, AmdGpu::DataFormat> inst_data_fmt; + BitField<21, 3, AmdGpu::NumberFormat> inst_num_fmt; }; enum class ScalarReg : u32 { diff --git a/src/shader_recompiler/profile.h b/src/shader_recompiler/profile.h index 43d2b87d4..1ceaea664 100644 --- a/src/shader_recompiler/profile.h +++ b/src/shader_recompiler/profile.h @@ -21,6 +21,7 @@ struct Profile { bool support_separate_rounding_mode{}; bool support_fp32_denorm_preserve{}; bool support_fp32_denorm_flush{}; + bool support_fp32_round_to_zero{}; bool support_explicit_workgroup_layout{}; bool support_legacy_vertex_attributes{}; bool supports_image_load_store_lod{}; diff --git a/src/video_core/amdgpu/liverpool.cpp b/src/video_core/amdgpu/liverpool.cpp index 2f40d4136..246c8c947 100644 --- a/src/video_core/amdgpu/liverpool.cpp +++ b/src/video_core/amdgpu/liverpool.cpp @@ -93,17 +93,14 @@ void Liverpool::Process(std::stop_token stoken) { // Process incoming commands with high priority while (num_commands) { - Common::UniqueFunction callback{}; { std::unique_lock lk{submit_mutex}; - callback = std::move(command_queue.back()); + callback = std::move(command_queue.front()); command_queue.pop(); + --num_commands; } - callback(); - - --num_commands; } curr_qid = (curr_qid + 1) % num_mapped_queues; @@ -395,6 +392,10 @@ Liverpool::Task Liverpool::ProcessGraphics(std::span dcb, std::span(header); regs.index_buffer_type.raw = index_type->raw; @@ -670,6 +671,7 @@ Liverpool::Task Liverpool::ProcessGraphics(std::span dcb, std::spanIsVoLabel(wait_addr) && num_submits == mapped_queues[GfxQueueId].submits.size()) { vo_port->WaitVoLabel([&] { return wait_reg_mem->Test(); }); + break; } while (!wait_reg_mem->Test()) { YIELD_GFX(); @@ -693,7 +695,7 @@ Liverpool::Task Liverpool::ProcessGraphics(std::span dcb, std::span dcb, std::span> m, 1u) : 1u; const auto& [mip_size, mip_pitch, mip_height, mip_ofs] = image.info.mips_layout[m]; - offset += mip_ofs * num_layers; - if (offset + (mip_size * num_layers) > max_offset) { + offset += mip_ofs; + if (offset + mip_size > max_offset) { break; } copies.push_back({ diff --git a/src/video_core/renderer_vulkan/liverpool_to_vk.cpp b/src/video_core/renderer_vulkan/liverpool_to_vk.cpp index 5c02ef39f..843bedb20 100644 --- a/src/video_core/renderer_vulkan/liverpool_to_vk.cpp +++ b/src/video_core/renderer_vulkan/liverpool_to_vk.cpp @@ -121,7 +121,7 @@ vk::PrimitiveTopology PrimitiveType(AmdGpu::PrimitiveType type) { case AmdGpu::PrimitiveType::RectList: return vk::PrimitiveTopology::ePatchList; default: - UNREACHABLE(); + UNREACHABLE_MSG("Unimplemented primitive type: {}", static_cast(type)); return vk::PrimitiveTopology::eTriangleList; } } diff --git a/src/video_core/renderer_vulkan/vk_instance.cpp b/src/video_core/renderer_vulkan/vk_instance.cpp index f01401569..ab8f074cd 100644 --- a/src/video_core/renderer_vulkan/vk_instance.cpp +++ b/src/video_core/renderer_vulkan/vk_instance.cpp @@ -247,9 +247,7 @@ bool Instance::CreateDevice() { add_extension(VK_EXT_SHADER_DEMOTE_TO_HELPER_INVOCATION_EXTENSION_NAME); add_extension(VK_KHR_SYNCHRONIZATION_2_EXTENSION_NAME); add_extension(VK_EXT_EXTENDED_DYNAMIC_STATE_EXTENSION_NAME); - // Currently causes issues with Reshade on AMD proprietary, disable until figured out. - tooling_info = GetDriverID() != vk::DriverId::eAmdProprietary && - add_extension(VK_EXT_TOOLING_INFO_EXTENSION_NAME); + add_extension(VK_EXT_TOOLING_INFO_EXTENSION_NAME); const bool maintenance4 = add_extension(VK_KHR_MAINTENANCE_4_EXTENSION_NAME); add_extension(VK_KHR_SWAPCHAIN_EXTENSION_NAME); @@ -539,7 +537,8 @@ void Instance::CollectDeviceParameters() { } void Instance::CollectToolingInfo() { - if (!tooling_info) { + if (GetDriverID() == vk::DriverId::eAmdProprietary) { + // Currently causes issues with Reshade on AMD proprietary, disabled until fix released. return; } const auto [tools_result, tools] = physical_device.getToolPropertiesEXT(); diff --git a/src/video_core/renderer_vulkan/vk_instance.h b/src/video_core/renderer_vulkan/vk_instance.h index bdd92cba9..3ccf89276 100644 --- a/src/video_core/renderer_vulkan/vk_instance.h +++ b/src/video_core/renderer_vulkan/vk_instance.h @@ -333,7 +333,6 @@ private: bool shader_stencil_export{}; bool image_load_store_lod{}; bool amd_gcn_shader{}; - bool tooling_info{}; bool portability_subset{}; }; diff --git a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp index 3db22d585..4823b8ffe 100644 --- a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp +++ b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp @@ -196,6 +196,7 @@ PipelineCache::PipelineCache(const Instance& instance_, Scheduler& scheduler_, .subgroup_size = instance.SubgroupSize(), .support_fp32_denorm_preserve = bool(vk12_props.shaderDenormPreserveFloat32), .support_fp32_denorm_flush = bool(vk12_props.shaderDenormFlushToZeroFloat32), + .support_fp32_round_to_zero = bool(vk12_props.shaderRoundingModeRTZFloat32), .support_explicit_workgroup_layout = true, .support_legacy_vertex_attributes = instance_.IsLegacyVertexAttributesSupported(), .supports_image_load_store_lod = instance_.IsImageLoadStoreLodSupported(), diff --git a/src/video_core/renderer_vulkan/vk_platform.cpp b/src/video_core/renderer_vulkan/vk_platform.cpp index cb67232d5..716473377 100644 --- a/src/video_core/renderer_vulkan/vk_platform.cpp +++ b/src/video_core/renderer_vulkan/vk_platform.cpp @@ -278,6 +278,7 @@ vk::UniqueInstance CreateInstance(Frontend::WindowSystemType window_type, bool e vk::Bool32 enable_force_barriers = vk::True; #ifdef __APPLE__ const vk::Bool32 mvk_debug_mode = enable_crash_diagnostic ? vk::True : vk::False; + constexpr vk::Bool32 mvk_use_mtlheap = vk::True; #endif const std::array layer_setings = { @@ -353,7 +354,16 @@ vk::UniqueInstance CreateInstance(Frontend::WindowSystemType window_type, bool e .type = vk::LayerSettingTypeEXT::eBool32, .valueCount = 1, .pValues = &mvk_debug_mode, - } + }, + // Use MTLHeap to back device memory, which among other things allows us to + // use VK_IMAGE_CREATE_2D_ARRAY_COMPATIBLE_BIT via memory aliasing. + vk::LayerSettingEXT{ + .pLayerName = "MoltenVK", + .pSettingName = "MVK_CONFIG_USE_MTLHEAP", + .type = vk::LayerSettingTypeEXT::eBool32, + .valueCount = 1, + .pValues = &mvk_use_mtlheap, + }, #endif }; diff --git a/src/video_core/renderer_vulkan/vk_platform.h b/src/video_core/renderer_vulkan/vk_platform.h index 4e9587e46..0f70312ed 100644 --- a/src/video_core/renderer_vulkan/vk_platform.h +++ b/src/video_core/renderer_vulkan/vk_platform.h @@ -3,11 +3,8 @@ #pragma once -#include -#include #include -#include "common/config.h" #include "common/logging/log.h" #include "common/types.h" #include "video_core/renderer_vulkan/vk_common.h" @@ -33,9 +30,6 @@ concept VulkanHandleType = vk::isVulkanHandleType::value; template void SetObjectName(vk::Device device, const HandleType& handle, std::string_view debug_name) { - if (!Config::getVkHostMarkersEnabled()) { - return; - } const vk::DebugUtilsObjectNameInfoEXT name_info = { .objectType = HandleType::objectType, .objectHandle = reinterpret_cast(static_cast(handle)), @@ -50,9 +44,6 @@ void SetObjectName(vk::Device device, const HandleType& handle, std::string_view template void SetObjectName(vk::Device device, const HandleType& handle, const char* format, const Args&... args) { - if (!Config::getVkHostMarkersEnabled()) { - return; - } const std::string debug_name = fmt::vformat(format, fmt::make_format_args(args...)); SetObjectName(device, handle, debug_name); } diff --git a/src/video_core/texture_cache/image.cpp b/src/video_core/texture_cache/image.cpp index 96881c564..3c85c451c 100644 --- a/src/video_core/texture_cache/image.cpp +++ b/src/video_core/texture_cache/image.cpp @@ -394,7 +394,7 @@ void Image::CopyImage(const Image& image) { vk::AccessFlagBits2::eShaderRead | vk::AccessFlagBits2::eTransferRead, {}); } -void Image::CopyMip(const Image& image, u32 mip) { +void Image::CopyMip(const Image& image, u32 mip, u32 slice) { scheduler->EndRendering(); Transit(vk::ImageLayout::eTransferDstOptimal, vk::AccessFlagBits2::eTransferWrite, {}); @@ -407,18 +407,19 @@ void Image::CopyMip(const Image& image, u32 mip) { ASSERT(mip_w == image.info.size.width); ASSERT(mip_h == image.info.size.height); + const u32 num_layers = std::min(image.info.resources.layers, info.resources.layers); const vk::ImageCopy image_copy{ .srcSubresource{ .aspectMask = image.aspect_mask, .mipLevel = 0, .baseArrayLayer = 0, - .layerCount = image.info.resources.layers, + .layerCount = num_layers, }, .dstSubresource{ .aspectMask = image.aspect_mask, .mipLevel = mip, - .baseArrayLayer = 0, - .layerCount = info.resources.layers, + .baseArrayLayer = slice, + .layerCount = num_layers, }, .extent = {mip_w, mip_h, mip_d}, }; diff --git a/src/video_core/texture_cache/image.h b/src/video_core/texture_cache/image.h index b04fd188c..66d65ceec 100644 --- a/src/video_core/texture_cache/image.h +++ b/src/video_core/texture_cache/image.h @@ -104,7 +104,7 @@ struct Image { void Upload(vk::Buffer buffer, u64 offset); void CopyImage(const Image& image); - void CopyMip(const Image& image, u32 mip); + void CopyMip(const Image& src_image, u32 mip, u32 slice); bool IsTracked() { return track_addr != 0 && track_addr_end != 0; diff --git a/src/video_core/texture_cache/image_info.cpp b/src/video_core/texture_cache/image_info.cpp index 852ade1f0..26928eaf7 100644 --- a/src/video_core/texture_cache/image_info.cpp +++ b/src/video_core/texture_cache/image_info.cpp @@ -208,15 +208,14 @@ void ImageInfo::UpdateSize() { mip_info.pitch = std::max(mip_info.pitch * 4, 32u); mip_info.height = std::max(mip_info.height * 4, 32u); } - mip_info.size *= mip_d; + mip_info.size *= mip_d * resources.layers; mip_info.offset = guest_size; mips_layout.emplace_back(mip_info); guest_size += mip_info.size; } - guest_size *= resources.layers; } -int ImageInfo::IsMipOf(const ImageInfo& info) const { +s32 ImageInfo::MipOf(const ImageInfo& info) const { if (!IsCompatible(info)) { return -1; } @@ -237,7 +236,12 @@ int ImageInfo::IsMipOf(const ImageInfo& info) const { // Find mip auto mip = -1; for (auto m = 0; m < info.mips_layout.size(); ++m) { - if (guest_address == (info.guest_address + info.mips_layout[m].offset)) { + const auto& [mip_size, mip_pitch, mip_height, mip_ofs] = info.mips_layout[m]; + const VAddr mip_base = info.guest_address + mip_ofs; + const VAddr mip_end = mip_base + mip_size; + const u32 slice_size = mip_size / info.resources.layers; + if (guest_address >= mip_base && guest_address < mip_end && + (guest_address - mip_base) % slice_size == 0) { mip = m; break; } @@ -246,7 +250,6 @@ int ImageInfo::IsMipOf(const ImageInfo& info) const { if (mip < 0) { return -1; } - ASSERT(mip != 0); const auto mip_w = std::max(info.size.width >> mip, 1u); const auto mip_h = std::max(info.size.height >> mip, 1u); @@ -269,7 +272,7 @@ int ImageInfo::IsMipOf(const ImageInfo& info) const { return mip; } -int ImageInfo::IsSliceOf(const ImageInfo& info) const { +s32 ImageInfo::SliceOf(const ImageInfo& info, s32 mip) const { if (!IsCompatible(info)) { return -1; } @@ -280,18 +283,20 @@ int ImageInfo::IsSliceOf(const ImageInfo& info) const { } // 2D dimensions of both images should be the same. - if ((size.width != info.size.width) || (size.height != info.size.height)) { + const auto mip_w = std::max(info.size.width >> mip, 1u); + const auto mip_h = std::max(info.size.height >> mip, 1u); + if ((size.width != mip_w) || (size.height != mip_h)) { return -1; } // Check for size alignment. - const bool slice_size = info.guest_size / info.resources.layers; + const u32 slice_size = info.mips_layout[mip].size / info.resources.layers; if (guest_size % slice_size != 0) { return -1; } // Ensure that address is aligned too. - const auto addr_diff = guest_address - info.guest_address; + const auto addr_diff = guest_address - (info.guest_address + info.mips_layout[mip].offset); if ((addr_diff % guest_size) != 0) { return -1; } diff --git a/src/video_core/texture_cache/image_info.h b/src/video_core/texture_cache/image_info.h index dad0e751e..ca4d9f5e9 100644 --- a/src/video_core/texture_cache/image_info.h +++ b/src/video_core/texture_cache/image_info.h @@ -30,8 +30,8 @@ struct ImageInfo { bool IsDepthStencil() const; bool HasStencil() const; - int IsMipOf(const ImageInfo& info) const; - int IsSliceOf(const ImageInfo& info) const; + s32 MipOf(const ImageInfo& info) const; + s32 SliceOf(const ImageInfo& info, s32 mip) const; /// Verifies if images are compatible for subresource merging. bool IsCompatible(const ImageInfo& info) const { diff --git a/src/video_core/texture_cache/texture_cache.cpp b/src/video_core/texture_cache/texture_cache.cpp index ecac78847..d41ee57cc 100644 --- a/src/video_core/texture_cache/texture_cache.cpp +++ b/src/video_core/texture_cache/texture_cache.cpp @@ -223,16 +223,13 @@ std::tuple TextureCache::ResolveOverlap(const ImageInfo& imag // Right overlap, the image requested is a possible subresource of the image from cache. if (image_info.guest_address > tex_cache_image.info.guest_address) { - if (auto mip = image_info.IsMipOf(tex_cache_image.info); mip >= 0) { - return {cache_image_id, mip, -1}; + if (auto mip = image_info.MipOf(tex_cache_image.info); mip >= 0) { + if (auto slice = image_info.SliceOf(tex_cache_image.info, mip); slice >= 0) { + return {cache_image_id, mip, slice}; + } } - if (auto slice = image_info.IsSliceOf(tex_cache_image.info); slice >= 0) { - return {cache_image_id, -1, slice}; - } - - // TODO: slice and mip - + // Image isn't a subresource but a chance overlap. if (safe_to_delete) { FreeImage(cache_image_id); } @@ -240,31 +237,33 @@ std::tuple TextureCache::ResolveOverlap(const ImageInfo& imag return {{}, -1, -1}; } else { // Left overlap, the image from cache is a possible subresource of the image requested - if (auto mip = tex_cache_image.info.IsMipOf(image_info); mip >= 0) { - if (tex_cache_image.binding.is_target) { - // We have a larger image created and a separate one, representing a subres of it, - // bound as render target. In this case we need to rebind render target. - tex_cache_image.binding.needs_rebind = 1u; - if (merged_image_id) { - GetImage(merged_image_id).binding.is_target = 1u; + if (auto mip = tex_cache_image.info.MipOf(image_info); mip >= 0) { + if (auto slice = tex_cache_image.info.SliceOf(image_info, mip); slice >= 0) { + if (tex_cache_image.binding.is_target) { + // We have a larger image created and a separate one, representing a subres of + // it, bound as render target. In this case we need to rebind render target. + tex_cache_image.binding.needs_rebind = 1u; + if (merged_image_id) { + GetImage(merged_image_id).binding.is_target = 1u; + } + + FreeImage(cache_image_id); + return {merged_image_id, -1, -1}; } - FreeImage(cache_image_id); - return {merged_image_id, -1, -1}; - } + // We need to have a larger, already allocated image to copy this one into + if (merged_image_id) { + tex_cache_image.Transit(vk::ImageLayout::eTransferSrcOptimal, + vk::AccessFlagBits2::eTransferRead, {}); - // We need to have a larger, already allocated image to copy this one into - if (merged_image_id) { - tex_cache_image.Transit(vk::ImageLayout::eTransferSrcOptimal, - vk::AccessFlagBits2::eTransferRead, {}); + const auto num_mips_to_copy = tex_cache_image.info.resources.levels; + ASSERT(num_mips_to_copy == 1); - const auto num_mips_to_copy = tex_cache_image.info.resources.levels; - ASSERT(num_mips_to_copy == 1); + auto& merged_image = slot_images[merged_image_id]; + merged_image.CopyMip(tex_cache_image, mip, slice); - auto& merged_image = slot_images[merged_image_id]; - merged_image.CopyMip(tex_cache_image, mip); - - FreeImage(cache_image_id); + FreeImage(cache_image_id); + } } } } @@ -374,12 +373,16 @@ ImageId TextureCache::FindImage(BaseDesc& desc, FindFlags flags) { RegisterImage(image_id); } + Image& image = slot_images[image_id]; + image.tick_accessed_last = scheduler.CurrentTick(); + + // If the image requested is a subresource of the image from cache record its location. if (view_mip > 0) { desc.view_info.range.base.level = view_mip; } - - Image& image = slot_images[image_id]; - image.tick_accessed_last = scheduler.CurrentTick(); + if (view_slice > 0) { + desc.view_info.range.base.layer = view_slice; + } return image_id; } @@ -526,7 +529,7 @@ void TextureCache::RefreshImage(Image& image, Vulkan::Scheduler* custom_schedule } image_copy.push_back({ - .bufferOffset = mip.offset * num_layers, + .bufferOffset = mip.offset, .bufferRowLength = static_cast(mip.pitch), .bufferImageHeight = static_cast(mip.height), .imageSubresource{ diff --git a/src/video_core/texture_cache/tile_manager.cpp b/src/video_core/texture_cache/tile_manager.cpp index ede91d128..d7fc54338 100644 --- a/src/video_core/texture_cache/tile_manager.cpp +++ b/src/video_core/texture_cache/tile_manager.cpp @@ -279,8 +279,7 @@ std::pair TileManager::TryDetile(vk::Buffer in_buffer, u32 in_o ASSERT(info.resources.levels <= 14); std::memset(¶ms.sizes, 0, sizeof(params.sizes)); for (int m = 0; m < info.resources.levels; ++m) { - params.sizes[m] = info.mips_layout[m].size * info.resources.layers + - (m > 0 ? params.sizes[m - 1] : 0); + params.sizes[m] = info.mips_layout[m].size + (m > 0 ? params.sizes[m - 1] : 0); } }