Searched refs:newCount (Results 1 - 4 of 4) sorted by relevance

/darwin-on-arm/xnu/libkern/c++/
H A DOSObject.cpp118 UInt32 newCount; local
151 newCount = origCount + inc;
152 } while (!OSCompareAndSwap(origCount, newCount, const_cast<UInt32 *>(countP)));
165 UInt32 newCount; local
199 newCount = 0xffff;
201 newCount = actualCount;
203 } while (!OSCompareAndSwap(origCount, newCount, const_cast<UInt32 *>(countP)));
222 if (newCount == 0xffff) {
H A DOSArray.cpp235 unsigned int newCount = count + 1; local
241 if (newCount > capacity && newCount > ensureCapacity(newCount))
259 unsigned int newCount = count + otherCount; local
265 if (newCount > capacity && newCount > ensureCapacity(newCount))
H A DOSOrderedSet.cpp170 unsigned int newCount = count + 1; local
179 if (newCount > capacity && newCount > ensureCapacity(newCount))
/darwin-on-arm/xnu/iokit/Kernel/
H A DIOPMrootDomain.cpp396 void setNumEventsLoggedThisPeriod(uint32_t newCount);
2424 unsigned int oldCount, newCount; local
2450 newCount = preventIdleSleepList->getCount();
2452 if ((oldCount == 0) && (newCount != 0))
2460 else if ((oldCount != 0) && (newCount == 0))
7820 void IOPMTimeline::setNumEventsLoggedThisPeriod(uint32_t newCount) { argument
7821 this->numEventsLoggedThisPeriod = newCount;

Completed in 85 milliseconds