Searched refs:LE_LESS (Results 1 – 6 of 6) sorted by relevance
/external/llvm-project/compiler-rt/lib/builtins/ |
D | comparetf2.c | 43 enum LE_RESULT { LE_LESS = -1, LE_EQUAL = 0, LE_GREATER = 1, LE_UNORDERED = 1 }; enumerator 64 return LE_LESS; in __letf2() 75 return LE_LESS; in __letf2()
|
D | comparesf2.c | 42 enum LE_RESULT { LE_LESS = -1, LE_EQUAL = 0, LE_GREATER = 1, LE_UNORDERED = 1 }; enumerator 63 return LE_LESS; in __lesf2() 76 return LE_LESS; in __lesf2()
|
D | comparedf2.c | 42 enum LE_RESULT { LE_LESS = -1, LE_EQUAL = 0, LE_GREATER = 1, LE_UNORDERED = 1 }; enumerator 63 return LE_LESS; in __ledf2() 76 return LE_LESS; in __ledf2()
|
/external/compiler-rt/lib/builtins/ |
D | comparetf2.c | 45 LE_LESS = -1, enumerator 67 if (aInt < bInt) return LE_LESS; in __letf2() 76 if (aInt > bInt) return LE_LESS; in __letf2()
|
D | comparesf2.c | 44 LE_LESS = -1, enumerator 67 if (aInt < bInt) return LE_LESS; in __lesf2() 77 if (aInt > bInt) return LE_LESS; in __lesf2()
|
D | comparedf2.c | 44 LE_LESS = -1, enumerator 67 if (aInt < bInt) return LE_LESS; in __ledf2() 77 if (aInt > bInt) return LE_LESS; in __ledf2()
|