Home
last modified time | relevance | path

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

/frameworks/base/libs/hwui/
DSpotShadow.h89 static void quicksortCirc(Vector2* points, int low, int high, const Vector2& center);
DSpotShadow.cpp367 quicksortCirc(poly, 0, polyLength - 1, center); in sort()
382 void SpotShadow::quicksortCirc(Vector2* points, int low, int high, in quicksortCirc() function in android::uirenderer::SpotShadow
401 if (low < j) quicksortCirc(points, low, j, center); in quicksortCirc()
402 if (i < high) quicksortCirc(points, i, high, center); in quicksortCirc()