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

  /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 523 void* ANativeWindowDisplayAdapter::allocateBuffer(int width, int height, const char* format, int &bytes, int numBufs)
    [all...]
  /frameworks/av/media/libstagefright/omx/
SoftOMXComponent.cpp 54 mComponent->AllocateBuffer = AllocateBufferWrapper;
209 return me->allocateBuffer(buffer, portIndex, appPrivate, size);
298 OMX_ERRORTYPE SoftOMXComponent::allocateBuffer(
OMX.cpp 359 status_t OMX::allocateBuffer(
362 return findInstance(node)->allocateBuffer(
OMXNodeInstance.cpp 616 status_t OMXNodeInstance::allocateBuffer(
  /frameworks/av/media/libstagefright/
OMXClient.cpp 92 virtual status_t allocateBuffer(
295 status_t MuxOMX::allocateBuffer(
298 return getOMX(node)->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/av/media/libmedia/
IOMX.cpp 337 virtual status_t allocateBuffer(
721 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 190 milliseconds