Home
last modified time | relevance | path

Searched refs:GetCacheLength (Results 1 – 10 of 10) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/ic/
Dprofile_type_info.h119 inline uint32_t GetCacheLength() const in GetCacheLength() function
166 DECL_VISIT_ARRAY(DATA_OFFSET, GetCacheLength(), GetCacheLength());
/arkcompiler/ets_runtime/ecmascript/compiler/aot_snapshot/
Daot_snapshot.cpp57 uint32_t cacheSize = cp->GetCacheLength(); in GenerateSnapshotConstantPools()
Dsnapshot_global_data.cpp43 uint32_t aotLiteralInfoLen = aotLiteralInfo->GetCacheLength(); in Resolve()
/arkcompiler/ets_runtime/ecmascript/compiler/aot_file/
Daot_file_manager.h82 inline uint32_t GetCacheLength() const in GetCacheLength() function
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dprogram_object.h176 inline uint32_t GetCacheLength() const in GetCacheLength() function
467 DECL_VISIT_ARRAY(DATA_OFFSET, GetCacheLength(), GetLength());
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_regexp.h244 inline int GetCacheLength() in GetCacheLength() function
Dbuiltins_regexp.cpp2448 uint32_t entry = hash & static_cast<uint32_t>(GetCacheLength() - 1); in FindCachedResult()
2450 uint32_t entry2 = (entry + 1) & static_cast<uint32_t>(GetCacheLength() - 1); in FindCachedResult()
2530 uint32_t entry = hash & static_cast<uint32_t>(cache->GetCacheLength() - 1); in AddResultInCache()
2542 uint32_t entry2 = (entry + 1) & static_cast<uint32_t>(cache->GetCacheLength() - 1); in AddResultInCache()
2547 if (cache->GetCacheLength() < DEFAULT_CACHE_NUMBER) { in AddResultInCache()
2555 entry2 = hash & static_cast<uint32_t>(cache->GetCacheLength() - 1); in AddResultInCache()
/arkcompiler/ets_runtime/ecmascript/patch/
Dpatch_loader.cpp269 uint32_t baseConstpoolSize = baseConstpool->GetCacheLength(); in FindAndReplaceSameMethod()
/arkcompiler/ets_runtime/ecmascript/
Ddump.cpp533 uint32_t len = pool->GetCacheLength(); in DumpConstantPoolClass()
1620 uint32_t len = GetCacheLength(); in Dump()
3910 uint32_t len = arr->GetCacheLength(); in DumpConstantPoolClass()
4786 uint32_t len = GetCacheLength(); in DumpForSnapshot()
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_serializer_test.cpp754 EXPECT_EQ(constpool->GetCacheLength(), 4U); in MethodTest1()