HomeSort by relevance Sort by last modified time
    Searched refs:mpHeader (Results 1 - 4 of 4) sorted by null

  /frameworks/compile/libbcc/lib/ExecutionEngine/OldJIT/
CacheReader.cpp 46 if (mpHeader) { free(mpHeader); }
131 mpHeader = (OBCC_Header *)malloc(sizeof(OBCC_Header));
132 if (!mpHeader) {
137 if (mInfoFile->read((char *)mpHeader, sizeof(OBCC_Header)) !=
145 if (mpHeader->libRS_threadable) {
154 if (memcmp(mpHeader->magic, OBCC_MAGIC, 4) != 0) {
159 if (memcmp(mpHeader->version, OBCC_VERSION, 4) != 0) {
160 mpHeader->version[4 - 1] = '\0'; // ensure c-style string terminated
162 OBCC_VERSION, mpHeader->version)
    [all...]
CacheReader.h 43 OBCC_Header *mpHeader;
57 : mObjFile(NULL), mInfoFile(NULL), mInfoFileSize(0), mpHeader(NULL),
  /frameworks/compile/libbcc/lib/ExecutionEngine/
MCCacheReader.cpp 47 if (mpHeader) { free(mpHeader); }
127 mpHeader = (MCO_Header *)malloc(sizeof(MCO_Header));
128 if (!mpHeader) {
133 if (mInfoFile->read(reinterpret_cast<char *>(mpHeader), sizeof(MCO_Header)) !=
141 if (mpHeader->libRS_threadable) {
150 if (memcmp(mpHeader->magic, OBCC_MAGIC, 4) != 0) {
155 if (memcmp(mpHeader->version, OBCC_VERSION, 4) != 0) {
156 mpHeader->version[4 - 1] = '\0'; // ensure c-style string terminated
158 OBCC_VERSION, mpHeader->version)
    [all...]
MCCacheReader.h 42 MCO_Header *mpHeader;
62 : mObjFile(NULL), mInfoFile(NULL), mInfoFileSize(0), mpHeader(NULL),

Completed in 212 milliseconds