HomeSort by relevance Sort by last modified time
    Searched full:keep_funcs (Results 1 - 1 of 1) sorted by null

  /frameworks/compile/libbcc/lib/
Compiler.cpp 422 // functions. keep_funcs keeps the names of these functions around
425 std::vector<std::string> keep_funcs; local
426 keep_funcs.reserve(exportForEachCount + exportReduceCount*4);
429 keep_funcs.push_back(std::string(exportForEachNameList[i]) + ".expand");
431 auto keepFuncsPushBackIfPresent = [&keep_funcs](const char *Name) {
432 if (Name) keep_funcs.push_back(Name);
435 keep_funcs.push_back(std::string(exportReduceList[i].mAccumulatorName) + ".expand");
438 keep_funcs.push_back(exportReduceList[i].mCombinerName);
440 keep_funcs.push_back(nameReduceCombinerFromAccumulator(exportReduceList[i].mAccumulatorName));
445 for (auto &symbol_name : keep_funcs) {
    [all...]

Completed in 2081 milliseconds