Home
last modified time | relevance | path

Searched refs:stepSize (Results 1 - 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/mem/
H A Dallocation_inspector.cpp34 // the stepSize follows the exponential probability distribution with parameter λ = 1/rate where rate
41 double stepSize = -std::log(random) * rate_; in GetNextStepSize() local
42 return stepSize < TaggedObject::TaggedObjectSize() in GetNextStepSize()
44 : (stepSize > INT_MAX ? INT_MAX : static_cast<size_t>(stepSize)); in GetNextStepSize()
50 size_t stepSize = inspector->GetNextStepSize(); in AddAllocationInspector() local
51 size_t nextCounter = currentCounter_ + stepSize; in AddAllocationInspector()
/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dscheduler.cpp165 for (size_t stepSize = 1; stepSize <= sizeLog; stepSize++) { in Run()
166 auto jumpUpHalf = jumpUp[root][stepSize - 1]; in Run()
167 jumpUp[root][stepSize] = jumpUp[jumpUpHalf][stepSize - 1]; in Run()
183 for (size_t stepSize = 1; stepSize <= sizeLog; stepSize++) { in Run()
184 auto jumpUpHalf = jumpUp[succ][stepSize in Run()
[all...]
H A Dverifier.cpp530 for (size_t stepSize = 1; stepSize <= sizeLog; stepSize++) { in Run()
531 auto jumpUpHalf = jumpUp[root][stepSize - 1]; in Run()
532 jumpUp[root][stepSize] = jumpUp[jumpUpHalf][stepSize - 1]; in Run()
548 for (size_t stepSize = 1; stepSize <= sizeLog; stepSize++) { in Run()
549 auto jumpUpHalf = jumpUp[succ][stepSize in Run()
[all...]

Completed in 3 milliseconds