Searched defs:bitcodeSize (Results 1 - 9 of 9) sorted by relevance

/frameworks/compile/libbcc/bcinfo/
H A DBitcodeWrapper.cpp31 BitcodeWrapper::BitcodeWrapper(const char *bitcode, size_t bitcodeSize) argument
33 mBitcodeSize(bitcodeSize),
H A DBitcodeTranslator.cpp71 BitcodeTranslator::BitcodeTranslator(const char *bitcode, size_t bitcodeSize, argument
73 : mBitcode(bitcode), mBitcodeSize(bitcodeSize), mTranslatedBitcode(nullptr),
H A DMetadataExtractor.cpp92 MetadataExtractor::MetadataExtractor(const char *bitcode, size_t bitcodeSize) argument
93 : mModule(nullptr), mBitcode(bitcode), mBitcodeSize(bitcodeSize),
101 BitcodeWrapper wrapper(bitcode, bitcodeSize);
/frameworks/compile/libbcc/include/bcinfo/
H A DBitcodeWrapper.h65 * \param bitcodeSize - length of \p bitcode string (in bytes).
67 BitcodeWrapper(const char *bitcode, size_t bitcodeSize);
120 * \param bitcodeSize - size of bitcode in bytes.
128 size_t bitcodeSize, uint32_t targetAPI, uint32_t compilerVersion,
137 wrapper->BitcodeSize = bitcodeSize;
127 writeAndroidBitcodeWrapper(AndroidBitcodeWrapper *wrapper, size_t bitcodeSize, uint32_t targetAPI, uint32_t compilerVersion, uint32_t optimizationLevel) argument
/frameworks/compile/libbcc/bcinfo/tools/
H A Dmain.cpp242 size_t bitcodeSize = statInFile.st_size; local
244 *bitcode = (const char*) calloc(1, bitcodeSize + 1);
245 size_t nread = fread((void*) *bitcode, 1, bitcodeSize, in);
247 if (nread != bitcodeSize)
271 size_t bitcodeSize = readBitcode(&bitcode); local
275 bcinfo::BitcodeWrapper bcWrapper((const char *)bitcode, bitcodeSize);
292 BT.reset(new bcinfo::BitcodeTranslator(bitcode, bitcodeSize, version));
/frameworks/compile/libbcc/tools/bcc/
H A DMain.cpp351 size_t bitcodeSize = input_data->getBufferSize(); local
356 bitcode, bitcodeSize,
367 bitcode, bitcodeSize);
/frameworks/rs/driver/
H A DrsdBcc.cpp43 size_t bitcodeSize,
48 bitcodeSize, flags);
38 rsdScriptInit(const Context *rsc, ScriptC *script, char const *resName, char const *cacheDir, uint8_t const *bitcode, size_t bitcodeSize, uint32_t flags) argument
/frameworks/rs/cpu_ref/
H A DrsCpuCore.cpp569 uint8_t const *bitcode, size_t bitcodeSize,
573 if (!i->init(resName, cacheDir, bitcode, bitcodeSize, flags
567 createScript(const ScriptC *s, char const *resName, char const *cacheDir, uint8_t const *bitcode, size_t bitcodeSize, uint32_t flags) argument
H A DrsCpuScript.cpp130 size_t bitcodeSize,
132 rsAssert(bitcode && bitcodeSize);
139 size_t nwritten = fwrite(bitcode, 1, bitcodeSize, bcfile);
141 if (nwritten != bitcodeSize) {
142 ALOGE("Could not write %zu bytes to %s", bitcodeSize,
206 uint32_t constructBuildChecksum(uint8_t const *bitcode, size_t bitcodeSize, argument
212 if (bitcode != nullptr && bitcodeSize > 0) {
213 checksum = adler32(checksum, bitcode, bitcodeSize);
304 uint8_t const *bitcode, size_t bitcodeSize,
307 // bitcode, bitcodeSize, flag
128 compileBitcode(const std::string &bcFileName, const char *bitcode, size_t bitcodeSize, std::vector<const char *> &compileArguments) argument
303 init(char const *resName, char const *cacheDir, uint8_t const *bitcode, size_t bitcodeSize, uint32_t flags, char const *bccPluginName) argument
461 findCoreLib(const bcinfo::MetadataExtractor& ME, const char* bitcode, size_t bitcodeSize) argument
[all...]

Completed in 927 milliseconds