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

  /frameworks/compile/libbcc/lib/Renderscript/
RSInfo.cpp 106 mHeader.strPoolSize = pStringPoolSize;
107 mStringPool = new (std::nothrow) char [ mHeader.strPoolSize ];
110 "constructor (size: %u)!", mHeader.strPoolSize);
112 ::memset(mStringPool, 0, mHeader.strPoolSize);
126 mHeader.strPoolSize;
154 ALOGV("\tString pool size: %u", mHeader.strPoolSize);
213 if (pStrIdx >= mHeader.strPoolSize) {
215 pStrIdx, mHeader.strPoolSize);
224 if ((mStringPool + mHeader.strPoolSize) < pStr) {
RSInfoReader.cpp 216 if (((header->headerSize + header->strPoolSize) > filesize) ||
228 result = new (std::nothrow) RSInfo(header->strPoolSize);
240 if (header->strPoolSize > 0) {
249 result->mHeader.strPoolSize);
RSInfoWriter.cpp 167 if (static_cast<size_t>(pOutput.write(mStringPool, mHeader.strPoolSize))
168 != mHeader.strPoolSize) {
  /frameworks/compile/libbcc/include/bcc/Renderscript/
RSInfo.h 76 uint32_t strPoolSize;

Completed in 114 milliseconds