Home
last modified time | relevance | path

Searched defs:minof (Results 1 – 2 of 2) sorted by relevance

/third_party/toybox/lib/
Dlib.h427 #define minof(a, b) ({typeof(a) aa = (a); typeof(b) bb = (b); aa<bb ? aa : bb;}) macro
/third_party/toybox/porting/liteos_a/lib/
Dlib.h428 #define minof(a, b) ({typeof(a) aa = (a); typeof(b) bb = (b); aa<bb ? aa : bb;}) macro