Searched defs:dep (Results 1 - 4 of 4) sorted by relevance
/frameworks/compile/libbcc/lib/ExecutionEngine/ |
H A D | MCCacheReader.cpp | 291 map<string, pair<uint32_t, unsigned char const *> >::iterator dep; local 293 dep = mDependencies.begin(); 294 for (size_t i = 0; i < mpCachedDependTable->count; ++i, ++dep) { 295 string const &depName = dep->first; 296 uint32_t depType = dep->second.first; 297 unsigned char const *depSHA1 = dep->second.second;
|
H A D | MCCacheWriter.cpp | 127 OBCC_Dependency *dep = &tab->table[i]; local 129 dep->res_name_strp_index = addString(I->first.c_str(), I->first.size()); 130 dep->res_type = I->second.first; 131 memcpy(dep->sha1, I->second.second, 20);
|
/frameworks/compile/libbcc/lib/ExecutionEngine/OldJIT/ |
H A D | CacheReader.cpp | 304 map<string, pair<uint32_t, unsigned char const *> >::iterator dep; local 306 dep = mDependencies.begin(); 307 for (size_t i = 0; i < mpCachedDependTable->count; ++i, ++dep) { 308 string const &depName = dep->first; 309 uint32_t depType = dep->second.first; 310 unsigned char const *depSHA1 = dep->second.second;
|
H A D | CacheWriter.cpp | 138 OBCC_Dependency *dep = &tab->table[i]; local 140 dep->res_name_strp_index = addString(I->first.c_str(), I->first.size()); 141 dep->res_type = I->second.first; 142 memcpy(dep->sha1, I->second.second, 20);
|
Completed in 437 milliseconds