Home
last modified time | relevance | path

Searched refs:BUFFER_SIZE (Results 1 - 12 of 12) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/ohos/
H A Daot_runtime_info.h58 constexpr static const int BUFFER_SIZE = 4096; member in panda::ecmascript::ohos::AotRuntimeInfo
84 static char lines[MAX_LENGTH][BUFFER_SIZE]; in BuildCompileRuntimeInfo()
86 memset_s(lines[i], BUFFER_SIZE, '\0', BUFFER_SIZE); in BuildCompileRuntimeInfo()
110 static char lines[MAX_LENGTH][BUFFER_SIZE]; in BuildCrashRuntimeInfo()
112 memset_s(lines[i], BUFFER_SIZE, '\0', BUFFER_SIZE); in BuildCrashRuntimeInfo()
146 char lines[MAX_LENGTH][BUFFER_SIZE]; in CollectCrashSum()
148 memset_s(lines[i], BUFFER_SIZE, '\0', BUFFER_SIZE); in CollectCrashSum()
[all...]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/scenarios/js_to_ets/js_suites/
H A Dconflict_types.js26 const BUFFER_SIZE = 8;
29 const buffer = new ArrayBuffer(BUFFER_SIZE);
42 const BUFFER_SIZE = 8;
45 const buffer = new ArrayBuffer(BUFFER_SIZE);
/arkcompiler/ets_runtime/ecmascript/ohos/tests/mock/
H A Dmock_aot_runtime_info.cpp61 void MockAotRuntimeInfo::SetRuntimeInfo(const char *realOutPath, char lines[][BUFFER_SIZE], int length) const in SetRuntimeInfo()
71 char buffer[BUFFER_SIZE]; in SetRuntimeInfo()
72 memset_s(buffer, BUFFER_SIZE, 'a', BUFFER_SIZE); in SetRuntimeInfo()
H A Dmock_aot_runtime_info.h36 void SetRuntimeInfo(const char *realOutPath, char lines[][BUFFER_SIZE], int length) const override;
/arkcompiler/ets_runtime/test/fuzztest/setruntimeinfo_fuzzer/
H A Dsetruntimeinfo_fuzzer.cpp26 void TestSetRuntimeInfo(const char *realOutPath, char lines[][BUFFER_SIZE], int length) const in TestSetRuntimeInfo()
31 void TestGetRuntimeInfoByPath(char lines[][BUFFER_SIZE], const char *realOutPath, const char *soBuildId) const in TestGetRuntimeInfoByPath()
74 std::string soBuildId = dataProvider.ConsumeRandomLengthString(AotRuntimeInfo::BUFFER_SIZE - 1); in GetRuntimeInfoByPathFuzzTest()
77 char lines[AotRuntimeInfo::MAX_LENGTH][AotRuntimeInfo::BUFFER_SIZE] = {{0}}; in GetRuntimeInfoByPathFuzzTest()
/arkcompiler/runtime_core/platforms/unix/libpandabase/
H A Dfile.h147 constexpr size_t BUFFER_SIZE = 1024; in GetExecutablePath() local
148 std::array<char, BUFFER_SIZE> buffer = {0}; in GetExecutablePath()
150 uint32_t size = BUFFER_SIZE; in GetExecutablePath()
/arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/
H A Dfile.h137 constexpr size_t BUFFER_SIZE = 1024; in GetExecutablePath() local
138 std::array<char, BUFFER_SIZE> buffer = {0}; in GetExecutablePath()
140 uint32_t size = BUFFER_SIZE; in GetExecutablePath()
/arkcompiler/runtime_core/static_core/libpandabase/utils/
H A Dlogger.h70 constexpr static size_t BUFFER_SIZE = 4096; member in ark::Logger::Buffer
88 return BUFFER_SIZE;
102 std::array<char, BUFFER_SIZE> buffer_ {};
H A Dlogger.cpp114 ASSERT(put >= 0 && static_cast<size_t>(put) < BUFFER_SIZE);
/arkcompiler/runtime_core/libpandabase/utils/
H A Dlogger.h84 constexpr static size_t BUFFER_SIZE = 4096; member in panda::Logger::Buffer
102 return BUFFER_SIZE;
116 std::array<char, BUFFER_SIZE> buffer;
H A Dlogger.cpp126 ASSERT(put >= 0 && static_cast<size_t>(put) < BUFFER_SIZE);
/arkcompiler/ets_runtime/ecmascript/base/
H A Dnumber_helper.cpp176 static constexpr int BUFFER_SIZE = 2240; // 2240: The size of the character array buffer
177 static constexpr int HALF_BUFFER_SIZE = BUFFER_SIZE >> 1;
178 char buffer[BUFFER_SIZE];

Completed in 7 milliseconds