Searched refs:newArray (Results 1 - 25 of 26) sorted by relevance

12

/macosx-10.10/dyld-353.2.1/unit-tests/test-cases/operator-new-dylib/
H A Dmain.cxx22 char* newArray = new char[24]; local
25 if ( fromFoo == newArray )
/macosx-10.10/xnu-2782.1.97/libkern/c++/
H A DOSArray.cpp193 const OSMetaClassBase **newArray; local
210 newArray = (const OSMetaClassBase **) kalloc(newSize);
211 if (newArray) {
216 bcopy(array, newArray, oldSize);
217 bzero(&newArray[capacity], newSize - oldSize);
219 array = newArray;
439 OSArray *newArray = 0; local
453 newArray = OSArray::withArray(this);
454 if (!newArray)
458 cycleDict->setObject((const OSSymbol *) this, newArray);
[all...]
H A DOSOrderedSet.cpp130 _Element *newArray; local
145 newArray = (_Element *) kalloc(newSize);
146 if (newArray) {
151 bcopy(array, newArray, oldSize);
152 bzero(&newArray[capacity], newSize - oldSize);
154 array = newArray;
H A DOSSerializeBinary.cpp275 OSArray * newArray; local
320 o = 0; newDict = 0; newArray = 0; newSet = 0;
329 o = newArray = OSArray::withCapacity(len);
438 array = newArray;
/macosx-10.10/WTF-7600.1.24/wtf/
H A DFastBitVector.h61 uint32_t* newArray = static_cast<uint32_t*>(fastCalloc(length, 4)); local
62 memcpy(newArray, other.m_array, length * 4);
65 m_array = newArray;
78 uint32_t* newArray = static_cast<uint32_t*>(fastCalloc(newLength, 4)); local
79 memcpy(newArray, m_array, arrayLength() * 4);
82 m_array = newArray;
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/persist/impl/
H A DAccessor.java58 Object newArray(int len); method in interface:Accessor
H A DNonPersistentFormat.java38 Object newArray(int len) { method in class:NonPersistentFormat
H A DObjectArrayFormat.java98 Object newArray(int len) { method in class:ObjectArrayFormat
108 return useComponentFormat.newArray(len);
H A DSimpleFormat.java131 Object newArray(int len) { method in class:SimpleFormat.FBool
203 Object newArray(int len) { method in class:SimpleFormat.FByte
280 Object newArray(int len) { method in class:SimpleFormat.FShort
358 Object newArray(int len) { method in class:SimpleFormat.FInt
438 Object newArray(int len) { method in class:SimpleFormat.FLong
517 Object newArray(int len) { method in class:SimpleFormat.FFloat
592 Object newArray(int len) { method in class:SimpleFormat.FDouble
666 Object newArray(int len) { method in class:SimpleFormat.FChar
739 Object newArray(int len) { method in class:SimpleFormat.FString
776 Object newArray(in method in class:SimpleFormat.FBigInt
813 Object newArray(int len) { method in class:SimpleFormat.FDate
[all...]
H A DPrimitiveArrayFormat.java62 Object newArray(int len) { method in class:PrimitiveArrayFormat
H A DCompositeKeyFormat.java199 Object newArray(int len) { method in class:CompositeKeyFormat
200 return objAccessor.newArray(len);
H A DEnhancedAccessor.java105 public Object newArray(int len) { method in class:EnhancedAccessor
H A DEnumFormat.java75 Object newArray(int len) { method in class:EnumFormat
H A DProxiedFormat.java81 Object newArray(int len) { method in class:ProxiedFormat
H A DFormat.java779 abstract Object newArray(int len); method in class:Format
H A DRawAccessor.java62 public Object newArray(int len) { method in class:RawAccessor
H A DReflectionAccessor.java150 public Object newArray(int len) { method in class:ReflectionAccessor
H A DComplexFormat.java466 Object newArray(int len) { method in class:ComplexFormat
467 return objAccessor.newArray(len);
/macosx-10.10/AppleUSBIrDA-145.2.4/IrDA/Utils/
H A DCArrayIterator.cpp21 void CArrayIterator::SwitchArray(CDynamicArray* newArray, Boolean itsForward) argument
24 XASSERT(newArray);
32 init(newArray, 0, newArray->fSize - 1, itsForward);
H A DCArrayIterator.h53 void SwitchArray(CDynamicArray* newArray, Boolean itsForward = kIterateForward);
/macosx-10.10/ICU-531.30/icuSources/common/
H A Dunistr.cpp1425 UChar *newArray = getArrayStart(); local
1426 if(newArray != oldArray) {
1428 us_arrayCopy(oldArray, 0, newArray, 0, start);
1430 newArray, start + srcLength,
1435 newArray, start + srcLength,
1440 us_arrayCopy(srcChars, srcStart, newArray, start, srcLength);
/macosx-10.10/IOKitUser-1050.1.21/
H A DIOCFSerialize.c1148 CFMutableArrayRef newArray; local
1195 o = 0; newDict = 0; newArray = 0; newSet = 0;
1206 o = newArray = CFArrayCreateMutable(allocator, len, &kCFTypeArrayCallBacks);
1318 array = newArray;
/macosx-10.10/tcl-105/tcl/tcl/generic/
H A DtclCmdIL.c3800 Tcl_Obj **newArray, *objPtr;
3805 newArray = &listRepPtr->elements;
3809 newArray[i++] = objPtr;
3815 newArray[i++] = objPtr;
3764 Tcl_Obj **newArray, *objPtr; local
/macosx-10.10/xnu-2782.1.97/iokit/Kernel/
H A DIOService.cpp5784 IOInterruptAccountingReporter * newArray = NULL; local
5838 newArray = IONew(IOInterruptAccountingReporter, newArraySize);
5840 assert(newArray);
5846 bzero(newArray, newArraySize * sizeof(*newArray));
5847 memcpy(newArray, reserved->interruptStatisticsArray, reserved->interruptStatisticsArrayCount * sizeof(*newArray));
5849 reserved->interruptStatisticsArray = newArray;
/macosx-10.10/tcl-105/tk/tk/generic/
H A DtkText.c6189 int *newArray = (int *)
6191 memcpy(newArray, storeMatch, matchNum*sizeof(int));
6192 memcpy(newArray + 2*matchNum, storeLength,
6198 storeMatch = newArray;
6199 storeLength = newArray + matchNum;
6149 int *newArray = (int *) local

Completed in 240 milliseconds

12