Home
last modified time | relevance | path

Searched refs:prevIdx (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/base/hiviewdfx/faultloggerd/interfaces/innerkits/async_stack/
H A Dunique_stack_table.cpp110 uint64_t UniqueStackTable::PutPcInSlot(uint64_t thisPc, uint64_t prevIdx) in PutPcInSlot() argument
117 uint64_t curPcIdx = (((thisPc >> 2) ^ (prevIdx << 4)) % hashModulus_) + availableIndex_; in PutPcInSlot()
122 node.section.prevIdx = prevIdx; in PutPcInSlot()
223 if (node->section.prevIdx == HEAD_NODE_INDEX) { in GetPcsByStackId()
226 node = GetFrame(node->section.prevIdx); in GetPcsByStackId()
/ohos5.0/base/hiviewdfx/faultloggerd/interfaces/innerkits/async_stack/include/
H A Dunique_stack_table.h49 uint64_t prevIdx : IDX_BIT_LENGTH; member
137 uint64_t PutPcInSlot(uint64_t thisPc, uint64_t prevIdx);
/ohos5.0/commonlibrary/ets_utils/js_concurrent_module/utils/locks/
H A Dgraph.h193 VIdx prevIdx = state.currentIdx; in DfsBuildCycleInfo() local
198 result.edges.push_back(e_[s.currentIdx][prevIdx]); in DfsBuildCycleInfo()
199 prevIdx = s.currentIdx; in DfsBuildCycleInfo()
/ohos5.0/foundation/resourceschedule/ffrt/test/ut/testcase/
H A Dut_queue.cpp599 for (int prevIdx = 0; prevIdx < 3; prevIdx++) { in __anon0d588a1c0f02() local
600 if (priorityCount[prevIdx] != 5) { in __anon0d588a1c0f02()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/
H A Dgrid_layout_info.cpp309 inline float AddLinesInBetween(int32_t prevIdx, int32_t idx, int32_t crossCount, float lineHeight) in AddLinesInBetween() argument
314 return (idx - prevIdx) > 1 ? ((idx - 2 - prevIdx) / crossCount + 1) * lineHeight : 0.0f; in AddLinesInBetween()