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

/macosx-10.10/JavaScriptCore-7600.1.17/heap/
H A DCopiedAllocator.h42 CheckedBoolean tryReallocate(void *oldPtr, size_t oldBytes, size_t newBytes);
106 void* oldPtr, size_t oldBytes, size_t newBytes)
109 ASSERT(is8ByteAligned(reinterpret_cast<void*>(oldBytes)));
112 ASSERT(newBytes > oldBytes);
114 size_t additionalBytes = newBytes - oldBytes;
117 if (m_currentPayloadEnd - currentRemaining - oldBytes != static_cast<char*>(oldPtr))
105 tryReallocate( void* oldPtr, size_t oldBytes, size_t newBytes) argument
/macosx-10.10/mDNSResponder-561.1.1/mDNSShared/Java/
H A DTXTRecord.java103 byte[] oldBytes = fBytes;
113 newLen = avLen + oldBytes.length + 1;
116 System.arraycopy( oldBytes, 0, fBytes, 0, insertion);
117 int secondHalfLen = oldBytes.length - insertion;
118 System.arraycopy( oldBytes, insertion, fBytes, newLen - secondHalfLen, secondHalfLen);
142 byte[] oldBytes = fBytes;
143 fBytes = new byte[ oldBytes.length - avLen - 1];
144 System.arraycopy( oldBytes, 0, fBytes, 0, avStart);
145 System.arraycopy( oldBytes, avStart + avLen + 1, fBytes, avStart, oldBytes
[all...]
/macosx-10.10/libmalloc-53.1.1/src/
H A Dstack_logging.c108 unsigned oldBytes = (*table_num_pages) * vm_page_size; local
109 newTable = allocate_pages(oldBytes*2);
110 copy_pages(*table, newTable, oldBytes);
111 deallocate_pages(*table, oldBytes);
/macosx-10.10/IOAudioFamily-200.6/
H A DIOAudioControl.cpp645 const void *oldBytes, *newBytes; local
654 oldBytes = oldData->getBytesNoCopy();
657 oldBytes = NULL;
674 result = valueChangeHandler.dataHandler(valueChangeTarget, this, oldBytes, oldSize, newBytes, newSize);

Completed in 207 milliseconds