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

  /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...]
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringBuilder.cpp 89 allocateBuffer(m_buffer->characters8(), m_buffer->length());
91 allocateBuffer(m_buffer->characters16(), m_buffer->length());
116 void StringBuilder::allocateBuffer(const LChar* currentCharacters, unsigned requiredLength)
130 void StringBuilder::allocateBuffer(const UChar* currentCharacters, unsigned requiredLength)
172 allocateBuffer(m_buffer->characters8(), requiredLength);
187 allocateBuffer(m_buffer->characters16(), requiredLength);
205 allocateBuffer(nullPlaceholder, newCapacity);
207 allocateBuffer(m_string.characters8(), newCapacity);
209 allocateBuffer(m_string.characters16(), newCapacity);
251 allocateBuffer(m_length ? m_string.getCharacters<CharType>() : 0, expandedCapacity(capacity(), requiredLength))
    [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 373 status_t OMX::allocateBuffer(
376 return findInstance(node)->allocateBuffer(
OMXNodeInstance.cpp 688 status_t OMXNodeInstance::allocateBuffer(
  /frameworks/av/media/libstagefright/
OMXClient.cpp 100 virtual status_t allocateBuffer(
324 status_t MuxOMX::allocateBuffer(
327 return getOMX(node)->allocateBuffer(
  /external/chromium_org/third_party/WebKit/Source/wtf/
Vector.h 258 void allocateBuffer(size_t newCapacity)
315 allocateBuffer(capacity);
346 using Base::allocateBuffer;
375 Base::allocateBuffer(capacity);
401 void allocateBuffer(size_t newCapacity)
405 Base::allocateBuffer(newCapacity);
610 using Base::allocateBuffer;
780 // On 64-bit, the "expanded" integer is 32-bit, and any encroachment above 2^32 will fail allocation in allocateBuffer().
846 Base::allocateBuffer(newCapacity);
857 Base::allocateBuffer(initialCapacity)
    [all...]
  /frameworks/av/media/libmedia/
IOMX.cpp 371 virtual status_t allocateBuffer(
817 status_t err = allocateBuffer(
  /libcore/harmony-tests/src/test/java/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);