HomeSort by relevance Sort by last modified time
    Searched refs:allocateBuffer (Results 1 - 25 of 27) sorted by null

1 2

  /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));
StringBuilder.h 125 void allocateBuffer(const UChar* currentCharacters, unsigned requiredLength);
  /frameworks/av/media/libstagefright/include/
SimpleSoftOMXComponent.h 114 virtual OMX_ERRORTYPE allocateBuffer(
OMX.h 88 virtual status_t allocateBuffer(
OMXNodeInstance.h 74 status_t allocateBuffer(
SoftOMXComponent.h 80 virtual OMX_ERRORTYPE allocateBuffer(
  /hardware/ti/omap4xxx/camera/
MemoryManager.cpp 46 void* MemoryManager::allocateBuffer(int width, int height, const char* format, int &bytes, int numBufs)
CameraHal.cpp     [all...]
ANativeWindowDisplayAdapter.cpp 523 void* ANativeWindowDisplayAdapter::allocateBuffer(int width, int height, const char* format, int &bytes, int numBufs)
    [all...]
  /hardware/ti/omap4xxx/camera/inc/
ANativeWindowDisplayAdapter.h 83 virtual void* allocateBuffer(int width, int height, const char* format, int &bytes, int numBufs);
CameraHal.h 492 virtual void* allocateBuffer(int width, int height, const char* format, int &bytes, int numBufs) = 0;
693 virtual void* allocateBuffer(int width, int height, const char* format, int &bytes, int numBufs);
892 // allocateBuffer
    [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(
SimpleSoftOMXComponent.cpp 238 OMX_ERRORTYPE SimpleSoftOMXComponent::allocateBuffer(
OMXNodeInstance.cpp 616 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...]
Deque.h 425 m_buffer.allocateBuffer(newCapacity);
  /frameworks/av/media/libstagefright/
OMXClient.cpp 92 virtual status_t allocateBuffer(
295 status_t MuxOMX::allocateBuffer(
298 return getOMX(node)->allocateBuffer(
  /frameworks/av/include/media/
IOMX.h 110 virtual status_t 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);
  /frameworks/av/media/libmedia/
IOMX.cpp 337 virtual status_t allocateBuffer(
721 status_t err = allocateBuffer(
  /hardware/ti/omap4xxx/camera/OMXCameraAdapter/
OMXFocus.cpp 704 focusAreas = (OMX_ALGOAREASTYPE**) memMgr.allocateBuffer(0, 0, NULL, areasSize, 1);
OMXCapabilities.cpp     [all...]
OMXExif.cpp 275 memmgr_buf_array = (OMX_U8 **)memMgr.allocateBuffer(0, 0, NULL, buf_size, 1);
OMX3A.cpp     [all...]

Completed in 474 milliseconds

1 2