HomeSort by relevance Sort by last modified time
    Searched defs:bitcode (Results 1 - 2 of 2) sorted by null

  /frameworks/compile/libbcc/lib/ExecutionEngine/
SourceInfo.h 44 // use module to store the pointer to parsed bitcode.
49 char const *bitcode; member in struct:bcc::SourceInfo::__anon15744::__anon15745
69 char const *bitcode,
  /frameworks/compile/libbcc/bcinfo/tools/
main.cpp 38 // information about a supplied bitcode input file.
110 static size_t readBitcode(const char **bitcode) {
135 *bitcode = (const char*) calloc(1, bitcodeSize + 1);
136 size_t nread = fread((void*) *bitcode, 1, bitcodeSize, in);
146 static void releaseBitcode(const char **bitcode) {
147 if (bitcode && *bitcode) {
148 free((void*) *bitcode);
149 *bitcode = NULL;
161 const char *bitcode = NULL local
    [all...]

Completed in 60 milliseconds