Home | History | Annotate | Download | only in db

Lines Matching refs:maxvalue

86 static void ClipToRange(T* ptr, V minvalue, V maxvalue) {
87 if (static_cast<V>(*ptr) > maxvalue) *ptr = maxvalue;