/glibc-2.36/sysdeps/generic/ |
D | math-narrow-alias.h | 32 #define libm_alias_float_double_main(func) \ argument 33 weak_alias (__f ## func, f ## func) \ 34 weak_alias (__f ## func, f32 ## func ## f64) \ 35 weak_alias (__f ## func, f32 ## func ## f32x) 38 # define libm_alias_float_double(func) \ argument 39 libm_alias_float_double_main (func) \ 40 weak_alias (__f ## func, f ## func ## l) 42 # define libm_alias_float_double(func) \ argument 43 libm_alias_float_double_main (func) 46 #define libm_alias_float32x_float64_main(func) \ argument [all …]
|
D | math-narrow-alias-float128.h | 20 # define libm_alias_float32_float128(func) \ argument 21 libm_alias_float32_float128_main (func) 22 # define libm_alias_float64_float128(func) \ argument 23 libm_alias_float64_float128_main (func) 25 # define libm_alias_float32_float128(func) \ argument 26 libm_alias_float32_float128_main (func) \ 27 weak_alias (__f32 ## func ## f128, f32 ## func ## f64x) 28 # define libm_alias_float64_float128(func) \ argument 29 libm_alias_float64_float128_main (func) \ 30 weak_alias (__f64 ## func ## f128, f64 ## func ## f64x) \ [all …]
|
/glibc-2.36/sysdeps/powerpc/powerpc64/le/fpu/multiarch/ |
D | float128-ifunc.h | 51 #define _F128_IFUNC2(func, from, r) \ argument 52 libc_ifunc (func ## r, (hwcap2 & PPC_FEATURE2_HAS_IEEE128) \ 58 #define _F128_IFUNC(func, r) _F128_IFUNC2(func, func, r) argument 65 #define MAKE_IMPL_IFUNC2(func, pfx1, pfx2, r) \ argument 66 extern __typeof (pfx1 ## func ## f128 ## r) pfx2 ## func ## f128_power8 ## r; \ 67 extern __typeof (pfx1 ## func ## f128 ## r) pfx2 ## func ## f128_power9 ## r; \ 68 _F128_IFUNC2 (__ ## func ## f128, pfx2 ## func ## f128, r); 101 #define MAKE_IEEE_IFUNC_R(func, r) \ argument 102 extern __typeof (__ieee754_ ## func ## f128 ## r) __ieee754_ ## func ## f128_power8 ## r; \ 103 extern __typeof (__ieee754_ ## func ## f128 ## r) __ieee754_ ## func ## f128_power9 ## r; \ [all …]
|
D | float128-ifunc-redirect-macros.h | 42 #define F128_REDIR_PFX_R(func, pfx, r) \ argument 43 extern __typeof(func ## r) func ## r __asm( #pfx #func "_power8" #r ); 46 #define F128_REDIR_PFX_R(func, pfx, r) \ argument 47 extern __typeof(func ## r) func ## r __asm( #pfx #func "_power9" #r ); 50 #define F128_REDIR_R(func, r) F128_REDIR_PFX_R (func, , r) argument 51 #define F128_REDIR(func) F128_REDIR_R (func, ) argument
|
/glibc-2.36/sysdeps/ieee754/ldbl-128ibm-compat/ |
D | math-narrow-alias-float128.h | 20 # define libm_alias_float32_float128(func) \ argument 21 libm_alias_float32_float128_main (func) 22 # define libm_alias_float64_float128(func) \ argument 23 libm_alias_float64_float128_main (func) 25 # define libm_alias_float32_float128(func) \ argument 26 libm_alias_float32_float128_main (func) \ 27 weak_alias (__f32 ## func ## f128, f32 ## func ## f64x) \ 28 weak_alias (__f32 ## func ## f128, __ ## f32 ## func ## ieee128) 29 # define libm_alias_float64_float128(func) \ argument 30 libm_alias_float64_float128_main (func) \ [all …]
|
/glibc-2.36/benchtests/scripts/ |
D | compare_bench.py | 30 def do_compare(func, var, tl1, tl2, par, threshold): argument 50 sys.stderr.write('%s(%s)[%s]: stat does not exist\n' % (func, var, par)) 61 (ind, func, var, par, d, v1, v2)) 75 for func in pts1['functions'].keys(): 76 for var in pts1['functions'][func].keys(): 77 tl1 = pts1['functions'][func][var] 78 tl2 = pts2['functions'][func][var] 83 do_compare(func, var, tl1, tl2, stat, threshold) 87 if 'timings' not in pts1['functions'][func][var].keys() or \ 88 'timings' not in pts2['functions'][func][var].keys(): [all …]
|
D | import_bench.py | 42 def split_list(bench, func, var): argument 84 lst = bench['functions'][func][var]['timings'] 94 bench['functions'][func][var]['timings'] = means 105 for func in bench['functions'].keys(): 106 for k in bench['functions'][func].keys(): 107 if 'timings' not in bench['functions'][func][k].keys(): 110 callback(bench, func, k)
|
/glibc-2.36/sysdeps/alpha/fpu/ |
D | cfloat-compat.h | 49 #define cfloat_versions_compat(func) \ argument 50 compat_symbol (libm, __c1_##func, func, GLIBC_2_1) 52 #define cfloat_versions_compat(func) argument 55 #define cfloat_versions(func) \ argument 56 cfloat_versions_compat(func##f); \ 57 versioned_symbol (libm, __c2_##func##f, func##f, GLIBC_2_3_4); \ 58 extern typeof(__c2_##func##f) __##func##f attribute_hidden; \ 59 strong_alias (__c2_##func##f, __##func##f); \ 60 libm_alias_float_other (__##func, func)
|
/glibc-2.36/math/ |
D | test-tgmath-ret.c | 41 #define CHECK_RET_CONST_TYPE(func, rettype, arg, name, ...) \ argument 42 if (sizeof (func (arg, ## __VA_ARGS__)) != sizeof (rettype)) \ 43 our_error ("Return size of " #func " is wrong with " #name " argument"); 45 #define CHECK_RET_CONST_FLOAT(func, rettype, ...) \ argument 46 CHECK_RET_CONST_TYPE (func, rettype, fx, float, ## __VA_ARGS__) 47 #define CHECK_RET_CONST_DOUBLE(func, rettype, ...) \ argument 48 CHECK_RET_CONST_TYPE (func, rettype, dx, double, ## __VA_ARGS__) 49 #define CHECK_RET_CONST_LDOUBLE(func, rettype, ...) \ argument 50 CHECK_RET_CONST_TYPE (func, rettype, lx, long double, ## __VA_ARGS__) 52 #define CHECK_RET_CONST(func, rettype, ...) \ argument [all …]
|
D | test-tgmath-int.c | 33 #define CHECK_RET_CONST_TYPE(func, rettype, name) \ argument 34 if (sizeof (func) != sizeof (rettype)) \ 35 our_error ("Return size of " #name " is " #func" wrong"); 37 #define CHECK_RET_CONST_FLOAT(func, name) \ argument 38 CHECK_RET_CONST_TYPE (func, float, name) 40 #define CHECK_RET_CONST_DOUBLE(func, name) \ argument 41 CHECK_RET_CONST_TYPE (func, double, name)
|
D | gen-fromfp-tests.py | 44 func = sys.argv[1] variable 48 if func == 'fromfpx' or func == 'ufromfpx': 52 unsigned = func.startswith('ufromfp') 97 (test_macro, func, val, rm, ws, invalid_res)) 100 (test_macro, func, val, rm, ws, val, exact_res)) 138 (test_macro, func, val, rm, ws, invalid_res)) 141 (test_macro, func, val, rm, ws, res, inexact_res))
|
/glibc-2.36/include/sys/ |
D | cdefs.h | 29 # define __LDBL_REDIR_DECL(func) \ argument 30 extern __typeof(func) func __asm (__ASMNAME ("__GI____ieee128_" #func)); 33 # define libc_hidden_ldbl_proto(func, attrs...) \ argument 34 extern __typeof(func) ___ieee128_ ## func; \ 35 libc_hidden_proto (___ieee128_ ## func, ##attrs); 38 # define __LDBL_REDIR2_DECL(func) \ argument 39 extern __typeof(__ ## func) __ ## func __asm (__ASMNAME ("__GI____ieee128___" #func));
|
/glibc-2.36/ctype/ |
D | ctype.c | 23 #define func(name, type) \ macro 26 func (isalnum, _ISalnum) in func() function 27 func (isalpha, _ISalpha) in func() 28 func (iscntrl, _IScntrl) in func() 29 func (isdigit, _ISdigit) in func() 30 func (islower, _ISlower) in func() 31 func (isgraph, _ISgraph) in func() 32 func (isprint, _ISprint) in func() 33 func (ispunct, _ISpunct) in func() 34 func (isspace, _ISspace) in func() [all …]
|
D | ctype_l.c | 23 #define func(name, type) \ macro 27 func (isalnum_l, _ISalnum) in func() function 28 func (isalpha_l, _ISalpha) in func() 29 func (iscntrl_l, _IScntrl) in func() 30 func (isdigit_l, _ISdigit) in func() 31 func (islower_l, _ISlower) in func() 32 func (isgraph_l, _ISgraph) in func() 33 func (isprint_l, _ISprint) in func() 34 func (ispunct_l, _ISpunct) in func() 35 func (isspace_l, _ISspace) in func() [all …]
|
/glibc-2.36/wctype/ |
D | wcfuncs_l.c | 29 #define func(name, type) \ macro 41 func (alnum_l, __ISwalnum) in func() function 42 func (alpha_l, __ISwalpha) in func() 43 func (blank_l, __ISwblank) in func() 44 func (cntrl_l, __ISwcntrl) in func() 47 func (digit_l, __ISwdigit) in func() 48 func (lower_l, __ISwlower) in func() 49 func (graph_l, __ISwgraph) in func() 50 func (print_l, __ISwprint) in func() 51 func (punct_l, __ISwpunct) in func() [all …]
|
D | wcfuncs.c | 26 #define func(name, type) \ macro 40 func (alnum, __ISwalnum) in func() function 44 func (alpha, __ISwalpha) in func() 47 func (blank, __ISwblank) in func() 49 func (cntrl, __ISwcntrl) in func() 51 func (digit, __ISwdigit) in func() 54 func (lower, __ISwlower) in func() 58 func (graph, __ISwgraph) in func() 60 func (print, __ISwprint) in func() 62 func (punct, __ISwpunct) in func() [all …]
|
/glibc-2.36/sysdeps/unix/sysv/linux/riscv/ |
D | flush-icache.c | 42 func_type func = dl_vdso_vsym ("__vdso_flush_icache"); in __lookup_riscv_flush_icache() local 47 if (!func) in __lookup_riscv_flush_icache() 48 func = &__riscv_flush_icache_syscall; in __lookup_riscv_flush_icache() 50 return func; in __lookup_riscv_flush_icache() 65 func_type func = atomic_load_relaxed (&cached_func); 67 if (!func) 69 func = __lookup_riscv_flush_icache (); 70 atomic_store_relaxed (&cached_func, func); 73 return func (start, end, flags);
|
/glibc-2.36/stdlib/ |
D | tst-arc4random-thread.c | 60 void (*func)(unsigned char *, size_t); member 137 void (*func) (unsigned char *, size_t) = closure; in inner_thread() local 160 func (place->bytes, place->size); in inner_thread() 178 void (*func) (unsigned char *, size_t) = closure; in outer_thread() local 185 threads[i] = xpthread_create (NULL, inner_thread, func); in outer_thread() 204 arg->func (result->bytes, result->size); in get_one_blob_thread() 217 { shared_result + 0, arg->func }, in fork_thread_subprocess() 218 { shared_result + 1, arg->func }, in fork_thread_subprocess() 219 { shared_result + 2, arg->func } in fork_thread_subprocess() 234 void (*func)(unsigned char *, size_t) = closure; in fork_thread() local [all …]
|
D | cxa_thread_atexit_impl.c | 83 dtor_func func; member 100 __cxa_thread_atexit_impl (dtor_func func, void *obj, void *dso_symbol) in __cxa_thread_atexit_impl() argument 103 PTR_MANGLE (func); in __cxa_thread_atexit_impl() 111 new->func = func; in __cxa_thread_atexit_impl() 153 dtor_func func = cur->func; in __call_tls_dtors() local 155 PTR_DEMANGLE (func); in __call_tls_dtors() 159 func (cur->obj); in __call_tls_dtors()
|
D | cxa_atexit.c | 34 __internal_atexit (void (*func) (void *), void *arg, void *d, in __internal_atexit() 41 assert (func != NULL); in __internal_atexit() 53 PTR_MANGLE (func); in __internal_atexit() 55 new->func.cxa.fn = (void (*) (void *, int)) func; in __internal_atexit() 56 new->func.cxa.arg = arg; in __internal_atexit() 57 new->func.cxa.dso_handle = d; in __internal_atexit() 68 __cxa_atexit (void (*func) (void *), void *arg, void *d) in __cxa_atexit() 70 return __internal_atexit (func, arg, d, &__exit_funcs); in __cxa_atexit()
|
D | on_exit.c | 25 __on_exit (void (*func) (int status, void *arg), void *arg) in __on_exit() 31 assert (func != NULL); in __on_exit() 43 PTR_MANGLE (func); in __on_exit() 45 new->func.on.fn = func; in __on_exit() 46 new->func.on.arg = arg; in __on_exit()
|
/glibc-2.36/localedata/tests-mbwc/ |
D | tst_funcs.h | 20 extern int result (FILE * fp, char res, const char *func, const char *loc, 72 #define TST_FTYP(func) tst_##func##_loc argument 73 #define TST_HEAD(func) tst_##func##_loc[ loc ].hd argument 74 #define TST_INPUT(func) tst_##func##_loc[ loc ].rec[ rec ].input argument 75 #define TST_EXPECT(func) tst_##func##_loc[ loc ].rec[ rec ].expect argument 76 #define TST_INPUT_SEQ(func) \ argument 77 tst_##func##_loc[ loc ].rec[ rec ].input.seq[ seq_num ] 78 #define TST_EXPECT_SEQ(func) \ argument 79 tst_##func##_loc[ loc ].rec[ rec ].expect.seq[ seq_num ] 80 #define TST_IS_LAST(func) \ argument [all …]
|
D | tsp_common.c | 7 #define TST_FUNCTION_CALL(func) _TST_FUNCTION_CALL(func) argument 8 #define _TST_FUNCTION_CALL(func) tst ##_## func argument 43 result (FILE * fp, char res, const char *func, const char *loc, int rec_no, in result() argument 47 || strlen (func) + strlen (loc) + strlen (msg) + 32 > MAX_RESULT_REC) in result() 51 func, loc, rec_no, case_no, msg); in result() 55 sprintf (result_rec, "%s:%s:%d:%d:%d:%c:%s\n", func, loc, rec_no, seq_no, in result()
|
/glibc-2.36/sysdeps/m68k/m680x0/fpu/ |
D | mathimpl.h | 37 #define __m81_defun(rettype, func, args, attrs) \ argument 39 __m81_nth (__m81_u(func) args) 46 # define __inline_mathop(func, op, attrs) \ argument 47 __inline_mathop1(double, func, op, attrs) \ 48 __inline_mathop1(float, __CONCAT(func,f), op, attrs) \ 49 __inline_mathop1(long double, __CONCAT(func,l), op, attrs) 51 #define __inline_mathop1(float_type,func, op, attrs) \ argument 52 __m81_defun (float_type, func, (float_type __mathop_x), attrs) \ 231 #define __inline_mathop(func, op, attrs) \ argument 232 __inline_mathop1(double, func, op, attrs) \ [all …]
|
/glibc-2.36/posix/ |
D | tst-posix_spawn-fd.c | 40 one_test (const char *name, int (*func) (int), int fd, in one_test() 43 int ret = func (fd); in one_test() 68 all_tests (const char *name, int (*func) (int)) in all_tests() 70 one_test (name, func, 0, true); in all_tests() 71 one_test (name, func, invalid_fd, true); in all_tests() 72 one_test (name, func, -1, false); in all_tests() 73 one_test (name, func, -2, false); in all_tests() 75 one_test (name, func, maxfd, false); in all_tests()
|