HomeSort by: relevance | last modified time | path
    Searched defs:dataLength (Results 1 - 3 of 3) sorted by relevancy

  /src/external/bsd/elftosb/dist/common/
SRecordSourceFile.cpp 121 unsigned dataLength = 0;
137 if (dataLength && ((dataLength + theRecord.m_dataCount > COLLECTION_BUFFER_SIZE) || (theRecord.m_address != nextAddress)))
139 m_image->addTextRegion(startAddress, buffer, dataLength);
141 dataLength = 0;
145 if (dataLength == 0)
153 memcpy(&buffer[dataLength], theRecord.m_data, theRecord.m_dataCount);
154 dataLength += theRecord.m_dataCount;
171 if (dataLength)
173 m_image->addTextRegion(startAddress, buffer, dataLength);
    [all...]
StSRecordFile.cpp 211 int dataLength = newRecord.m_count - addressLength - 1; // total rem - addr - cksum (in bytes)
212 uint8_t * data = new uint8_t[dataLength];
214 for (i=0; i < dataLength; ++i)
222 newRecord.m_dataCount = dataLength;
  /src/external/bsd/elftosb/dist/sbtool/
sbtool.cpp 458 unsigned dataLength = sizeOfCipherBlocks(blockCount);
459 smart_array_ptr<uint8_t> buffer = new uint8_t[dataLength];
477 if (fwrite(buffer.get(), 1, dataLength, stdout) != dataLength)
485 logHexArray(Logger::WARNING, buffer, dataLength);

Completed in 57 milliseconds