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.cpp125 size_t bitcodeSize,
127 rsAssert(bitcode && bitcodeSize);
134 size_t nwritten = fwrite(bitcode, 1, bitcodeSize, bcfile);
136 if (nwritten != bitcodeSize) {
137 ALOGE("Could not write %zu bytes to %s", bitcodeSize,
201 uint32_t constructBuildChecksum(uint8_t const *bitcode, size_t bitcodeSize, argument
207 if (bitcode != nullptr && bitcodeSize > 0) {
208 checksum = adler32(checksum, bitcode, bitcodeSize);
293 uint8_t const *bitcode, size_t bitcodeSize,
296 // bitcode, bitcodeSize, flag
123 compileBitcode(const std::string &bcFileName, const char *bitcode, size_t bitcodeSize, std::vector<const char *> &compileArguments) argument
292 init(char const *resName, char const *cacheDir, uint8_t const *bitcode, size_t bitcodeSize, uint32_t flags, char const *bccPluginName) argument
444 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.cpp87 const char *bitcode, size_t bitcodeSize) {
88 rsAssert(bitcode && bitcodeSize);
97 writeBytes(bcFileName.c_str(), bitcode, bitcodeSize);
687 size_t bitcodeSize, uint32_t flags) {
691 script, resName, cacheDir, bitcode, bitcodeSize, flags));
700 new bcinfo::MetadataExtractor((const char *)bitcode, bitcodeSize));
707 compileBitcode(resName, cacheDir, (const char *)bitcode, bitcodeSize);
86 compileBitcode(const char *resName, const char *cacheDir, const char *bitcode, size_t bitcodeSize) argument
685 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.h148 uint8_t const *bitcode, size_t bitcodeSize,
/frameworks/compile/libbcc/tools/bcc/
H A DMain.cpp324 size_t bitcodeSize = input_data->getBufferSize(); local
329 bitcode, bitcodeSize,
340 bitcode, bitcodeSize);
/frameworks/rs/
H A Drs_hal.h158 size_t bitcodeSize,

Completed in 196 milliseconds