Searched refs:newData (Results 1 - 25 of 38) sorted by relevance

12

/macosx-10.10/xnu-2782.1.97/iokit/Kernel/i386/
H A DIOKeyStoreHelper.cpp43 static IOMemoryDescriptor * newData; variable
61 newData = data;
76 if (newData)
78 IOMemoryDescriptor * data = newData;
79 newData = NULL;
/macosx-10.10/ICU-531.30/icuSources/test/perf/usetperf/
H A Dbitset.cpp53 int32_t* newData = (int32_t*) uprv_malloc(newLen * BYTES_PER_WORD); local
54 uprv_memcpy(newData, data, len * BYTES_PER_WORD);
56 data = newData;
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/Examples/Scripts/
H A Dstdinreader.py23 newData = ui.objectForKey_(NSFileHandleNotificationDataItem)
24 if newData is None:
31 self.readCallback(self, str(newData))
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/Examples/Scripts/
H A Dstdinreader.py23 newData = ui.objectForKey_(NSFileHandleNotificationDataItem)
24 if newData is None:
31 self.readCallback(self, str(newData))
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Examples/Scripts/
H A Dstdinreader.py23 newData = ui.objectForKey_(NSFileHandleNotificationDataItem)
24 if newData is None:
31 self.readCallback(self, str(newData))
/macosx-10.10/WebCore-7600.1.25/rendering/style/
H A DContentData.cpp42 auto newData = contentData->cloneInternal(); local
43 lastNewData->setNext(WTF::move(newData));
/macosx-10.10/mDNSResponder-561.1.1/Clients/ExplorerPlugin/
H A DExplorerBarWindow.h113 uint8_t * newData; local
115 newData = (uint8_t *) malloc( inSize );
116 require_action( newData, exit, err = kNoMemoryErr );
117 memcpy( newData, inData, inSize );
123 mData = newData;
/macosx-10.10/xnu-2782.1.97/libkern/c++/
H A DOSSerialize.cpp224 char *newData; local
235 (vm_offset_t *)&newData,
246 bzero(&newData[capacity], newCapacity - capacity);
248 data = newData;
H A DOSData.cpp220 unsigned char * newData; local
233 newData = (unsigned char *) kalloc(finalCapacity);
235 if ( newData ) {
236 bzero(newData + capacity, finalCapacity - capacity);
238 bcopy(data, newData, capacity);
242 data = (void *) newData;
/macosx-10.10/WebCore-7600.1.25/fileapi/
H A DFileReaderLoader.cpp194 RefPtr<ArrayBuffer> newData = local
196 memcpy(static_cast<char*>(newData->data()), static_cast<char*>(m_rawData->data()), m_bytesLoaded);
198 m_rawData = newData;
219 RefPtr<ArrayBuffer> newData = m_rawData->slice(0, m_bytesLoaded); local
221 m_rawData = newData;
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/asm/
H A DByteVector.java289 byte[] newData = new byte[length1 > length2 ? length1 : length2];
290 System.arraycopy(data, 0, newData, 0, length);
291 data = newData;
/macosx-10.10/WebKit2-7600.1.25/Shared/
H A DShareableBitmap.cpp152 char* newData = 0; local
153 if (!tryFastRealloc(m_data, newNumBytes).getValue(newData)) {
159 m_data = newData;
/macosx-10.10/WebCore-7600.1.25/platform/network/
H A DBlobRegistryImpl.cpp203 RefPtr<BlobData> newData = BlobData::create(); local
204 newData->setContentType(originalData->contentType());
206 appendStorageItems(newData.get(), originalData->items(), start, newLength);
208 m_blobs.set(url.string(), newData.release());
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/Examples/NonFunctional/RemotePyInterpreter/
H A DAsyncPythonInterpreter.py131 newData = ui.objectForKey_(NSFileHandleNotificationDataItem)
132 if newData is None:
136 bytes = newData.bytes()[:]
142 buff = self.buffer + newData.bytes()[:]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/Examples/NonFunctional/RemotePyInterpreter/
H A DAsyncPythonInterpreter.py131 newData = ui.objectForKey_(NSFileHandleNotificationDataItem)
132 if newData is None:
136 bytes = newData.bytes()[:]
142 buff = self.buffer + newData.bytes()[:]
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Examples/NonFunctional/RemotePyInterpreter/
H A DAsyncPythonInterpreter.py131 newData = ui.objectForKey_(NSFileHandleNotificationDataItem)
132 if newData is None:
136 bytes = newData.bytes()[:]
142 buff = self.buffer + newData.bytes()[:]
/macosx-10.10/Security-57031.1.35/SecurityTests/cspxutils/acltool/
H A Dacltool.cpp105 const unsigned char *newData, // if non-NULL, set/modify new data
149 if(newData) {
153 newData);
92 dumpAcls( SecKeychainRef kcRef, SecItemClass itemClass, SecItemAttr labelAttr, const char *label, bool dumpData, bool dumpAcl, bool editAcl, bool simulateStickyRecord, const unsigned char *newData, unsigned newDataLen) argument
/macosx-10.10/xnu-2782.1.97/bsd/hfs/hfscommon/Misc/
H A DBTreeWrapper.c40 OSErr ReplaceBTreeRecord(FileReference refNum, const void* key, u_int32_t hint, void *newData, u_int16_t dataSize, u_int32_t *newHint) argument
57 btRecord.bufferAddress = newData;
70 if ( DEBUG_BUILD && !ValidHFSRecord(newData, btcb, dataSize) )
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDLib/
H A DIOHIDUPSClass.cpp158 CFMutableDataRef newData = NULL; local
169 newData = CFDataCreateMutable(kCFAllocatorDefault, sizeof(UPSHIDElement));
170 if ( !newData ) return;
171 bcopy(newElementRef, CFDataGetMutableBytePtr(newData), sizeof(UPSHIDElement));
188 CFArrayAppendValue(upsElementArray, newData);
199 CFDictionarySetValue(_upsElements, psKey, newData);
227 CFArraySetValueAtIndex(upsElementArray, index, newData);
232 CFArrayAppendValue(upsElementArray, newData);
239 CFDictionarySetValue(_upsElements, psKey, newData);
253 CFDictionarySetValue(_hidElements, cookieNumber, newData);
[all...]
/macosx-10.10/WebCore-7600.1.25/dom/
H A DCharacterData.cpp192 void CharacterData::setDataAndUpdate(const String& newData, unsigned offsetOfReplacedData, unsigned oldLength, unsigned newLength) argument
195 m_data = newData;
/macosx-10.10/objc4-646/runtime/
H A Dobjc-runtime-new.h547 void setData(class_rw_t *newData)
549 assert(!data() || (newData->flags & (RW_REALIZING | RW_FUTURE)));
551 bits = (bits & ~FAST_DATA_MASK) | (uintptr_t)newData;
696 void setData(class_rw_t *newData) {
697 bits.setData(newData);
/macosx-10.10/hfs-285/fsck_hfs/dfalib/
H A DSBTree.c285 OSErr ReplaceBTreeRecord(SFCB *fcb, const void* key, UInt32 hint, void *newData, UInt16 dataSize, UInt32 *newHint) argument
295 btRecord.bufferAddress = newData;
306 if ( DEBUG_BUILD && !ValidHFSRecord(newData, btcb, dataSize) )
/macosx-10.10/SecurityTokend-55108/lib/
H A Dtdtransit.cpp521 void *newData = malloc(dataLength); local
522 if (newData == NULL)
525 memcpy(newData, dataPtr, dataLength);
526 *outData = CssmData(newData, dataLength);
528 // secdebug(who, "dataPtr (%p), dataLength (%d); newData (%p)", dataPtr, dataLength, newData);
/macosx-10.10/SecurityTokend-55108/security_tokend_client/
H A Dtdtransit.cpp521 void *newData = malloc(dataLength); local
522 if (newData == NULL)
525 memcpy(newData, dataPtr, dataLength);
526 *outData = CssmData(newData, dataLength);
528 // secdebug(who, "dataPtr (%p), dataLength (%d); newData (%p)", dataPtr, dataLength, newData);
/macosx-10.10/tcl-105/tk84/tk/macosx/
H A DtkMacOSXDraw.c378 char *newData = NULL;
438 if (!newData) {
439 newData = ckalloc(image->height * (sliceRowBytes+odd));
441 newPtr = newData;
463 bitmap.baseAddr = newData;
471 ckfree(newData);
507 newData = (char *) ckalloc(image->height * sliceRowBytes);
516 newPtr = newData;
522 pixmap.baseAddr = newData;
531 ckfree(newData);
374 char *newData = NULL; local
[all...]

Completed in 436 milliseconds

12