Lines Matching refs:sorted
1076 static int binarySearchFirstVec3WithXAtLeast (const vector<Vec3>& sorted, float x)
1079 const vector<Vec3>::const_iterator first = std::lower_bound(sorted.begin(), sorted.end(), ref, vec3XLessThan);
1080 if (first == sorted.end())
1082 return (int)std::distance(sorted.begin(), first);
1086 static vector<T> sorted (const vector<T>& unsorted, P pred)
1094 static vector<T> sorted (const vector<T>& unsorted)
1111 const vector<Vec3> supersetSorted = sorted(superset, vec3XLessThan);
1229 const vector<float> sortedCoords = sorted(coords);
1230 string failNote = "Note: tessellation level is " + de::toString(tessLevel) + "\nNote: sorted coordinates are:\n " + containerStr(sortedCoords);
1382 const vector<LineData> lineDatasSortedByLevel = sorted(lineDatas, memberPred<std::less>(&LineData::tessLevel));