/external/compiler-rt/lib/ |
subdf3.c | 18 fp_t COMPILER_RT_ABI __adddf3(fp_t a, fp_t b); 24 COMPILER_RT_ABI fp_t 25 __subdf3(fp_t a, fp_t b) {
|
subsf3.c | 18 fp_t COMPILER_RT_ABI __addsf3(fp_t a, fp_t b); 23 COMPILER_RT_ABI fp_t 24 __subsf3(fp_t a, fp_t b) {
|
negdf2.c | 19 fp_t __negdf2(fp_t a) {
|
negsf2.c | 19 COMPILER_RT_ABI fp_t 20 __negsf2(fp_t a) {
|
comparedf2.c | 50 enum LE_RESULT __ledf2(fp_t a, fp_t b) { 89 enum GE_RESULT __gedf2(fp_t a, fp_t b) { 111 int __unorddf2(fp_t a, fp_t b) { 119 enum LE_RESULT __eqdf2(fp_t a, fp_t b) { 123 enum LE_RESULT __ltdf2(fp_t a, fp_t b) [all...] |
comparesf2.c | 10 // This file implements the following soft-fp_t comparison routines: 50 enum LE_RESULT __lesf2(fp_t a, fp_t b) { 89 enum GE_RESULT __gesf2(fp_t a, fp_t b) { 111 int __unordsf2(fp_t a, fp_t b) { 119 enum LE_RESULT __eqsf2(fp_t a, fp_t b) { 123 enum LE_RESULT __ltsf2(fp_t a, fp_t b) [all...] |
fixdfsi.c | 23 int __fixdfsi(fp_t a) {
|
fixsfsi.c | 22 __fixsfsi(fp_t a) {
|
floatsidf.c | 23 fp_t __floatsidf(int a) { 38 // Exponent of (fp_t)a is the width of abs(a).
|
floatunsidf.c | 23 fp_t __floatunsidf(unsigned int a) { 30 // Exponent of (fp_t)a is the width of abs(a).
|
fp_lib.h | 33 typedef float fp_t; typedef 52 typedef double fp_t; typedef 106 static inline rep_t toRep(fp_t x) { 107 const union { fp_t f; rep_t i; } rep = {.f = x}; 111 static inline fp_t fromRep(rep_t x) { 112 const union { fp_t f; rep_t i; } rep = {.i = x};
|
muldf3.c | 20 COMPILER_RT_ABI fp_t 21 __muldf3(fp_t a, fp_t b) {
|
mulsf3.c | 20 COMPILER_RT_ABI fp_t 21 __mulsf3(fp_t a, fp_t b) {
|
floatunsisf.c | 23 fp_t __floatunsisf(unsigned int a) { 30 // Exponent of (fp_t)a is the width of abs(a).
|
adddf3.c | 20 COMPILER_RT_ABI fp_t 21 __adddf3(fp_t a, fp_t b) {
|
addsf3.c | 20 fp_t __addsf3(fp_t a, fp_t b) {
|
divdf3.c | 24 fp_t __divdf3(fp_t a, fp_t b) {
|
divsf3.c | 24 fp_t __divsf3(fp_t a, fp_t b) {
|
floatsisf.c | 23 fp_t __floatsisf(int a) { 38 // Exponent of (fp_t)a is the width of abs(a).
|
/external/clang/test/SemaCXX/ |
functional-cast.cpp | 69 typedef f *fp_t; typedef 70 f *fpp = fp_t(&fp);
|