Searched defs:varCount (Results 1 - 3 of 3) sorted by relevance

/frameworks/compile/libbcc/lib/ExecutionEngine/
H A DScriptCached.cpp38 size_t varCount = getExportVarCount(); local
40 if (varCount > varListSize) {
41 varCount = varListSize;
44 memcpy(varList, mpExportVars->cached_addr_list, sizeof(void *) * varCount);
H A DScriptCompiled.cpp29 size_t varCount = getExportVarCount(); local
31 if (varCount > varListSize) {
32 varCount = varListSize;
37 I != E && varCount > 0; ++I, --varCount) {
H A DMCCacheWriter.cpp218 size_t varCount = mpOwner->getExportVarCount(); local
219 size_t listSize = sizeof(MCO_String_Ptr) + sizeof(size_t) * varCount;
231 list->count = static_cast<size_t>(varCount);
234 for (size_t i = 0; i < varCount; ++i) {

Completed in 5447 milliseconds