OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
);
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
Asset.java
887
int
allocLen
;
891
allocLen
= toIntExact(mLength);
893
allocLen
= 1;
895
buf = new byte[
allocLen
];
897
ALOGE("alloc of %ld bytes failed\n", (long)
allocLen
);
901
ALOGV("Asset %s allocating buffer size %d (smaller than threshold)", this, (int)
allocLen
);
[
all
...]
Completed in 1045 milliseconds