Home
last modified time | relevance | path

Searched refs:x (Results 1 – 20 of 20) sorted by relevance

/stdlib/
A Dtst-strtod.h38 # 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 Dsub_n.c27 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 Dadd_n.c27 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 Dsubmul_1.c35 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 Daddmul_1.c35 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 Dstrtold.c36 # define NEW(x) NEW1(x) argument
37 # define NEW1(x) __new_##x argument
47 # define NEW(x) x
A Dtst-at_quick_exit.c20 #define EXIT(x) quick_exit (x) argument
A Dtst-atexit.c20 #define EXIT(x) exit (x) argument
A Dtst-on_exit.c20 #define EXIT(x) exit (x) argument
A Dtst-cxa_atexit.c22 #define EXIT(x) exit (x) argument
A Dstrtold_l.c34 #define INTERNAL(x) INTERNAL1(x) argument
35 #define INTERNAL1(x) __##x##_internal argument
A Dgmp-impl.h45 #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 Dstrtod.c62 #define INTERNAL(x) INTERNAL1(x) argument
63 #define INTERNAL1(x) __##x##_internal argument
A Dgmp.h152 #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 Dlonglong.h486 #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 Dtst-strtod-round-skeleton.c50 #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 Drandom.c208 __srandom (unsigned int x) in __libc_lock_define_initialized()
211 (void) __srandom_r (x, &unsafe_state); in __libc_lock_define_initialized()
A Dqsort.c202 #define min(x, y) ((x) < (y) ? (x) : (y)) in _quicksort() argument
A Dtst-strtod-round-data157 +0x.80000000000000000000000000000001p1025
A Dstrtod_l.c163 #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

Completed in 45 milliseconds