Home
last modified time | relevance | path

Searched refs:LCM (Results 1 – 2 of 2) sorted by relevance

/external/clang/lib/StaticAnalyzer/Core/
DBugReporter.cpp157 LocationContextMap &LCM) { in removeUnneededCalls() argument
171 assert(LCM.count(&call->path)); in removeUnneededCalls()
172 if (R->isInteresting(LCM[&call->path])) { in removeUnneededCalls()
177 if (!removeUnneededCalls(call->path, R, LCM)) in removeUnneededCalls()
185 if (!removeUnneededCalls(macro->subPieces, R, LCM)) in removeUnneededCalls()
558 LocationContextMap &LCM, in GenerateMinimalPathDiagnostic() argument
580 LCM[&C->path] = CE->getCalleeContext(); in GenerateMinimalPathDiagnostic()
604 LCM[&C->path] = CE->getCalleeContext(); in GenerateMinimalPathDiagnostic()
1389 LocationContextMap &LCM, in GenerateExtensivePathDiagnostic() argument
1420 LCM[&C->path] = CE->getCalleeContext(); in GenerateExtensivePathDiagnostic()
[all …]
/external/llvm/lib/CodeGen/
DTargetSchedule.cpp48 unsigned LCM = (uint64_t(A) * B) / gcd(A, B); in lcm() local
49 assert((LCM >= A && LCM >= B) && "LCM overflow"); in lcm()
50 return LCM; in lcm()