Home
last modified time | relevance | path

Searched refs:actualWrapperLen (Results 1 – 2 of 2) sorted by relevance

/frameworks/compile/libbcc/bcinfo/
DBitcodeTranslator.cpp153 size_t actualWrapperLen = writeAndroidBitcodeWrapper( in translate() local
156 if (!actualWrapperLen) { in translate()
161 mTranslatedBitcodeSize = actualWrapperLen + Buffer.size(); in translate()
163 memcpy(c, &wrapper, actualWrapperLen); in translate()
164 memcpy(c + actualWrapperLen, Buffer.c_str(), Buffer.size()); in translate()
/frameworks/compile/slang/
Dslang_backend.cpp238 size_t actualWrapperLen = bcinfo::writeAndroidBitcodeWrapper( in WrapBitcode() local
242 slangAssert(actualWrapperLen > 0); in WrapBitcode()
245 FormattedOutStream.write(reinterpret_cast<char*>(&wrapper), actualWrapperLen); in WrapBitcode()