Home
last modified time | relevance | path

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

/frameworks/compile/libbcc/lib/Renderscript/
DRSInfo.cpp238 mHeader.strPoolSize = pStringPoolSize; in RSInfo()
239 mStringPool = new (std::nothrow) char [ mHeader.strPoolSize ]; in RSInfo()
242 "constructor (size: %u)!", mHeader.strPoolSize); in RSInfo()
254 mHeader.strPoolSize; in layout()
285 ALOGV("\tString pool size: %u", mHeader.strPoolSize); in dump()
340 if (pStrIdx >= mHeader.strPoolSize) { in getStringFromPool()
342 pStrIdx, mHeader.strPoolSize); in getStringFromPool()
351 if ((mStringPool + mHeader.strPoolSize) < pStr) { in getStringIdxInPool()
DRSInfoReader.cpp244 if (((header->headerSize + header->strPoolSize) > filesize) || in ReadFromFile()
257 result = new (std::nothrow) RSInfo(header->strPoolSize); in ReadFromFile()
269 if (header->strPoolSize > 0) { in ReadFromFile()
278 result->mHeader.strPoolSize); in ReadFromFile()
DRSInfoWriter.cpp190 if (static_cast<size_t>(pOutput.write(mStringPool, mHeader.strPoolSize)) in write()
191 != mHeader.strPoolSize) { in write()
/frameworks/compile/libbcc/include/bcc/Renderscript/
DRSInfo.h67 uint32_t strPoolSize; member