Searched refs:bitcodeSize (Results 1 - 18 of 18) sorted by relevance

/frameworks/compile/libbcc/bcinfo/
H A DBitcodeWrapper.cpp28 BitcodeWrapper::BitcodeWrapper(const char *bitcode, size_t bitcodeSize) argument
30 mBitcodeSize(bitcodeSize),
H A DBitcodeTranslator.cpp78 BitcodeTranslator::BitcodeTranslator(const char *bitcode, size_t bitcodeSize, argument
80 : mBitcode(bitcode), mBitcodeSize(bitcodeSize), mTranslatedBitcode(nullptr),
H A DMetadataExtractor.cpp180 MetadataExtractor::MetadataExtractor(const char *bitcode, size_t bitcodeSize) argument
181 : mModule(nullptr), mBitcode(bitcode), mBitcodeSize(bitcodeSize),
192 BitcodeWrapper wrapper(bitcode, bitcodeSize);
/frameworks/compile/libbcc/bcinfo/include/bcinfo/
H A DBitcodeTranslator.h37 * \param bitcodeSize - length of \p bitcode string (in bytes).
40 BitcodeTranslator(const char *bitcode, size_t bitcodeSize,
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
H A DMetadataExtractor.h143 * \param bitcodeSize - length of \p bitcode string (in bytes).
145 MetadataExtractor(const char *bitcode, size_t bitcodeSize);
/frameworks/rs/cpu_ref/
H A DrsCpuScript.h43 uint8_t const *bitcode, size_t bitcodeSize, uint32_t flags,
120 size_t bitcodeSize);
152 uint32_t constructBuildChecksum(uint8_t const *bitcode, size_t bitcodeSize,
H A DrsCpuScript.cpp131 size_t bitcodeSize,
133 rsAssert(bitcode && bitcodeSize);
140 size_t nwritten = fwrite(bitcode, 1, bitcodeSize, bcfile);
142 if (nwritten != bitcodeSize) {
143 ALOGE("Could not write %zu bytes to %s", bitcodeSize,
208 uint32_t constructBuildChecksum(uint8_t const *bitcode, size_t bitcodeSize, argument
214 if (bitcode != nullptr && bitcodeSize > 0) {
215 checksum = adler32(checksum, bitcode, bitcodeSize);
300 uint8_t const *bitcode, size_t bitcodeSize,
303 // bitcode, bitcodeSize, flag
129 compileBitcode(const std::string &bcFileName, const char *bitcode, size_t bitcodeSize, std::vector<const char *> &compileArguments) argument
299 init(char const *resName, char const *cacheDir, uint8_t const *bitcode, size_t bitcodeSize, uint32_t flags, char const *bccPluginName) argument
451 findCoreLib(const bcinfo::MetadataExtractor& ME, const char* bitcode, size_t bitcodeSize) argument
[all...]
H A DrsCpuCore.h175 uint8_t const *bitcode, size_t bitcodeSize, uint32_t flags) override;
H A Drsd_cpu.h129 uint8_t const *bitcode, size_t bitcodeSize,
H A DrsCpuCore.cpp941 uint8_t const *bitcode, size_t bitcodeSize,
945 if (!i->init(resName, cacheDir, bitcode, bitcodeSize, flags
939 createScript(const ScriptC *s, char const *resName, char const *cacheDir, uint8_t const *bitcode, size_t bitcodeSize, uint32_t flags) argument
/frameworks/compile/libbcc/bcinfo/tools/
H A Dmain.cpp275 size_t bitcodeSize = statInFile.st_size; local
277 *bitcode = (const char*) calloc(1, bitcodeSize + 1);
278 size_t nread = fread((void*) *bitcode, 1, bitcodeSize, in);
280 if (nread != bitcodeSize)
304 size_t bitcodeSize = readBitcode(&bitcode); local
308 bcinfo::BitcodeWrapper bcWrapper((const char *)bitcode, bitcodeSize);
325 BT.reset(new bcinfo::BitcodeTranslator(bitcode, bitcodeSize, version));
/frameworks/rs/driver/
H A DrsdBcc.cpp42 size_t bitcodeSize,
47 bitcodeSize, flags);
37 rsdScriptInit(const Context *rsc, ScriptC *script, char const *resName, char const *cacheDir, uint8_t const *bitcode, size_t bitcodeSize, uint32_t flags) argument
H A DrsdBcc.h25 uint8_t const *bitcode, size_t bitcodeSize, uint32_t flags);
/frameworks/rs/rsov/driver/
H A DrsovScript.cpp96 const char *bitcode, size_t bitcodeSize,
98 rsAssert(bitcode && bitcodeSize);
107 writeBytes(bcFileName.c_str(), bitcode, bitcodeSize);
763 size_t bitcodeSize, uint32_t flags) {
767 new bcinfo::MetadataExtractor((const char *)bitcode, bitcodeSize));
775 compileBitcode(resName, cacheDir, (const char *)bitcode, bitcodeSize, modifiedBitcode);
806 script, resName, cacheDir, bitcode, bitcodeSize, flags));
95 compileBitcode(const char *resName, const char *cacheDir, const char *bitcode, size_t bitcodeSize, std::vector<uint8_t> &modifiedBitcode) argument
761 rsovScriptInit(const Context *rsc, ScriptC *script, char const *resName, char const *cacheDir, uint8_t const *bitcode, size_t bitcodeSize, uint32_t flags) argument
H A DrsovScript.h157 uint8_t const *bitcode, size_t bitcodeSize,
/frameworks/compile/libbcc/tools/bcc/
H A DMain.cpp350 size_t bitcodeSize = input_data->getBufferSize(); local
355 bitcode, bitcodeSize,
366 bitcode, bitcodeSize);
/frameworks/rs/
H A Drs_hal.h158 size_t bitcodeSize,

Completed in 320 milliseconds