Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/compiler/aot_file/
Daot_file_manager.h71 inline uint32_t GetCacheLength() const in GetCacheLength() function
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dprogram_object.h156 inline uint32_t GetCacheLength() const in GetCacheLength() function
359 DECL_VISIT_ARRAY(DATA_OFFSET, GetCacheLength());
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_regexp.h214 inline int GetCacheLength() in GetCacheLength() function
Dbuiltins_regexp.cpp1868 uint32_t entry = hash & static_cast<uint32_t>(GetCacheLength() - 1); in FindCachedResult()
1870 uint32_t entry2 = (entry + 1) & static_cast<uint32_t>(GetCacheLength() - 1); in FindCachedResult()
1936 uint32_t entry = hash & static_cast<uint32_t>(cache->GetCacheLength() - 1); in AddResultInCache()
1947 uint32_t entry2 = (entry + 1) & static_cast<uint32_t>(cache->GetCacheLength() - 1); in AddResultInCache()
1952 if (cache->GetCacheLength() < DEFAULT_CACHE_NUMBER) { in AddResultInCache()
1960 entry2 = hash & static_cast<uint32_t>(cache->GetCacheLength() - 1); in AddResultInCache()
/arkcompiler/ets_runtime/ecmascript/ts_types/
Dts_manager.cpp128 uint32_t index = constantPool->GetCacheLength() + elmVec.size() - 1; in RecordElmToVecAndIndexMap()
192 uint32_t index = constantPool->GetCacheLength() + hcVec.size() - 1; in RecordIhcToVecAndIndexMap()
204 return JSTaggedValue(valVec[index - constantPool->GetCacheLength()]); in GetValueFromCache()
1246 uint32_t cpSize = oldCP->GetCacheLength(); in GenerateSnapshotConstantPoolList()
1391 uint32_t constantPoolSize = oldCP->GetCacheLength(); in AddValueToSnapshotConstantPoolList()
1469 uint32_t aotLiteralInfoLen = aotLiteralInfo->GetCacheLength(); in ResolveSnapshotConstantPool()
/arkcompiler/ets_runtime/ecmascript/patch/
Dpatch_loader.cpp248 uint32_t baseConstpoolSize = baseConstpool->GetCacheLength(); in FindAndReplaceSameMethod()
/arkcompiler/ets_runtime/ecmascript/
Ddump.cpp485 uint32_t len = pool->GetCacheLength(); in DumpConstantPoolClass()
3684 uint32_t len = arr->GetCacheLength(); in DumpConstantPoolClass()
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_serializer_test.cpp734 EXPECT_EQ(constpool->GetCacheLength(), 1U); in MethodTest1()