/stdlib/ |
A D | tst-strtod.h | 38 # define IF_FLOAT16(x) x argument 40 # define IF_FLOAT16(x) argument 44 # define IF_FLOAT32(x) x argument 46 # define IF_FLOAT32(x) argument 50 # define IF_FLOAT64(x) x argument 52 # define IF_FLOAT64(x) argument 56 # define IF_FLOAT128(x) x argument 58 # define IF_FLOAT128(x) argument 62 # define IF_FLOAT32X(x) x argument 68 # define IF_FLOAT64X(x) x argument [all …]
|
A D | sub_n.c | 27 register mp_limb_t x, y, cy; in mpn_sub_n() local 43 x = s1_ptr[j]; in mpn_sub_n() 46 y = x - y; /* main subtract */ in mpn_sub_n() 47 cy = (y > x) + cy; /* get out carry from the subtract, combine */ in mpn_sub_n()
|
A D | add_n.c | 27 register mp_limb_t x, y, cy; in mpn_add_n() local 43 x = s1_ptr[j]; in mpn_add_n() 46 y = x + y; /* add other addend */ in mpn_add_n() 47 cy = (y < x) + cy; /* get out carry from that add, combine */ in mpn_add_n()
|
A D | submul_1.c | 35 register mp_limb_t x; in mpn_submul_1() local 53 x = res_ptr[j]; in mpn_submul_1() 54 prod_low = x - prod_low; in mpn_submul_1() 55 cy_limb += (prod_low > x); in mpn_submul_1()
|
A D | addmul_1.c | 35 register mp_limb_t x; in mpn_addmul_1() local 53 x = res_ptr[j]; in mpn_addmul_1() 54 prod_low = x + prod_low; in mpn_addmul_1() 55 cy_limb += (prod_low < x); in mpn_addmul_1()
|
A D | strtold.c | 36 # define NEW(x) NEW1(x) argument 37 # define NEW1(x) __new_##x argument 47 # define NEW(x) x
|
A D | tst-at_quick_exit.c | 20 #define EXIT(x) quick_exit (x) argument
|
A D | tst-atexit.c | 20 #define EXIT(x) exit (x) argument
|
A D | tst-on_exit.c | 20 #define EXIT(x) exit (x) argument
|
A D | tst-cxa_atexit.c | 22 #define EXIT(x) exit (x) argument
|
A D | strtold_l.c | 34 #define INTERNAL(x) INTERNAL1(x) argument 35 #define INTERNAL1(x) __##x##_internal argument
|
A D | gmp-impl.h | 45 #define alloca(x) __ALLOCA(x) argument 55 #define TMP_ALLOC(x) alloca(x) argument 72 #define SIZ(x) ((x)->_mp_size) argument 73 #define PTR(x) ((x)->_mp_d) argument 74 #define EXP(x) ((x)->_mp_exp) argument 75 #define PREC(x) ((x)->_mp_prec) argument 76 #define ALLOC(x) ((x)->_mp_alloc) argument 303 #define _PROTO(x) x argument 305 #define _PROTO(x) () argument
|
A D | strtod.c | 62 #define INTERNAL(x) INTERNAL1(x) argument 63 #define INTERNAL1(x) __##x##_internal argument
|
A D | gmp.h | 152 #define _PROTO(x) x argument 154 #define _PROTO(x) () argument 160 #define __MPN(x) __mpn_##x argument 162 #define __MPN(x) __mpn_/**/x argument 446 x = *s1_ptr++; 449 if (s2_limb < x) 454 *res_ptr++ = x; 455 if (x != 0) 517 x = *s1_ptr++; 524 x = *s1_ptr++; [all …]
|
A D | longlong.h | 486 #define count_leading_zeros(count, x) ((count) = __builtin_clz (x)) argument 487 #define count_trailing_zeros(count, x) ((count) = __builtin_ctz (x)) argument 522 #define count_leading_zeros(count, x) ((count) = __builtin_clzll (x)) argument 523 #define count_trailing_zeros(count, x) ((count) = __builtin_ctzll (x)) argument 588 UWtype __ctz_x = (x); \ 747 #define count_leading_zeros(count,x) ((count) = __builtin_clz (x)) argument 1041 if ((x) >= 0x10000) \ 1049 : "r" ((USItype) (x))); \ 1528 #define count_leading_zeros(count, x) ((count) = __builtin_clz (x)) argument 1530 #define count_trailing_zeros(count, x) ((count) = __builtin_ctz (x)) argument [all …]
|
A D | tst-strtod-round-skeleton.c | 50 #define STRTO(x) CONCAT (CONCAT (FNPFX, to), x) argument 57 # define ROUNDING_TESTS_long_double(x) 0 argument 193 #define STRX(x) #x argument 194 #define STR(x) STRX (x) argument
|
A D | random.c | 208 __srandom (unsigned int x) in __libc_lock_define_initialized() 211 (void) __srandom_r (x, &unsafe_state); in __libc_lock_define_initialized()
|
A D | qsort.c | 202 #define min(x, y) ((x) < (y) ? (x) : (y)) in _quicksort() argument
|
A D | tst-strtod-round-data | 157 +0x.80000000000000000000000000000001p1025
|
A D | strtod_l.c | 163 #define howmany(x,y) (((x)+((y)-1))/(y)) argument 165 #define SWAP(x, y) ({ typeof(x) _tmp = x; x = y; y = _tmp; }) argument 490 #define INTERNAL(x) INTERNAL1(x) argument 491 #define INTERNAL1(x) __##x##_internal argument
|