/external/deqp/framework/delibs/debase/ |
D | deMemory.c | 64 void* deMalloc (size_t numBytes) in deMalloc() argument 68 DE_ASSERT(numBytes > 0); in deMalloc() 70 ptr = malloc((size_t)numBytes); in deMalloc() 76 memset(ptr, 0xcd, numBytes); in deMalloc() 81 VALGRIND_MAKE_MEM_UNDEFINED(ptr, numBytes); in deMalloc() 94 void* deCalloc (size_t numBytes) in deCalloc() argument 96 void* ptr = deMalloc(numBytes); in deCalloc() 98 deMemset(ptr, 0, numBytes); in deCalloc() 108 void* deRealloc (void* ptr, size_t numBytes) in deRealloc() argument 110 return realloc(ptr, numBytes); in deRealloc() [all …]
|
D | deMemory.h | 35 void* deMalloc (size_t numBytes); 36 void* deCalloc (size_t numBytes); 37 void* deRealloc (void* ptr, size_t numBytes); 40 void* deAlignedMalloc (size_t numBytes, size_t alignBytes); 41 void* deAlignedRealloc(void* ptr, size_t numBytes, size_t alignBytes); 52 DE_INLINE void deMemset (void* ptr, int value, size_t numBytes) in deMemset() argument 55 memset(ptr, value, numBytes); in deMemset() 58 DE_INLINE int deMemCmp (const void* a, const void* b, size_t numBytes) in deMemCmp() argument 60 return memcmp(a, b, numBytes); in deMemCmp() 70 DE_INLINE void* deMemcpy (void* dst, const void* src, size_t numBytes) in deMemcpy() argument [all …]
|
/external/oboe/samples/parselib/src/main/cpp/stream/ |
D | MemInputStream.cpp | 23 int32_t MemInputStream::read(void *buff, int32_t numBytes) { in read() argument 25 numBytes = std::min(numBytes, numAvail); in read() 27 peek(buff, numBytes); in read() 28 mPos += numBytes; in read() 29 return numBytes; in read() 32 int32_t MemInputStream::peek(void *buff, int32_t numBytes) { in peek() argument 34 numBytes = std::min(numBytes, numAvail); in peek() 35 memcpy(buff, mBuffer + mPos, numBytes); in peek() 36 return numBytes; in peek() 39 void MemInputStream::advance(int32_t numBytes) { in advance() argument [all …]
|
D | FileInputStream.cpp | 22 int32_t FileInputStream::read(void *buff, int32_t numBytes) { in read() argument 23 return ::read(mFH, buff, numBytes); in read() 26 int32_t FileInputStream::peek(void *buff, int32_t numBytes) { in peek() argument 27 int32_t numRead = ::read(mFH, buff, numBytes); in peek() 28 ::lseek(mFH, -numBytes, SEEK_CUR); in peek() 32 void FileInputStream::advance(int32_t numBytes) { in advance() argument 33 if (numBytes > 0) { in advance() 34 ::lseek(mFH, numBytes, SEEK_CUR); in advance()
|
/external/oboe/src/fifo/ |
D | FifoBuffer.cpp | 84 int32_t numBytes = convertFramesToBytes(frames1); in read() local 85 if (numBytes < 0) { in read() 88 memcpy(destination, source, static_cast<size_t>(numBytes)); in read() 89 destination += numBytes; in read() 93 numBytes = convertFramesToBytes(frames2); in read() 94 if (numBytes < 0) { in read() 97 memcpy(destination, source, static_cast<size_t>(numBytes)); in read() 100 int32_t numBytes = convertFramesToBytes(framesToRead); in read() local 101 if (numBytes < 0) { in read() 104 memcpy(destination, source, static_cast<size_t>(numBytes)); in read() [all …]
|
/external/deqp/modules/glshared/ |
D | glsBufferTestUtil.hpp | 54 void fillWithRandomBytes (deUint8* ptr, int numBytes, deUint32 seed); 55 …compareByteArrays (tcu::TestLog& log, const deUint8* resPtr, const deUint8* refPtr, int numBytes); 90 void setSize (int numBytes); 91 void setData (int numBytes, const deUint8* bytes); 92 void setSubData (int offset, int numBytes, const deUint8* bytes); 123 …virtual void write (deUint32 buffer, int offset, int numBytes, const deUint8* bytes) = DE_NU… 124 …virtual void write (deUint32 buffer, int offset, int numBytes, const deUint8* bytes, deUint3… 142 void write (deUint32 buffer, int offset, int numBytes, const deUint8* bytes); 143 …void write (deUint32 buffer, int offset, int numBytes, const deUint8* bytes, deUint32 targ… 160 virtual void write (deUint32 buffer, int offset, int numBytes, const deUint8* bytes); [all …]
|
D | glsBufferTestUtil.cpp | 68 void fillWithRandomBytes (deUint8* ptr, int numBytes, deUint32 seed) in fillWithRandomBytes() argument 70 …std::copy(tcu::RandomValueIterator<deUint8>::begin(seed, numBytes), tcu::RandomValueIterator<deUin… in fillWithRandomBytes() 73 …l compareByteArrays (tcu::TestLog& log, const deUint8* resPtr, const deUint8* refPtr, int numBytes) in compareByteArrays() argument 84 for (;ndx < numBytes; ndx++) in compareByteArrays() 233 void ReferenceBuffer::setSize (int numBytes) in setSize() argument 235 m_data.resize(numBytes); in setSize() 238 void ReferenceBuffer::setData (int numBytes, const deUint8* bytes) in setData() argument 240 m_data.resize(numBytes); in setData() 241 std::copy(bytes, bytes+numBytes, m_data.begin()); in setData() 244 void ReferenceBuffer::setSubData (int offset, int numBytes, const deUint8* bytes) in setSubData() argument [all …]
|
/external/deqp/framework/delibs/decpp/ |
D | deMemPool.hpp | 51 void* alloc (deUintptr numBytes); 52 void* alignedAlloc (deUintptr numBytes, deUint32 alignBytes); 86 inline void* MemPool::alloc (deUintptr numBytes) in alloc() argument 89 DE_ASSERT((deUintptr)(int)numBytes == numBytes); in alloc() 90 void* ptr = deMemPool_alloc(m_pool, (int)numBytes); in alloc() 96 inline void* MemPool::alignedAlloc (deUintptr numBytes, deUint32 alignBytes) in alignedAlloc() argument 99 DE_ASSERT((deUintptr)(int)numBytes == numBytes); in alignedAlloc() 100 void* ptr = deMemPool_alignedAlloc(m_pool, (int)numBytes, alignBytes); in alignedAlloc()
|
D | deRingBuffer.cpp | 63 int numBytes = rnd.getInt(1, buffer.getNumElements()); in RingBuffer_selfTest() local 64 vector<int> tmp (numBytes); in RingBuffer_selfTest() 66 buffer.popBack(&tmp[0], numBytes); in RingBuffer_selfTest() 68 for (int i = 0; i < numBytes; i++) in RingBuffer_selfTest() 71 readPos += numBytes; in RingBuffer_selfTest() 77 int numBytes = rnd.getInt(1, de::min(dataSize-writePos, buffer.getNumFree())); in RingBuffer_selfTest() local 78 buffer.pushFront(&data[writePos], numBytes); in RingBuffer_selfTest() 79 writePos += numBytes; in RingBuffer_selfTest()
|
/external/angle/src/common/ |
D | PoolAlloc.h | 164 void *allocate(size_t numBytes); 169 ANGLE_INLINE uint8_t *fastAllocate(size_t numBytes) in fastAllocate() argument 172 return reinterpret_cast<uint8_t *>(allocate(numBytes)); in fastAllocate() 176 ASSERT(numBytes <= (mPageSize - mHeaderSkip)); in fastAllocate() 180 if (numBytes <= mPageSize - mCurrentPageOffset) in fastAllocate() 186 mCurrentPageOffset += numBytes; in fastAllocate() 189 return reinterpret_cast<uint8_t *>(allocateNewPage(numBytes, numBytes)); in fastAllocate() 246 void *allocateNewPage(size_t numBytes, size_t allocationSize); 248 void *initializeAllocation(Header *block, unsigned char *memory, size_t numBytes) in initializeAllocation() argument 251 new (memory) Allocation(numBytes + mAlignment, memory, block->lastAllocation); in initializeAllocation() [all …]
|
D | PoolAlloc_unittest.cpp | 19 size_t numBytes = 1024; in TEST() local 23 void *allocation = poolAllocator.allocate(numBytes); in TEST() 31 allocation = poolAllocator.allocate(numBytes); in TEST() 42 numBytes = (rand() % (1024 * 4)) + 1; in TEST() 43 allocation = poolAllocator.allocate(numBytes); in TEST() 47 memset(allocation, 0xb8, numBytes); in TEST()
|
D | PoolAlloc.cpp | 216 void *PoolAllocator::allocate(size_t numBytes) in allocate() argument 225 mTotalBytes += numBytes; in allocate() 232 size_t allocationSize = Allocation::AllocationSize(numBytes) + mAlignment; in allocate() 234 if (allocationSize < numBytes) in allocate() 250 return initializeAllocation(mInUseList, memory, numBytes); in allocate() 277 return std::align(mAlignment, numBytes, unalignedPtr, allocationSize); in allocate() 280 static_cast<unsigned char *>(allocateNewPage(numBytes, allocationSize)); in allocate() 281 return initializeAllocation(mInUseList, newPageAddr, numBytes); in allocate() 283 void *alloc = malloc(numBytes + mAlignmentMask); in allocate() 293 void *PoolAllocator::allocateNewPage(size_t numBytes, size_t allocationSize) in allocateNewPage() argument
|
/external/gptfdisk/ |
D | diskio-windows.cc | 222 int DiskIO::Read(void* buffer, int numBytes) { in Read() argument 235 if (numBytes <= blockSize) { in Read() 239 numBlocks = numBytes / blockSize; in Read() 240 if ((numBytes % blockSize) != 0) in Read() 251 for (i = 0; i < numBytes; i++) { in Read() 256 if (((numBlocks * blockSize) != numBytes) && (retval > 0)) in Read() 257 retval = numBytes; in Read() 266 int DiskIO::Write(void* buffer, int numBytes) { in Write() argument 279 if (numBytes <= blockSize) { in Write() 283 numBlocks = numBytes / blockSize; in Write() [all …]
|
D | diskio-unix.cc | 333 int DiskIO::Read(void* buffer, int numBytes) { in Read() argument 345 if (numBytes <= blockSize) { in Read() 349 numBlocks = numBytes / blockSize; in Read() 350 if ((numBytes % blockSize) != 0) in Read() 361 memcpy(buffer, tempSpace, numBytes); in Read() 364 if (((numBlocks * blockSize) != numBytes) && (retval > 0)) in Read() 365 retval = numBytes; in Read() 376 int DiskIO::Write(void* buffer, int numBytes) { in Write() argument 388 if (numBytes <= blockSize) { in Write() 392 numBlocks = numBytes / blockSize; in Write() [all …]
|
/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | IsValidUtf8TestUtil.java | 237 static void testBytes(ByteStringFactory factory, int numBytes, long expectedCount) { 238 testBytes(factory, numBytes, expectedCount, 0, -1); 253 ByteStringFactory factory, int numBytes, long expectedCount, long start, long lim) { 255 byte[] bytes = new byte[numBytes]; 258 lim = 1L << (numBytes * 8); 264 for (int i = 0; i < numBytes; i++) { 280 assertEquals(isRoundTrippable, Utf8.isValidUtf8(bytes, 0, numBytes)); 283 assertEquals(s, Utf8.decodeUtf8(bytes, 0, numBytes)); 293 int i = rnd.nextInt(numBytes); 294 int j = rnd.nextInt(numBytes); [all …]
|
/external/deqp/executor/ |
D | xeBatchExecutor.cpp | 287 void BatchExecutor::onTestLogData (const deUint8* bytes, size_t numBytes) in onTestLogData() argument 291 m_testLogParser.parse(bytes, numBytes); in onTestLogData() 300 void BatchExecutor::onInfoLogData (const deUint8* bytes, size_t numBytes) in onInfoLogData() argument 302 if (numBytes > 0 && m_infoLog) in onInfoLogData() 303 m_infoLog->append(bytes, numBytes); in onInfoLogData() 362 void BatchExecutor::enqueueTestLogData (void* userPtr, const deUint8* bytes, size_t numBytes) in enqueueTestLogData() argument 368 << numBytes; in enqueueTestLogData() 370 writer.write(bytes, numBytes); in enqueueTestLogData() 374 void BatchExecutor::enqueueInfoLogData (void* userPtr, const deUint8* bytes, size_t numBytes) in enqueueInfoLogData() argument 380 << numBytes; in enqueueInfoLogData() [all …]
|
D | xeCallQueue.cpp | 178 void CallReader::read (deUint8* bytes, size_t numBytes) in read() argument 180 DE_ASSERT(m_curPos + numBytes <= m_call->getDataSize()); in read() 181 deMemcpy(bytes, m_call->getData()+m_curPos, numBytes); in read() 182 m_curPos += numBytes; in read() 185 const deUint8* CallReader::getDataBlock (size_t numBytes) in getDataBlock() argument 187 DE_ASSERT(m_curPos + numBytes <= m_call->getDataSize()); in getDataBlock() 190 m_curPos += numBytes; in getDataBlock() 232 void CallWriter::write (const deUint8* bytes, size_t numBytes) in write() argument 236 m_call->setDataSize(curPos+numBytes); in write() 237 deMemcpy(m_call->getData()+curPos, bytes, numBytes); in write()
|
/external/deqp/modules/gles2/functional/ |
D | es2fBufferTestUtil.hpp | 50 void fillWithRandomBytes (deUint8* ptr, int numBytes, deUint32 seed); 51 …compareByteArrays (tcu::TestLog& log, const deUint8* resPtr, const deUint8* refPtr, int numBytes); 83 void setSize (int numBytes); 84 void setData (int numBytes, const deUint8* bytes); 85 void setSubData (int offset, int numBytes, const deUint8* bytes); 112 …virtual bool verify (deUint32 buffer, const deUint8* reference, int offset, int numBytes) = … 132 bool verify (deUint32 buffer, const deUint8* reference, int offset, int numBytes); 149 bool verify (deUint32 buffer, const deUint8* reference, int offset, int numBytes); 165 bool verify (deUint32 buffer, const deUint8* reference, int offset, int numBytes);
|
D | es2fBufferTestUtil.cpp | 70 void fillWithRandomBytes (deUint8* ptr, int numBytes, deUint32 seed) in fillWithRandomBytes() argument 72 …std::copy(tcu::RandomValueIterator<deUint8>::begin(seed, numBytes), tcu::RandomValueIterator<deUin… in fillWithRandomBytes() 75 …l compareByteArrays (tcu::TestLog& log, const deUint8* resPtr, const deUint8* refPtr, int numBytes) in compareByteArrays() argument 86 for (;ndx < numBytes; ndx++) in compareByteArrays() 221 void ReferenceBuffer::setSize (int numBytes) in setSize() argument 223 m_data.resize(numBytes); in setSize() 226 void ReferenceBuffer::setData (int numBytes, const deUint8* bytes) in setData() argument 228 m_data.resize(numBytes); in setData() 229 std::copy(bytes, bytes+numBytes, m_data.begin()); in setData() 232 void ReferenceBuffer::setSubData (int offset, int numBytes, const deUint8* bytes) in setSubData() argument [all …]
|
/external/mesa3d/src/mesa/main/ |
D | eval.c | 499 GLsizei numBytes; in _mesa_GetnMapdvARB() local 522 numBytes = n * sizeof *v; in _mesa_GetnMapdvARB() 523 if (bufSize < numBytes) in _mesa_GetnMapdvARB() 532 numBytes = 1 * sizeof *v; in _mesa_GetnMapdvARB() 533 if (bufSize < numBytes) in _mesa_GetnMapdvARB() 538 numBytes = 2 * sizeof *v; in _mesa_GetnMapdvARB() 539 if (bufSize < numBytes) in _mesa_GetnMapdvARB() 547 numBytes = 2 * sizeof *v; in _mesa_GetnMapdvARB() 548 if (bufSize < numBytes) in _mesa_GetnMapdvARB() 554 numBytes = 4 * sizeof *v; in _mesa_GetnMapdvARB() [all …]
|
/external/libchrome/mojo/public/js/lib/ |
D | validator.js | 133 Validator.prototype.isValidRange = function(start, numBytes) { argument 136 if (start < this.offset || numBytes <= 0 || 138 !Number.isSafeInteger(numBytes)) 141 var newOffset = start + numBytes; 148 Validator.prototype.claimRange = function(start, numBytes) { argument 149 if (this.isValidRange(start, numBytes)) { 150 this.offset = start + numBytes; 244 var numBytes = this.message.buffer.getUint32(offset); 246 if (numBytes < minNumBytes) 249 if (!this.claimRange(offset, numBytes)) [all …]
|
/external/deqp/framework/delibs/dethread/win32/ |
D | deThreadWin32.c | 119 static SYSTEM_LOGICAL_PROCESSOR_INFORMATION* getWin32ProcessorInfo (deUint32* numBytes) in getWin32ProcessorInfo() argument 131 *numBytes = inOutLen; in getWin32ProcessorInfo() 158 …cessorInfo (ProcessorInfo* dst, const SYSTEM_LOGICAL_PROCESSOR_INFORMATION* src, deUint32 numBytes) in parseWin32ProcessorInfo() argument 164 …nst deUint8*)cur - (const deUint8*)src) + sizeof(SYSTEM_LOGICAL_PROCESSOR_INFORMATION) <= numBytes) in parseWin32ProcessorInfo() 182 deUint32 numBytes = 0; in getProcessorInfo() local 183 SYSTEM_LOGICAL_PROCESSOR_INFORMATION* rawInfo = getWin32ProcessorInfo(&numBytes); in getProcessorInfo() 185 if (!numBytes) in getProcessorInfo() 188 parseWin32ProcessorInfo(info, rawInfo, numBytes); in getProcessorInfo()
|
/external/tpm2-tss/src/tss2-fapi/api/ |
D | Fapi_GetRandom.c | 58 size_t numBytes, in Fapi_GetRandom() argument 83 r = Fapi_GetRandom_Async(context, numBytes); in Fapi_GetRandom() 135 size_t numBytes) in Fapi_GetRandom_Async() argument 138 LOG_TRACE("numBytes: %zu", numBytes); in Fapi_GetRandom_Async() 153 command->numBytes = numBytes; in Fapi_GetRandom_Async() 228 r = ifapi_get_random(context, command->numBytes, data); in Fapi_GetRandom_Finish()
|
/external/oboe/src/common/ |
D | FixedBlockWriter.cpp | 27 int32_t FixedBlockWriter::writeToStorage(uint8_t *buffer, int32_t numBytes) { in writeToStorage() argument 28 int32_t bytesToStore = numBytes; in writeToStorage() 38 int32_t FixedBlockWriter::write(uint8_t *buffer, int32_t numBytes) { in write() argument 39 int32_t bytesLeft = numBytes; in write() 72 return numBytes - bytesLeft; in write()
|
/external/deqp/framework/delibs/depool/ |
D | deMemPool.c | 426 DE_INLINE void* deMemPool_allocInternal (deMemPool* pool, size_t numBytes, deUint32 alignBytes) in deMemPool_allocInternal() argument 442 void* ptr = deAlignedMalloc(numBytes, alignBytes); in deMemPool_allocInternal() 466 if (numBytes + alignPadding > (size_t)(curPage->capacity - curPage->bytesAllocated)) in deMemPool_allocInternal() 470 …int newPageCapacity = deMax32(deMin32(2*curPage->capacity, MAX_PAGE_SIZE), ((int)numBytes)+maxAl… in deMemPool_allocInternal() 485 DE_ASSERT(numBytes + alignPadding <= (size_t)curPage->capacity); in deMemPool_allocInternal() 488 curPage->bytesAllocated += (int)(numBytes + alignPadding); in deMemPool_allocInternal() 499 void* deMemPool_alloc (deMemPool* pool, size_t numBytes) in deMemPool_alloc() argument 503 DE_ASSERT(numBytes > 0); in deMemPool_alloc() 504 ptr = deMemPool_allocInternal(pool, numBytes, DE_POOL_DEFAULT_ALLOC_ALIGNMENT); in deMemPool_alloc() 517 void* deMemPool_alignedAlloc (deMemPool* pool, size_t numBytes, deUint32 alignBytes) in deMemPool_alignedAlloc() argument [all …]
|