Searched refs:BLOCK_SIZE (Results 1 - 10 of 10) sorted by relevance
/arkcompiler/runtime_core/libpandabase/utils/ |
H A D | murmur3_hash.h | 46 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 D | murmur3_hash.h | 70 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 D | reference_storage.h | 118 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 D | reference_storage.cpp | 407 return static_cast<RefBlock *>(frameAllocator_->Alloc(BLOCK_SIZE)); in CreateBlock()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | sustaining_js_handle.h | 55 static constexpr uint32_t BLOCK_SIZE = 256L; member in panda::ecmascript::SustainingJSHandle 56 std::vector<std::array<JSTaggedType, BLOCK_SIZE>*> handleBlocks_;
|
H A D | sustaining_js_handle.cpp | 51 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 D | ecma_string.cpp | 532 constexpr uint32_t blockSize = static_cast<size_t>(EcmaStringHash::BLOCK_SIZE); in CalculateDataConcatHashCode()
|
/arkcompiler/ets_runtime/ecmascript/platform/ |
H A D | ecma_string_hash.h | 23 BLOCK_SIZE = 4, member in panda::ecmascript::EcmaStringHash
|
/arkcompiler/ets_runtime/ecmascript/platform/common/ |
H A D | ecma_string_hash_internal.h | 32 constexpr uint32_t blockSize = static_cast<size_t>(EcmaStringHash::BLOCK_SIZE); in ComputeHashForDataOfLongString()
|
/arkcompiler/ets_runtime/ecmascript/platform/arm64/ |
H A D | ecma_string_hash_internal.h | 34 constexpr uint32_t blockSize = static_cast<size_t>(EcmaStringHash::BLOCK_SIZE); in ComputeHashForDataOfLongString()
|
Completed in 7 milliseconds