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

/frameworks/base/libs/hwui/
H A DSpotShadow.h52 static void quicksortCirc(Vector2* points, int low, int high, const Vector2& center);
H A DSpotShadow.cpp233 quicksortCirc(poly, 0, polyLength - 1, center);
248 void SpotShadow::quicksortCirc(Vector2* points, int low, int high, function in class:android::uirenderer::SpotShadow
267 if (low < j) quicksortCirc(points, low, j, center);
268 if (i < high) quicksortCirc(points, i, high, center);

Completed in 57 milliseconds