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

/xnu-2422.115.4/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))
/xnu-2422.115.4/iokit/Kernel/
H A DIOPMrootDomain.cpp429 void setNumEventsLoggedThisPeriod(uint32_t newCount);
2458 unsigned int oldCount, newCount; local
2484 newCount = preventIdleSleepList->getCount();
2486 if ((oldCount == 0) && (newCount != 0))
2494 else if ((oldCount != 0) && (newCount == 0))
8519 void IOPMTimeline::setNumEventsLoggedThisPeriod(uint32_t newCount) { argument
8520 this->numEventsLoggedThisPeriod = newCount;

Completed in 28 milliseconds