HomeSort by relevance Sort by last modified time
    Searched refs:allocLen (Results 1 - 3 of 3) sorted by null

  /device/generic/goldfish-opengl/host/include/libOpenglRender/
IOStream.h 54 int allocLen = m_bufsize < len ? len : m_bufsize;
55 m_buf = (unsigned char *)allocBuffer(allocLen);
57 ERR("Alloc (%u bytes) failed\n", allocLen);
60 m_bufsize = m_free = allocLen;
  /external/pdfium/core/fxcrt/
string_data_template.h 102 StringDataTemplate(size_t dataLen, size_t allocLen)
103 : m_nRefs(0), m_nDataLength(dataLen), m_nAllocLength(allocLen) {
105 ASSERT(dataLen <= allocLen);
  /frameworks/base/libs/androidfw/
Asset.cpp 625 long allocLen;
629 allocLen = mLength;
631 allocLen = 1;
633 buf = new unsigned char[allocLen];
635 ALOGE("alloc of %ld bytes failed\n", (long) allocLen);
639 ALOGV("Asset %p allocating buffer size %d (smaller than threshold)", this, (int)allocLen);

Completed in 126 milliseconds