Home
last modified time | relevance | path

Searched refs:theCapacity (Results 1 – 2 of 2) sorted by relevance

/xnu-11215/libkern/c++/
H A DOSDictionary.cpp114 unsigned int theCapacity) in initWithObjects() argument
122 if (theCapacity) { in initWithObjects()
123 if (theCount > theCapacity) { in initWithObjects()
127 newCapacity = theCapacity; in initWithObjects()
149 unsigned int theCapacity) in initWithObjects() argument
157 if (theCapacity) { in initWithObjects()
158 if (theCount > theCapacity) { in initWithObjects()
162 newCapacity = theCapacity; in initWithObjects()
187 unsigned int theCapacity) in initWithDictionary() argument
197 if (theCapacity) { in initWithDictionary()
[all …]
H A DOSArray.cpp83 unsigned int theCapacity) in initWithObjects() argument
87 if (!theCapacity) { in initWithObjects()
89 } else if (theCount > theCapacity) { in initWithObjects()
92 initCapacity = theCapacity; in initWithObjects()
114 unsigned int theCapacity) in initWithArray() argument
121 anArray->count, theCapacity); in initWithArray()