Home
last modified time | relevance | path

Searched refs:BLOCK_SIZE (Results 1 - 10 of 10) sorted by relevance

/arkcompiler/runtime_core/libpandabase/utils/
H A Dmurmur3_hash.h46 static constexpr uint32_t BLOCK_SIZE = 4; member
99 std::array<uint8_t, BLOCK_SIZE> memblock = {'\0', '\0', '\0', '\0'}; in MurmurHash3()
100 for (size_t i = len / BLOCK_SIZE; i != 0; i--) { in MurmurHash3()
150 std::array<uint8_t, BLOCK_SIZE> memblock = {'\0', '\0', '\0', '\0'}; in MurmurHash3String()
162 if (tail_len != BLOCK_SIZE) { in MurmurHash3String()
176 mutf8_length += BLOCK_SIZE; in MurmurHash3String()
/arkcompiler/runtime_core/static_core/libpandabase/utils/
H A Dmurmur3_hash.h70 static constexpr uint32_t BLOCK_SIZE = 4; member in ark::final
96 std::array<uint8_t, BLOCK_SIZE> memblock = {'\0', '\0', '\0', '\0'}; in MurmurHash3()
97 for (size_t i = len / BLOCK_SIZE; i != 0; i--) { in MurmurHash3()
147 std::array<uint8_t, BLOCK_SIZE> memblock = {'\0', '\0', '\0', '\0'}; in MurmurHash3String()
159 if (tailLen != BLOCK_SIZE) { in MurmurHash3String()
173 mutf8Length += BLOCK_SIZE; in MurmurHash3String()
/arkcompiler/runtime_core/static_core/runtime/mem/refstorage/
H A Dreference_storage.h118 static constexpr size_t BLOCK_SIZE = sizeof(RefBlock); member in ark::mem::ReferenceStorage
120 static_assert(GetAlignmentInBytes(BLOCK_ALIGNMENT) >= BLOCK_SIZE);
121 static_assert(GetAlignmentInBytes(static_cast<Alignment>(BLOCK_ALIGNMENT - 1)) <= BLOCK_SIZE);
124 static constexpr size_t MAX_STORAGE_BLOCK_COUNT = MAX_STORAGE_SIZE / BLOCK_SIZE;
H A Dreference_storage.cpp407 return static_cast<RefBlock *>(frameAllocator_->Alloc(BLOCK_SIZE)); in CreateBlock()
/arkcompiler/ets_runtime/ecmascript/
H A Dsustaining_js_handle.h55 static constexpr uint32_t BLOCK_SIZE = 256L; member in panda::ecmascript::SustainingJSHandle
56 std::vector<std::array<JSTaggedType, BLOCK_SIZE>*> handleBlocks_;
H A Dsustaining_js_handle.cpp51 auto block = new std::array<JSTaggedType, BLOCK_SIZE>(); in Expand()
55 blockLimit_ = &block->data()[BLOCK_SIZE]; in Expand()
65 auto end = (i != (size - 1)) ? &(block->data()[BLOCK_SIZE]) : blockNext_; in Iterate()
H A Decma_string.cpp532 constexpr uint32_t blockSize = static_cast<size_t>(EcmaStringHash::BLOCK_SIZE); in CalculateDataConcatHashCode()
/arkcompiler/ets_runtime/ecmascript/platform/
H A Decma_string_hash.h23 BLOCK_SIZE = 4, member in panda::ecmascript::EcmaStringHash
/arkcompiler/ets_runtime/ecmascript/platform/common/
H A Decma_string_hash_internal.h32 constexpr uint32_t blockSize = static_cast<size_t>(EcmaStringHash::BLOCK_SIZE); in ComputeHashForDataOfLongString()
/arkcompiler/ets_runtime/ecmascript/platform/arm64/
H A Decma_string_hash_internal.h34 constexpr uint32_t blockSize = static_cast<size_t>(EcmaStringHash::BLOCK_SIZE); in ComputeHashForDataOfLongString()

Completed in 7 milliseconds