HomeSort by relevance Sort by last modified time
    Searched defs:allocateBuffer (Results 1 - 11 of 11) sorted by null

  /external/collada/src/dae/
daeStringTable.cpp 15 //allocateBuffer();
18 daeString daeStringTable::allocateBuffer()
36 buf = allocateBuffer();
  /external/webkit/Source/JavaScriptCore/wtf/text/
StringBuilder.cpp 65 allocateBuffer(m_buffer->characters(), m_buffer->length());
84 allocateBuffer(m_buffer->characters(), newCapacity);
88 allocateBuffer(m_string.characters(), newCapacity);
94 void StringBuilder::allocateBuffer(const UChar* currentCharacters, unsigned requiredLength)
129 allocateBuffer(m_buffer->characters(), std::max(requiredLength, m_buffer->length() * 2));
132 allocateBuffer(m_string.characters(), std::max(requiredLength, requiredLength * 2));
  /hardware/ti/omap4xxx/camera/
MemoryManager.cpp 46 void* MemoryManager::allocateBuffer(int width, int height, const char* format, int &bytes, int numBufs)
ANativeWindowDisplayAdapter.cpp 519 void* ANativeWindowDisplayAdapter::allocateBuffer(int width, int height, const char* format, int &bytes, int numBufs)
    [all...]
  /external/skia/src/images/
SkImageDecoder_libpvjpeg.cpp 52 virtual void allocateBuffer(uint8* &buffer, int32 buffersize) {
  /frameworks/base/media/libstagefright/omx/
SoftOMXComponent.cpp 54 mComponent->AllocateBuffer = AllocateBufferWrapper;
209 return me->allocateBuffer(buffer, portIndex, appPrivate, size);
298 OMX_ERRORTYPE SoftOMXComponent::allocateBuffer(
OMX.cpp 341 status_t OMX::allocateBuffer(
344 return findInstance(node)->allocateBuffer(
OMXNodeInstance.cpp 533 status_t OMXNodeInstance::allocateBuffer(
  /external/webkit/Source/JavaScriptCore/wtf/
Vector.h 277 void allocateBuffer(size_t newCapacity)
362 allocateBuffer(capacity);
378 using Base::allocateBuffer;
407 Base::allocateBuffer(capacity);
415 void allocateBuffer(size_t newCapacity)
419 Base::allocateBuffer(newCapacity);
882 m_buffer.allocateBuffer(newCapacity);
909 m_buffer.allocateBuffer(initialCapacity);
924 m_buffer.allocateBuffer(newCapacity);
    [all...]
  /frameworks/base/media/libmedia/
IOMX.cpp 297 virtual status_t allocateBuffer(
647 status_t err = allocateBuffer(
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/
CharBufferTest.java 1057 CharBuffer allocateBuffer = CharBuffer.allocate(1);
1058 CharBuffer charBufferB = CharBuffer.wrap(allocateBuffer);
1061 allocateBuffer.append(allocateBuffer);
1062 charBufferB = CharBuffer.wrap(allocateBuffer);

Completed in 182 milliseconds