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

/external/chromium_org/ipc/
H A Dparam_traits_macros.h40 // range-checked by the IPC system to be in the range of minvalue..maxvalue
42 #define IPC_ENUM_TRAITS_MIN_MAX_VALUE(type, minvalue, maxvalue) \
43 IPC_ENUM_TRAITS_VALIDATE(type, (value >= (minvalue) && value <= (maxvalue)))
/external/chromium_org/third_party/leveldatabase/src/db/
H A Ddb_impl.cc86 static void ClipToRange(T* ptr, V minvalue, V maxvalue) { argument
88 if (static_cast<V>(*ptr) < minvalue) *ptr = minvalue;

Completed in 222 milliseconds