Home
last modified time | relevance | path

Searched refs:newData (Results 1 – 9 of 9) sorted by relevance

/netbsd-src/external/bsd/elftosb/dist/common/
H A DStExecutableImage.cpp355 uint8_t * newData = new uint8_t[newLength]; in mergeRegions() local
356 memset(newData, 0, newLength); in mergeRegions()
361 memcpy(newData, inOldRegion.m_data, inOldRegion.m_length); in mergeRegions()
362 memcpy(&newData[newLength - inNewRegion.m_length], inNewRegion.m_data, inNewRegion.m_length); in mergeRegions()
366 memcpy(newData, inNewRegion.m_data, inNewRegion.m_length); in mergeRegions()
367 memcpy(&newData[newLength - inOldRegion.m_length], inOldRegion.m_data, inOldRegion.m_length); in mergeRegions()
374 inOldRegion.m_data = newData; in mergeRegions()
H A DDataSourceImager.cpp94 uint8_t * newData = (uint8_t *)malloc(m_length + addressDelta); in addDataSegment() local
95 memcpy(&newData[addressDelta], m_data, m_length); in addDataSegment()
98 m_data = newData; in addDataSegment()
H A DBlob.cpp98 void Blob::append(const uint8_t * newData, unsigned newDataLength) in append() argument
104 memcpy(m_data + oldLength, newData, newDataLength); in append()
H A DBlob.h42 void append(const uint8_t * newData, unsigned newDataLength);
/netbsd-src/external/gpl3/binutils/dist/gprofng/src/
H A DTable.h375 static Data *newData (VType_type);
H A DTable.cc980 Data::newData (VType_type vtype) in newData() function in Data
1114 data->store (propDscr->propID, Data::newData (propDscr->vtype)); in addProperty()
/netbsd-src/external/gpl3/binutils.old/dist/gprofng/src/
H A DTable.h375 static Data *newData (VType_type);
H A DTable.cc980 Data::newData (VType_type vtype) in newData() function in Data
1114 data->store (propDscr->propID, Data::newData (propDscr->vtype)); in addProperty()
/netbsd-src/external/apache2/llvm/dist/clang/docs/analyzer/
H A Dcheckers.rst398 void updateNextData(struct LinkedList *list, int newData) {