Home
last modified time | relevance | path

Searched refs:aInt (Results 1 – 7 of 7) sorted by relevance

/external/llvm-project/compiler-rt/lib/builtins/
Dcomparetf2.c47 const srep_t aInt = toRep(a); in __letf2() local
49 const rep_t aAbs = aInt & absMask; in __letf2()
62 if ((aInt & bInt) >= 0) { in __letf2()
63 if (aInt < bInt) in __letf2()
65 else if (aInt == bInt) in __letf2()
74 if (aInt > bInt) in __letf2()
76 else if (aInt == bInt) in __letf2()
100 const srep_t aInt = toRep(a); in __getf2() local
102 const rep_t aAbs = aInt & absMask; in __getf2()
109 if ((aInt & bInt) >= 0) { in __getf2()
[all …]
Dcomparesf2.c46 const srep_t aInt = toRep(a); in __lesf2() local
48 const rep_t aAbs = aInt & absMask; in __lesf2()
61 if ((aInt & bInt) >= 0) { in __lesf2()
62 if (aInt < bInt) in __lesf2()
64 else if (aInt == bInt) in __lesf2()
75 if (aInt > bInt) in __lesf2()
77 else if (aInt == bInt) in __lesf2()
101 const srep_t aInt = toRep(a); in __gesf2() local
103 const rep_t aAbs = aInt & absMask; in __gesf2()
110 if ((aInt & bInt) >= 0) { in __gesf2()
[all …]
Dcomparedf2.c46 const srep_t aInt = toRep(a); in __ledf2() local
48 const rep_t aAbs = aInt & absMask; in __ledf2()
61 if ((aInt & bInt) >= 0) { in __ledf2()
62 if (aInt < bInt) in __ledf2()
64 else if (aInt == bInt) in __ledf2()
75 if (aInt > bInt) in __ledf2()
77 else if (aInt == bInt) in __ledf2()
101 const srep_t aInt = toRep(a); in __gedf2() local
103 const rep_t aAbs = aInt & absMask; in __gedf2()
110 if ((aInt & bInt) >= 0) { in __gedf2()
[all …]
/external/compiler-rt/lib/builtins/
Dcomparedf2.c53 const srep_t aInt = toRep(a); in __ledf2() local
55 const rep_t aAbs = aInt & absMask; in __ledf2()
66 if ((aInt & bInt) >= 0) { in __ledf2()
67 if (aInt < bInt) return LE_LESS; in __ledf2()
68 else if (aInt == bInt) return LE_EQUAL; in __ledf2()
77 if (aInt > bInt) return LE_LESS; in __ledf2()
78 else if (aInt == bInt) return LE_EQUAL; in __ledf2()
98 const srep_t aInt = toRep(a); in __gedf2() local
100 const rep_t aAbs = aInt & absMask; in __gedf2()
105 if ((aInt & bInt) >= 0) { in __gedf2()
[all …]
Dcomparesf2.c53 const srep_t aInt = toRep(a); in __lesf2() local
55 const rep_t aAbs = aInt & absMask; in __lesf2()
66 if ((aInt & bInt) >= 0) { in __lesf2()
67 if (aInt < bInt) return LE_LESS; in __lesf2()
68 else if (aInt == bInt) return LE_EQUAL; in __lesf2()
77 if (aInt > bInt) return LE_LESS; in __lesf2()
78 else if (aInt == bInt) return LE_EQUAL; in __lesf2()
98 const srep_t aInt = toRep(a); in __gesf2() local
100 const rep_t aAbs = aInt & absMask; in __gesf2()
105 if ((aInt & bInt) >= 0) { in __gesf2()
[all …]
Dcomparetf2.c53 const srep_t aInt = toRep(a); in __letf2() local
55 const rep_t aAbs = aInt & absMask; in __letf2()
66 if ((aInt & bInt) >= 0) { in __letf2()
67 if (aInt < bInt) return LE_LESS; in __letf2()
68 else if (aInt == bInt) return LE_EQUAL; in __letf2()
76 if (aInt > bInt) return LE_LESS; in __letf2()
77 else if (aInt == bInt) return LE_EQUAL; in __letf2()
96 const srep_t aInt = toRep(a); in __getf2() local
98 const rep_t aAbs = aInt & absMask; in __getf2()
103 if ((aInt & bInt) >= 0) { in __getf2()
[all …]
/external/icu/icu4c/source/i18n/
Dumsg.cpp532 int32_t* aInt; in umsg_vparse() local
559 aInt = va_arg(ap, int32_t*); in umsg_vparse()
560 if(aInt){ in umsg_vparse()
561 *aInt = (int32_t) args[i].getLong(); in umsg_vparse()