Searched refs:oldVal (Results 1 - 6 of 6) sorted by relevance
/arkcompiler/runtime_core/static_core/runtime/mem/ |
H A D | mem_stats.cpp | 61 [[maybe_unused]] uint64_t oldVal = objectsAllocated_.fetch_sub(youngObjectNum, std::memory_order_acq_rel); in RecordYoungMovedObjects() local 62 ASSERT(oldVal >= youngObjectNum); in RecordYoungMovedObjects() 74 [[maybe_unused]] uint64_t oldVal = objectsAllocated_.fetch_sub(tenuredObjectNum, std::memory_order_acq_rel); in RecordTenuredMovedObjects() local 75 ASSERT(oldVal >= tenuredObjectNum); in RecordTenuredMovedObjects()
|
H A D | runslots_allocator.h | 355 [[maybe_unused]] bool oldVal = freedRunslotsBitmap_.AtomicTestAndSet(slots); in AddFreedRunSlots() local 356 ASSERT(!oldVal); in AddFreedRunSlots()
|
H A D | runslots_allocator-inl.h | 893 [[maybe_unused]] bool oldVal = freedRunslotsBitmap_.AtomicTestAndClear(slots); in GetFreedRunSlots() local 894 ASSERT(oldVal); in GetFreedRunSlots()
|
/arkcompiler/runtime_core/static_core/libpandabase/tests/ |
H A D | futex_test.cpp | 48 int oldVal = g_global; in Waiter() local 52 } while (oldVal == g_global); in Waiter() 67 int oldVal = g_global; in Syncwaiter() local 71 } while (oldVal == g_global); in Syncwaiter()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/regalloc/ |
H A D | interference_graph.h | 154 bool oldVal = (*it != 0U); in AddEdge() local 158 return oldVal; in AddEdge() 164 bool oldVal = (*it != 0U); in AddAffinityEdge() local 168 return oldVal; in AddAffinityEdge()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | stub_builder-inl.h | 3253 GateRef oldVal = Load(VariableType::INT32(), function, bitFieldOffset); in SetCompiledCodeFlagToFunction() local 3256 GateRef newVal = Int32Or(Int32And(oldVal, Int32Not(mask)), value); in SetCompiledCodeFlagToFunction() 3278 GateRef oldVal = Load(VariableType::INT32(), function, bitFieldOffset); in SetTaskConcurrentFuncFlagToFunction() local 3282 GateRef newVal = Int32Or(Int32And(oldVal, Int32Not(mask)), in SetTaskConcurrentFuncFlagToFunction()
|
Completed in 12 milliseconds