Home
last modified time | relevance | path

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

/external/skia/dm/
DDM.cpp244 static constexpr int max_of() { return 0; } in max_of() function
246 static constexpr int max_of(int x, Rest... rest) { in max_of() function
247 return x > max_of(rest...) ? x : max_of(rest...); in max_of()
250 static void (*previous_handler[max_of(SIGABRT,SIGBUS,SIGFPE,SIGILL,SIGSEGV)+1])(int);