Home
last modified time | relevance | path

Searched refs:strPoolSize (Results 1 – 4 of 4) sorted by relevance

/frameworks/compile/libbcc/lib/Renderscript/
DRSInfo.cpp106 mHeader.strPoolSize = pStringPoolSize; in RSInfo()
107 mStringPool = new (std::nothrow) char [ mHeader.strPoolSize ]; in RSInfo()
110 "constructor (size: %u)!", mHeader.strPoolSize); in RSInfo()
112 ::memset(mStringPool, 0, mHeader.strPoolSize); in RSInfo()
126 mHeader.strPoolSize; in layout()
154 ALOGV("\tString pool size: %u", mHeader.strPoolSize); in dump()
213 if (pStrIdx >= mHeader.strPoolSize) { in getStringFromPool()
215 pStrIdx, mHeader.strPoolSize); in getStringFromPool()
224 if ((mStringPool + mHeader.strPoolSize) < pStr) { in getStringIdxInPool()
DRSInfoReader.cpp216 if (((header->headerSize + header->strPoolSize) > filesize) || in ReadFromFile()
228 result = new (std::nothrow) RSInfo(header->strPoolSize); in ReadFromFile()
240 if (header->strPoolSize > 0) { in ReadFromFile()
249 result->mHeader.strPoolSize); in ReadFromFile()
DRSInfoWriter.cpp167 if (static_cast<size_t>(pOutput.write(mStringPool, mHeader.strPoolSize)) in write()
168 != mHeader.strPoolSize) { in write()
/frameworks/compile/libbcc/include/bcc/Renderscript/
DRSInfo.h76 uint32_t strPoolSize; member