Home
last modified time | relevance | path

Searched defs:fun (Results 1 – 25 of 52) sorted by relevance

123

/freebsd/contrib/arm-optimized-routines/math/include/
H A Dtest_sig.h8 #define TEST_DECL_SF1(fun) float fun##f (float); argument
9 #define TEST_DECL_SF2(fun) float fun##f (float, float); argument
10 #define TEST_DECL_SD1(fun) double fun (double); argument
11 #define TEST_DECL_SD2(fun) double fun (double, double); argument
13 #define TEST_DECL_VF1(fun) \ argument
15 #define TEST_DECL_VF2(fun) \ argument
17 #define TEST_DECL_VD1(fun) VPCS_ATTR float64x2_t V_NAME_D1 (fun) (float64x2_t); argument
18 #define TEST_DECL_VD2(fun) \ argument
21 #define TEST_DECL_SVF1(fun) \ argument
23 #define TEST_DECL_SVF2(fun) \ argument
[all …]
/freebsd/contrib/arm-optimized-routines/string/test/
H A Dmemset.c18 static const struct fun struct
21 void *(*fun) (void *s, int c, size_t n); argument
23 } funtab[] = { argument
53 test (const struct fun *fun, int salign, int c, int len) in test()
H A Dstrlen.c19 static const struct fun struct
22 size_t (*fun) (const char *s); member
24 } funtab[] = { argument
54 test (const struct fun *fun, int align, int len) in test()
H A Dstrchr.c19 static const struct fun struct
22 char *(*fun) (const char *s, int c); argument
24 } funtab[] = { argument
50 test (const struct fun *fun, int align, int seekpos, int len) in test()
H A Dstrrchr.c19 static const struct fun struct
22 char *(*fun) (const char *s, int c); argument
24 } funtab[] = { argument
50 test (const struct fun *fun, int align, int seekpos, int len) in test()
H A Dstrcmp.c18 static const struct fun struct
21 int (*fun) (const char *s1, const char *s2); argument
23 } funtab[] = { argument
55 test (const struct fun *fun, int s1align, int s2align, int len, int diffpos, in test()
H A Dstrnlen.c23 static const struct fun struct
26 size_t (*fun) (const char *s, size_t m); argument
28 } funtab[] = { argument
53 test (const struct fun *fun, int align, size_t maxlen, size_t len) in test()
H A Dmemcmp.c18 static const struct fun struct
21 int (*fun) (const void *s1, const void *s2, size_t n); argument
23 } funtab[] = { argument
49 test (const struct fun *fun, int s1align, int s2align, int len, int diffpos, in test()
H A Dmemcpy.c18 static const struct fun struct
21 void *(*fun) (void *, const void *, size_t); argument
23 } funtab[] = { argument
56 test (const struct fun *fun, int dalign, int salign, int len) in test()
H A Dstrchrnul.c23 static const struct fun struct
26 char *(*fun) (const char *s, int c); argument
28 } funtab[] = { argument
54 test (const struct fun *fun, int align, int seekpos, int len) in test()
H A Dmemchr.c19 static const struct fun struct
22 void *(*fun) (const void *s, int c, size_t n); argument
24 } funtab[] = { argument
52 test (const struct fun *fun, int align, size_t seekpos, size_t len, in test()
H A Dmemrchr.c23 static const struct fun struct
26 void *(*fun) (const void *s, int c, size_t n); member
50 test (const struct fun *fun, int align, size_t seekpos, size_t len, in test()
H A Dstrcpy.c18 static const struct fun struct
21 char *(*fun) (char *dest, const char *src); member
23 } funtab[] = { argument
52 test (const struct fun *fun, int dalign, int salign, int len) in test()
H A Dstrncmp.c18 static const struct fun struct
21 int (*fun) (const char *, const char *, size_t); argument
23 } funtab[] = { argument
49 test (const struct fun *fun, int s1align, int s2align, int maxlen, int diffpos, in test()
H A Dmemmove.c18 static const struct fun struct
21 void *(*fun) (void *, const void *, size_t); argument
23 } funtab[] = { argument
54 test (const struct fun *fun, int dalign, int salign, int len) in test()
94 test_overlap (const struct fun *fun, int dalign, int salign, int len) in test_overlap()
H A Dstpcpy.c22 static const struct fun struct
25 char *(*fun) (char *dest, const char *src); argument
27 } funtab[] = { argument
54 test (const struct fun *fun, int dalign, int salign, int len) in test()
H A D__mtag_tag_region.c29 static const struct fun struct
32 void *(*fun) (void *s, size_t n); argument
54 test (const struct fun *fun, int salign, int len) in test()
H A D__mtag_tag_zero_region.c29 static const struct fun struct
32 void *(*fun) (void *s, size_t n); argument
54 test (const struct fun *fun, int salign, int len) in test()
/freebsd/include/ssp/
H A Dssp.h58 #define __ssp_real_(fun) fun argument
60 #define __ssp_real_(fun) __ssp_real_ ## fun argument
62 #define __ssp_real(fun) __ssp_real_(fun) argument
73 #define __ssp_redirect_raw_impl(rtype, fun, symbol, args) \ argument
78 #define __ssp_redirect_raw(rtype, fun, symbol, args, call, cond, bos, len) \ argument
85 #define __ssp_redirect(rtype, fun, args, call) \ argument
87 #define __ssp_redirect0(rtype, fun, args, call) \ argument
H A Dstring.h55 #define __ssp_bos_check3_typed_var(fun, dsttype, dsrvar, dst, srctype, srcvar, \ argument
66 #define __ssp_bos_check3_typed(fun, dsttype, dst, srctype, src, len) \ argument
70 #define __ssp_bos_check3(fun, dst, src, len) \ argument
74 #define __ssp_bos_check2_var(fun, dstvar, dst, srcvar, src) __extension__ ({ \ argument
83 #define __ssp_bos_check2(fun, dst, src) \ argument
86 #define __ssp_bos_icheck3_restrict(fun, type1, type2) \ argument
93 #define __ssp_bos_icheck3(fun, type1, type2) \ argument
100 #define __ssp_bos_icheck2_restrict(fun, type1, type2) \ argument
/freebsd/contrib/arm-optimized-routines/math/aarch64/advsimd/
H A Dv_math.h17 #define V_NAME_F1(fun) _ZGVnN4v_##fun##f argument
18 #define V_NAME_D1(fun) _ZGVnN2v_##fun argument
19 #define V_NAME_F2(fun) _ZGVnN4vv_##fun##f argument
20 #define V_NAME_D2(fun) _ZGVnN2vv_##fun argument
21 #define V_NAME_F1_L1(fun) _ZGVnN4vl4_##fun##f argument
22 #define V_NAME_D1_L1(fun) _ZGVnN2vl8_##fun argument
26 # define HALF_WIDTH_ALIAS_F1(fun) \ argument
32 # define HALF_WIDTH_ALIAS_F2(fun) \ argument
40 # define HALF_WIDTH_ALIAS_F1(fun) argument
41 # define HALF_WIDTH_ALIAS_F2(fun) argument
/freebsd/contrib/arm-optimized-routines/math/aarch64/sve/
H A Dsv_math.h29 #define SV_NAME_F1(fun) _ZGVsMxv_##fun##f argument
30 #define SV_NAME_D1(fun) _ZGVsMxv_##fun argument
31 #define SV_NAME_F2(fun) _ZGVsMxvv_##fun##f argument
32 #define SV_NAME_D2(fun) _ZGVsMxvv_##fun argument
33 #define SV_NAME_F1_L1(fun) _ZGVsMxvl4_##fun##f argument
34 #define SV_NAME_D1_L1(fun) _ZGVsMxvl8_##fun argument
35 #define SV_NAME_F1_L2(fun) _ZGVsMxvl4l4_##fun##f argument
/freebsd/tools/build/cross-build/include/common/ssp/
H A Dssp.h31 #define __ssp_real_(fun) fun argument
32 #define __ssp_real(fun) __ssp_real_(fun) argument
/freebsd/contrib/arm-optimized-routines/math/test/
H A Dmathbench_funcs.h102 #define _ZSF1(fun, a, b) F (fun##f, a, b) argument
105 #define _ZVF1(fun, a, b) VNF (_ZGVnN4v_##fun##f, a, b) argument
108 #define _ZSVF1(fun, a, b) SVF (_ZGVsMxv_##fun##f, a, b) argument
H A Dmathbench.c86 static const struct fun struct
105 } fun; argument

123