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

/macosx-10.5.8/xnu-1228.15.4/libkern/c++/
H A DOSObject.cpp144 UInt32 newCount; local
177 newCount = origCount + inc;
178 } while (!OSCompareAndSwap(origCount, newCount, (UInt32 *) countP));
191 UInt32 newCount; local
225 newCount = 0xffff;
227 newCount = actualCount;
229 } while (!OSCompareAndSwap(origCount, newCount, (UInt32 *) countP));
244 if (newCount == 0xffff)
H A DOSArray.cpp234 unsigned int newCount = count + 1; local
240 if (newCount > capacity && newCount > ensureCapacity(newCount))
258 unsigned int newCount = count + otherCount; local
264 if (newCount > capacity && newCount > ensureCapacity(newCount))
H A DOSOrderedSet.cpp170 unsigned int newCount = count + 1; local
179 if (newCount > capacity && newCount > ensureCapacity(newCount))

Completed in 29 milliseconds