Home
last modified time | relevance | path

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

/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.cpp534 int32_t* aInt; in umsg_vparse() local
561 aInt = va_arg(ap, int32_t*); in umsg_vparse()
562 if(aInt){ in umsg_vparse()
563 *aInt = (int32_t) args[i].getLong(); in umsg_vparse()