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

/frameworks/compile/libbcc/bcinfo/
H A DBitcodeWrapper.cpp31 BitcodeWrapper::BitcodeWrapper(const char *bitcode, size_t bitcodeSize) argument
33 mBitcodeEnd(bitcode + bitcodeSize - 1), mBitcodeSize(bitcodeSize),
H A DBitcodeTranslator.cpp68 BitcodeTranslator::BitcodeTranslator(const char *bitcode, size_t bitcodeSize, argument
70 : mBitcode(bitcode), mBitcodeSize(bitcodeSize), mTranslatedBitcode(NULL),
H A DMetadataExtractor.cpp61 MetadataExtractor::MetadataExtractor(const char *bitcode, size_t bitcodeSize) argument
62 : mModule(NULL), mBitcode(bitcode), mBitcodeSize(bitcodeSize),
69 BitcodeWrapper wrapper(bitcode, bitcodeSize);
/frameworks/compile/libbcc/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.h66 * \param bitcodeSize - length of \p bitcode string (in bytes).
68 BitcodeWrapper(const char *bitcode, size_t bitcodeSize);
121 * \param bitcodeSize - size of bitcode in bytes.
129 size_t bitcodeSize, uint32_t targetAPI, uint32_t compilerVersion,
138 wrapper->BitcodeSize = bitcodeSize;
128 writeAndroidBitcodeWrapper(AndroidBitcodeWrapper *wrapper, size_t bitcodeSize, uint32_t targetAPI, uint32_t compilerVersion, uint32_t optimizationLevel) argument
H A DMetadataExtractor.h75 * \param bitcodeSize - length of \p bitcode string (in bytes).
77 MetadataExtractor(const char *bitcode, size_t bitcodeSize);
/frameworks/compile/libbcc/bcinfo/tools/
H A Dmain.cpp166 size_t bitcodeSize = statInFile.st_size; local
168 *bitcode = (const char*) calloc(1, bitcodeSize + 1);
169 size_t nread = fread((void*) *bitcode, 1, bitcodeSize, in);
171 if (nread != bitcodeSize)
196 size_t bitcodeSize = readBitcode(&bitcode); local
200 bcinfo::BitcodeWrapper bcWrapper((const char *)bitcode, bitcodeSize);
213 new bcinfo::BitcodeTranslator(bitcode, bitcodeSize, version);
/frameworks/compile/libbcc/lib/ExecutionEngine/
H A DSourceInfo.cpp44 size_t bitcodeSize,
55 result->buffer.bitcodeSize = bitcodeSize;
69 calcSHA1(result->sha1, bitcode, bitcodeSize);
135 llvm::StringRef(buffer.bitcode, buffer.bitcodeSize), "", false));
139 buffer.bitcode, (unsigned long)buffer.bitcodeSize);
42 createFromBuffer(char const *resName, char const *bitcode, size_t bitcodeSize, unsigned long flags) argument
H A DSourceInfo.h54 size_t bitcodeSize; member in struct:bcc::SourceInfo::__anon1237::__anon1238
72 size_t bitcodeSize,
H A Dbcc.cpp80 size_t bitcodeSize,
83 return unwrap(script)->addSourceBC(0, resName, bitcode, bitcodeSize, flags);
107 size_t bitcodeSize,
110 return unwrap(script)->addSourceBC(1, resName, bitcode, bitcodeSize, flags);
77 bccReadBC(BCCScriptRef script, char const *resName, char const *bitcode, size_t bitcodeSize, unsigned long flags) argument
104 bccLinkBC(BCCScriptRef script, char const *resName, char const *bitcode, size_t bitcodeSize, unsigned long flags) argument
H A DScript.cpp78 size_t bitcodeSize,
99 bcinfo::BitcodeWrapper wrapper(bitcode, bitcodeSize);
102 bitcode, bitcodeSize,
75 addSourceBC(size_t idx, char const *resName, const char *bitcode, size_t bitcodeSize, unsigned long flags) argument
H A DScript.h117 size_t bitcodeSize,
/frameworks/compile/libbcc/include/bcc/
H A Dbcc.h88 size_t bitcodeSize,
103 size_t bitcodeSize,
/frameworks/rs/driver/
H A DrsdBcc.h26 uint8_t const *bitcode, size_t bitcodeSize, uint32_t flags);
H A DrsdBcc.cpp72 size_t bitcodeSize,
74 //ALOGE("rsdScriptCreate %p %p %p %p %i %i %p", rsc, resName, cacheDir, bitcode, bitcodeSize, flags, lookupFunc);
95 drv->mScriptTextLength = bitcodeSize;
67 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/
H A Drs_hal.h79 size_t bitcodeSize,

Completed in 188 milliseconds