Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/wtf/
DMathExtras.h280 static size_t greatestCommonDivisor(size_t a, size_t b) in greatestCommonDivisor() function
282 return b ? greatestCommonDivisor(b, a % b) : a; in greatestCommonDivisor()
287 return a && b ? a / greatestCommonDivisor(a, b) * b : 0; in lowestCommonMultiple()