/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/ |
D | ByteBufferHelper.java | 33 ByteBuffer oldBuffer = nuSamples.remove(lastIndex); in mergeAdjacentBuffers() local 34 …ByteBuffer nu = ByteBuffer.wrap(buffer.array(), oldBuffer.arrayOffset(), oldBuffer.limit() + buffe… in mergeAdjacentBuffers() 41 ByteBuffer oldBuffer = nuSamples.get(lastIndex); in mergeAdjacentBuffers() local 42 oldBuffer.limit(buffer.limit() + oldBuffer.limit()); in mergeAdjacentBuffers()
|
D | DefaultMp4Builder.java | 561 ByteBuffer oldBuffer = nuSamples.remove(lastIndex); in unifyAdjacentBuffers() local 562 …ByteBuffer nu = ByteBuffer.wrap(buffer.array(), oldBuffer.arrayOffset(), oldBuffer.limit() + buffe… in unifyAdjacentBuffers() 569 ByteBuffer oldBuffer = nuSamples.get(lastIndex); in unifyAdjacentBuffers() local 570 oldBuffer.limit(buffer.limit() + oldBuffer.limit()); in unifyAdjacentBuffers()
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
D | imports.c | 193 _mesa_align_realloc(void *oldBuffer, size_t oldSize, size_t newSize, in _mesa_align_realloc() argument 198 return _aligned_realloc(oldBuffer, newSize, alignment); in _mesa_align_realloc() 202 if (newBuf && oldBuffer && copySize > 0) { in _mesa_align_realloc() 203 memcpy(newBuf, oldBuffer, copySize); in _mesa_align_realloc() 205 if (oldBuffer) in _mesa_align_realloc() 206 _mesa_align_free(oldBuffer); in _mesa_align_realloc() 215 _mesa_realloc(void *oldBuffer, size_t oldSize, size_t newSize) in _mesa_realloc() argument 219 if (newBuffer && oldBuffer && copySize > 0) in _mesa_realloc() 220 memcpy(newBuffer, oldBuffer, copySize); in _mesa_realloc() 221 if (oldBuffer) in _mesa_realloc() [all …]
|
D | imports.h | 551 _mesa_align_realloc(void *oldBuffer, size_t oldSize, size_t newSize, 561 _mesa_realloc( void *oldBuffer, size_t oldSize, size_t newSize );
|
/external/mesa3d/src/mesa/main/ |
D | imports.c | 193 _mesa_align_realloc(void *oldBuffer, size_t oldSize, size_t newSize, in _mesa_align_realloc() argument 198 return _aligned_realloc(oldBuffer, newSize, alignment); in _mesa_align_realloc() 202 if (newBuf && oldBuffer && copySize > 0) { in _mesa_align_realloc() 203 memcpy(newBuf, oldBuffer, copySize); in _mesa_align_realloc() 205 if (oldBuffer) in _mesa_align_realloc() 206 _mesa_align_free(oldBuffer); in _mesa_align_realloc() 215 _mesa_realloc(void *oldBuffer, size_t oldSize, size_t newSize) in _mesa_realloc() argument 219 if (newBuffer && oldBuffer && copySize > 0) in _mesa_realloc() 220 memcpy(newBuffer, oldBuffer, copySize); in _mesa_realloc() 221 if (oldBuffer) in _mesa_realloc() [all …]
|
D | imports.h | 549 _mesa_align_realloc(void *oldBuffer, size_t oldSize, size_t newSize, 559 _mesa_realloc( void *oldBuffer, size_t oldSize, size_t newSize );
|
/external/icu/icu4c/source/i18n/ |
D | collationiterator.cpp | 61 oldBuffer.remove(); in clear() 66 UBool isEmpty() const { return oldBuffer.isEmpty(); } in isEmpty() 68 UBool hasNext() const { return pos < oldBuffer.length(); } in hasNext() 72 UChar32 c = oldBuffer.char32At(pos); in next() 87 int32_t length = oldBuffer.length(); in backwardNumCodePoints() 96 pos = oldBuffer.moveIndex32(length, beyond - n); in backwardNumCodePoints() 101 pos = oldBuffer.moveIndex32(pos, -n); in backwardNumCodePoints() 120 oldBuffer.replace(0, pos, newBuffer, 0, skipLengthAtMatch); in replaceMatch() 130 UnicodeString oldBuffer; member in SkippedState
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
D | Deque.h | 332 T* oldBuffer = m_buffer.buffer(); in expandCapacity() local 335 … TypeOperations::move(oldBuffer + m_start, oldBuffer + m_end, m_buffer.buffer() + m_start); in expandCapacity() 337 TypeOperations::move(oldBuffer, oldBuffer + m_end, m_buffer.buffer()); in expandCapacity() 339 … TypeOperations::move(oldBuffer + m_start, oldBuffer + oldCapacity, m_buffer.buffer() + newStart); in expandCapacity() 342 m_buffer.deallocateBuffer(oldBuffer); in expandCapacity()
|
D | Vector.h | 954 T* oldBuffer = begin(); 957 TypeOperations::move(oldBuffer, oldEnd, begin()); 958 Base::deallocateBuffer(oldBuffer); 979 T* oldBuffer = begin(); 987 if (begin() != oldBuffer) 988 TypeOperations::move(oldBuffer, oldEnd, begin()); 993 Base::deallocateBuffer(oldBuffer);
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InjectedScriptCanvasModuleSource.js | 1969 var oldBuffer = /** @type {!WebGLBuffer} */ (gl.getParameter(bindingParameter)); 1970 if (oldBuffer !== buffer) 1976 if (oldBuffer !== buffer) 1977 gl.bindBuffer(target, oldBuffer);
|