Home
last modified time | relevance | path

Searched +defs:a +defs:b (Results 1 – 25 of 1152) sorted by relevance

12345678910>>...47

/netbsd/src/external/lgpl3/gmp/dist/tests/cxx/
Dt-assign.cc38 mpz_class a(123), b; in check_mpz() local
47 signed char a = -127; in check_mpz() local
48 mpz_class b; in check_mpz() local
54 unsigned char a = 255; in check_mpz() local
55 mpz_class b; in check_mpz() local
61 mpz_class a; in check_mpz() local
65 mpz_class a; in check_mpz() local
71 signed int a = 0; in check_mpz() local
72 mpz_class b; in check_mpz() local
76 signed int a = -123; in check_mpz() local
[all …]
Dt-constr.cc37 mpz_class a; ASSERT_ALWAYS(a == 0); in check_mpz() local
48 signed char a = -127; in check_mpz() local
49 mpz_class b(a); ASSERT_ALWAYS(b == -127); in check_mpz() local
54 unsigned char a = 255; in check_mpz() local
55 mpz_class b(a); ASSERT_ALWAYS(b == 255); in check_mpz() local
60 mpz_class a('A'); ASSERT_ALWAYS(a == 65); in check_mpz() local
63 mpz_class a('z'); ASSERT_ALWAYS(a == 122); in check_mpz() local
68 signed int a = 0; in check_mpz() local
69 mpz_class b(a); ASSERT_ALWAYS(b == 0); in check_mpz() local
72 signed int a = -123; in check_mpz() local
[all …]
Dt-ops.cc38 mpz_class a(1); in check_mpz() local
39 mpz_class b; in check_mpz() local
45 mpz_class a(2); in check_mpz() local
46 mpz_class b; in check_mpz() local
52 mpz_class a(3); in check_mpz() local
53 mpz_class b; in check_mpz() local
59 mpz_class a(-123); in check_mpz() local
60 mpz_class b; in check_mpz() local
68 mpz_class a(25); in check_mpz() local
69 mpz_class b; in check_mpz() local
[all …]
Dt-binary.cc37 mpz_class a(1), b(2); in check_mpz() local
41 mpz_class a(3), b(4); in check_mpz() local
46 mpz_class a(5), b(3); in check_mpz() local
54 mpz_class a(1); in check_mpz() local
55 signed int b = 3; in check_mpz() local
59 mpz_class a(-8); in check_mpz() local
60 unsigned int b = 2; in check_mpz() local
65 mpz_class a(2); in check_mpz() local
66 double b = 3.0; in check_mpz() local
70 mpz_class a(4); in check_mpz() local
[all …]
Dt-unary.cc37 mpz_class a(1); in check_mpz() local
38 mpz_class b(+a); ASSERT_ALWAYS(b == 1); in check_mpz() local
41 mpz_class a(2); in check_mpz() local
42 mpz_class b; in check_mpz() local
46 mpz_class a(3); in check_mpz() local
47 mpz_class b; in check_mpz() local
54 mpz_class a(1); in check_mpz() local
55 mpz_class b(-(-a)); ASSERT_ALWAYS(b == 1); in check_mpz() local
58 mpz_class a(2); in check_mpz() local
59 mpz_class b; in check_mpz() local
[all …]
Dt-ternary.cc42 mpz_class a(1), b(2), c(3); in check_mpz_1() local
47 mpz_class a(1), b(2), c(3); in check_mpz_1() local
60 mpz_class a(1), b(2); in check_mpz_2() local
66 mpz_class a(1), b(2); in check_mpz_2() local
80 mpz_class a(1), b(2); in check_mpz_3() local
86 mpz_class a(1), b(2); in check_mpz_3() local
100 mpz_class a(1), b(2), c(3); in check_mpz_4() local
106 mpz_class a(1), b(2), c(3); in check_mpz_4() local
120 mpz_class a(1), b(2), c(3); in check_mpz_5() local
126 mpz_class a(1), b(2), c(3); in check_mpz_5() local
[all …]
Dt-ops2.h29 #define CHECK1(Type,a,fun) \ argument
31 #define CHECK(Type1,Type2,a,b,op) \ argument
33 #define CHECK_G(Type,a,b,op) \ argument
35 #define CHECK_UI(Type,a,b,op) \ argument
38 #define CHECK_SI(Type,a,b,op) \ argument
41 #define CHECK_D(Type,a,b,op) \ argument
44 #define CHECK_MPZ(Type,a,b,op) \ argument
47 #define CHECK_MPQ(Type,a,b,op) \ argument
50 #define CHECK_ALL_SIGNED(Type,a,b,op) \ argument
54 #define CHECK_ALL_SIGNS(Type,a,b,op) \ argument
[all …]
/netbsd/src/external/gpl3/gcc/dist/libgcc/config/rx/
Drx-abi-functions.c36 int _COM_CMPLTd (double a, double b) { return __ltdf2 (a, b) == -1; } in _COM_CMPLTd()
37 int _COM_CMPGTd (double a, double b) { return __gtdf2 (a, b) == 1; } in _COM_CMPGTd()
38 int _COM_CMPLEd (double a, double b) { return __ledf2 (a, b) != 1; } in _COM_CMPLEd()
39 int _COM_CMPGEd (double a, double b) { return __gedf2 (a, b) != -1; } in _COM_CMPGEd()
40 int _COM_CMPEQd (double a, double b) { return __eqdf2 (a, b) == 0; } in _COM_CMPEQd()
41 int _COM_CMPNEd (double a, double b) { return __nedf2 (a, b) != 0; } in _COM_CMPNEd()
52 double _COM_CONVfd (float a) { return a; } in _COM_CONVfd()
53 float _COM_CONVdf (double a) { return a; } in _COM_CONVdf()
62 signed long long _COM_CONVd64s (double a) { return (signed long long) a; } in _COM_CONVd64s()
63 unsigned long long _COM_CONVd64u (double a) { return (unsigned long long) a; } in _COM_CONVd64u()
[all …]
/netbsd/src/crypto/external/bsd/openssl/dist/test/
Dtestutil.h289 # define PRINTF_FORMAT(a, b) argument
299 # define PRINTF_FORMAT(a, b) __attribute__ ((format(printf, a, b))) argument
429 # define TEST_int_eq(a, b) test_int_eq(__FILE__, __LINE__, #a, #b, a, b) argument
430 # define TEST_int_ne(a, b) test_int_ne(__FILE__, __LINE__, #a, #b, a, b) argument
431 # define TEST_int_lt(a, b) test_int_lt(__FILE__, __LINE__, #a, #b, a, b) argument
432 # define TEST_int_le(a, b) test_int_le(__FILE__, __LINE__, #a, #b, a, b) argument
433 # define TEST_int_gt(a, b) test_int_gt(__FILE__, __LINE__, #a, #b, a, b) argument
434 # define TEST_int_ge(a, b) test_int_ge(__FILE__, __LINE__, #a, #b, a, b) argument
436 # define TEST_uint_eq(a, b) test_uint_eq(__FILE__, __LINE__, #a, #b, a, b) argument
437 # define TEST_uint_ne(a, b) test_uint_ne(__FILE__, __LINE__, #a, #b, a, b) argument
[all …]
Dconstant_time_test.c61 static int test_binary_op(unsigned int (*op) (unsigned int a, unsigned int b), in test_binary_op()
72 static int test_binary_op_8(unsigned in test_binary_op_8()
73 char (*op) (unsigned int a, unsigned int b), in test_binary_op_8()
84 static int test_binary_op_s(size_t (*op) (size_t a, size_t b), in test_binary_op_s()
95 static int test_binary_op_64(uint64_t (*op)(uint64_t a, uint64_t b), in test_binary_op_64()
115 unsigned int a = test_values[i]; in test_is_zero() local
126 unsigned int a = test_values_8[i]; in test_is_zero_8() local
137 uint32_t a = test_values_32[i]; in test_is_zero_32() local
148 size_t a = test_values_s[i]; in test_is_zero_s() local
157 static int test_select(unsigned int a, unsigned int b) in test_select()
[all …]
/netbsd/src/external/gpl3/gcc/dist/gcc/config/rs6000/
Dspu2vmx.h35 static __inline vec_uchar16 spu_absd(vec_uchar16 a, vec_uchar16 b) in spu_absd()
45 static __inline vec_uint4 spu_add(vec_uint4 a, vec_uint4 b) in spu_add()
50 static __inline vec_int4 spu_add(vec_int4 a, vec_int4 b) in spu_add()
55 static __inline vec_ushort8 spu_add(vec_ushort8 a, vec_ushort8 b) in spu_add()
60 static __inline vec_short8 spu_add(vec_short8 a, vec_short8 b) in spu_add()
65 static __inline vec_uint4 spu_add(vec_uint4 a, unsigned int b) in spu_add()
70 static __inline vec_int4 spu_add(vec_int4 a, int b) in spu_add()
75 static __inline vec_ushort8 spu_add(vec_ushort8 a, unsigned short b) in spu_add()
80 static __inline vec_short8 spu_add(vec_short8 a, short b) in spu_add()
85 static __inline vec_float4 spu_add(vec_float4 a, vec_float4 b) in spu_add()
[all …]
/netbsd/src/sys/rump/include/rump/
Drump_syscallshotgun.h38 #define socket(a,b,c) rump_sys_socket(a,b,c) argument
39 #define accept(a,b,c) rump_sys_accept(a,b,c) argument
40 #define bind(a,b,c) rump_sys_bind(a,b,c) argument
41 #define connect(a,b,c) rump_sys_connect(a,b,c) argument
42 #define getpeername(a,b,c) rump_sys_getpeername(a,b,c) argument
43 #define getsockname(a,b,c) rump_sys_getsockname(a,b,c) argument
44 #define listen(a,b) rump_sys_listen(a,b) argument
45 #define recvfrom(a,b,c,d,e,f) rump_sys_recvfrom(a,b,c,d,e,f) argument
46 #define recvmsg(a,b,c) rump_sys_recvmsg(a,b,c) argument
47 #define sendto(a,b,c,d,e,f) rump_sys_sendto(a,b,c,d,e,f) argument
[all …]
/netbsd/src/external/bsd/ntp/dist/include/
Dntp_unixtime.h14 # define GETTIMEOFDAY(a, b) (node_gettime(&ntp_node, a)) argument
15 # define SETTIMEOFDAY(a, b) (node_settime(&ntp_node, a)) argument
16 # define ADJTIMEOFDAY(a, b) (node_adjtime(&ntp_node, a, b)) argument
18 # define ADJTIMEOFDAY(a, b) (adjtime(a, b)) argument
23 # define GETTIMEOFDAY(a, b) (gettimeofday(a, b)) argument
24 # define SETTIMEOFDAY(a, b) (settimeofday(a, b)) argument
27 # define GETTIMEOFDAY(a, b) (gettimeofday(a)) argument
28 # define SETTIMEOFDAY(a, b) (settimeofday(a)) argument
31 # define GETTIMEOFDAY(a, b) (gettimeofday(a, b)) argument
32 # define SETTIMEOFDAY(a, b) (settimeofday_NT(a)) argument
[all …]
/netbsd/src/include/
Dtgmath.h42 #define __TG_CHOOSE(p, a, b) __builtin_choose_expr((p), (a), (b)) argument
62 #define __TG_GFN1(fn, a, ftype, ltype) \ argument
69 #define __TG_GFN1x(fn, a, b, ftype, ltype) \ argument
76 #define __TG_GFN2(fn, a, b, ftype, ltype) \ argument
85 #define __TG_GFN2x(fn, a, b, c, ftype, ltype) \ argument
94 #define __TG_GFN3(fn, a, b, c, ftype, ltype) \ argument
106 #define __TG_CFN1(cfn, a) __TG_GFN1(cfn, a, FREAL, LREAL) argument
107 #define __TG_CFN2(cfn, a, b) __TG_GFN2(cfn, a, b, FREAL, LREAL) argument
109 #define __TG_FN1(fn, a) __TG_GFN1(fn, a, FLOAT, LDOUBLE) argument
110 #define __TG_FN1x(fn, a, b) __TG_GFN1x(fn, a, b, FLOAT, LDOUBLE) argument
[all …]
/netbsd/src/external/gpl3/binutils/dist/include/opcode/
Dtic6x-insn-formats.h23 #define SAT(a) (((a) & 1) << TIC6X_COMPACT_SAT_POS) argument
24 #define BR(a) (((a) & 1) << TIC6X_COMPACT_BR_POS) argument
25 #define DSZ(a) (((a) & 7) << TIC6X_COMPACT_DSZ_POS) argument
28 #define BFLD1(a) 1, { a } argument
29 #define BFLD2(a, b) 2, { a, b } argument
30 #define BFLD3(a, b, c) 3, { a, b, c } argument
31 #define BFLD4(a, b, c, d) 4, { a, b, c, d } argument
36 #define CFLDS2(a, b) 5, { CFLDS, a, b } argument
37 #define CFLDS3(a, b, c) 6, { CFLDS, a, b, c } argument
38 #define CFLDS4(a, b, c, d) 7, { CFLDS, a, b, c, d } argument
[all …]
/netbsd/src/external/gpl3/gdb/dist/include/opcode/
Dtic6x-insn-formats.h23 #define SAT(a) (((a) & 1) << TIC6X_COMPACT_SAT_POS) argument
24 #define BR(a) (((a) & 1) << TIC6X_COMPACT_BR_POS) argument
25 #define DSZ(a) (((a) & 7) << TIC6X_COMPACT_DSZ_POS) argument
28 #define BFLD1(a) 1, { a } argument
29 #define BFLD2(a, b) 2, { a, b } argument
30 #define BFLD3(a, b, c) 3, { a, b, c } argument
31 #define BFLD4(a, b, c, d) 4, { a, b, c, d } argument
36 #define CFLDS2(a, b) 5, { CFLDS, a, b } argument
37 #define CFLDS3(a, b, c) 6, { CFLDS, a, b, c } argument
38 #define CFLDS4(a, b, c, d) 7, { CFLDS, a, b, c, d } argument
[all …]
/netbsd/src/lib/libpthread/
Dpthread_compat.c77 _lwp_kill(lwpid_t a, int b) in _lwp_kill()
84 _lwp_detach(lwpid_t a) in _lwp_detach()
91 _lwp_park(clockid_t a, int b, const struct timespec *c, lwpid_t d, in _lwp_park()
99 _lwp_unpark(lwpid_t a, const void *b) in _lwp_unpark()
106 _lwp_unpark_all(const lwpid_t *a, size_t b, const void *c) in _lwp_unpark_all()
113 _lwp_setname(lwpid_t a, const char *b) in _lwp_setname()
120 _lwp_getname(lwpid_t a, char *b, size_t c) in _lwp_getname()
127 _lwp_ctl(int a, struct lwpctl **b) in _lwp_ctl()
148 _sched_setaffinity(pid_t a, lwpid_t b, size_t c, const cpuset_t *d) in _sched_setaffinity()
155 _sched_getaffinity(pid_t a, lwpid_t b, size_t c, cpuset_t *d) in _sched_getaffinity()
[all …]
/netbsd/src/lib/libc/arch/sparc64/softfloat/
Dqp.c66 _Qp_add(float128 *c, float128 *a, float128 *b) in _Qp_add()
73 _Qp_cmp(float128 *a, float128 *b) in _Qp_cmp()
90 _Qp_cmpe(float128 *a, float128 *b) in _Qp_cmpe()
97 _Qp_div(float128 *c, float128 *a, float128 *b) in _Qp_div()
104 _Qp_dtoq(float128 *c, double a) in _Qp_dtoq()
114 _Qp_feq(float128 *a, float128 *b) in _Qp_feq()
121 _Qp_fge(float128 *a, float128 *b) in _Qp_fge()
128 _Qp_fgt(float128 *a, float128 *b) in _Qp_fgt()
135 _Qp_fle(float128 *a, float128 *b) in _Qp_fle()
142 _Qp_flt(float128 *a, float128 *b) in _Qp_flt()
[all …]
/netbsd/src/external/gpl3/gcc/dist/libgcc/config/ia64/
Dquadlib.c36 _U_Qfeq (long double a, long double b) in _U_Qfeq()
42 _U_Qfne (long double a, long double b) in _U_Qfne()
48 _U_Qfgt (long double a, long double b) in _U_Qfgt()
54 _U_Qfge (long double a, long double b) in _U_Qfge()
60 _U_Qflt (long double a, long double b) in _U_Qflt()
66 _U_Qfle (long double a, long double b) in _U_Qfle()
72 _U_Qfcomp (long double a, long double b) in _U_Qfcomp()
/netbsd/src/external/bsd/ntp/dist/sntp/libopts/
Dintprops.h108 #define INT_BITS_STRLEN_BOUND(b) (((b) * 146 + 484) / 485) argument
162 #define INT_ADD_RANGE_OVERFLOW(a, b, min, max) \ argument
169 #define INT_SUBTRACT_RANGE_OVERFLOW(a, b, min, max) \ argument
176 #define INT_NEGATE_RANGE_OVERFLOW(a, min, max) \ argument
185 #define INT_MULTIPLY_RANGE_OVERFLOW(a, b, min, max) \ argument
200 #define INT_DIVIDE_RANGE_OVERFLOW(a, b, min, max) \ argument
208 #define INT_REMAINDER_RANGE_OVERFLOW(a, b, min, max) \ argument
218 #define INT_LEFT_SHIFT_RANGE_OVERFLOW(a, b, min, max) \ argument
238 # define _GL_ADD_OVERFLOW(a, b, min, max) \ argument
240 # define _GL_SUBTRACT_OVERFLOW(a, b, min, max) \ argument
[all …]
/netbsd/src/external/gpl3/gdb/dist/include/
Dsymcat.h23 #define CONCAT2(a,b) a##b argument
24 #define CONCAT3(a,b,c) a##b##c argument
25 #define CONCAT4(a,b,c,d) a##b##c##d argument
26 #define CONCAT5(a,b,c,d,e) a##b##c##d##e argument
27 #define CONCAT6(a,b,c,d,e,f) a##b##c##d##e##f argument
34 #define CONCAT2(a,b) a/**/b argument
35 #define CONCAT3(a,b,c) a/**/b/**/c argument
36 #define CONCAT4(a,b,c,d) a/**/b/**/c/**/d argument
37 #define CONCAT5(a,b,c,d,e) a/**/b/**/c/**/d/**/e argument
38 #define CONCAT6(a,b,c,d,e,f) a/**/b/**/c/**/d/**/e/**/f argument
[all …]
/netbsd/src/external/gpl3/binutils/dist/include/
Dsymcat.h23 #define CONCAT2(a,b) a##b argument
24 #define CONCAT3(a,b,c) a##b##c argument
25 #define CONCAT4(a,b,c,d) a##b##c##d argument
26 #define CONCAT5(a,b,c,d,e) a##b##c##d##e argument
27 #define CONCAT6(a,b,c,d,e,f) a##b##c##d##e##f argument
34 #define CONCAT2(a,b) a/**/b argument
35 #define CONCAT3(a,b,c) a/**/b/**/c argument
36 #define CONCAT4(a,b,c,d) a/**/b/**/c/**/d argument
37 #define CONCAT5(a,b,c,d,e) a/**/b/**/c/**/d/**/e argument
38 #define CONCAT6(a,b,c,d,e,f) a/**/b/**/c/**/d/**/e/**/f argument
[all …]
/netbsd/src/external/gpl3/gcc/dist/include/
Dsymcat.h23 #define CONCAT2(a,b) a##b argument
24 #define CONCAT3(a,b,c) a##b##c argument
25 #define CONCAT4(a,b,c,d) a##b##c##d argument
26 #define CONCAT5(a,b,c,d,e) a##b##c##d##e argument
27 #define CONCAT6(a,b,c,d,e,f) a##b##c##d##e##f argument
34 #define CONCAT2(a,b) a/**/b argument
35 #define CONCAT3(a,b,c) a/**/b/**/c argument
36 #define CONCAT4(a,b,c,d) a/**/b/**/c/**/d argument
37 #define CONCAT5(a,b,c,d,e) a/**/b/**/c/**/d/**/e argument
38 #define CONCAT6(a,b,c,d,e,f) a/**/b/**/c/**/d/**/e/**/f argument
[all …]
/netbsd/src/external/gpl3/gcc/dist/libgcc/config/rs6000/
Dfloat128-hw.c42 __addkf3_hw (TFtype a, TFtype b) in __addkf3_hw()
48 __subkf3_hw (TFtype a, TFtype b) in __subkf3_hw()
54 __mulkf3_hw (TFtype a, TFtype b) in __mulkf3_hw()
60 __divkf3_hw (TFtype a, TFtype b) in __divkf3_hw()
66 __negkf2_hw (TFtype a) in __negkf2_hw()
72 __floatsikf_hw (SItype_ppc a) in __floatsikf_hw()
78 __floatunsikf_hw (USItype_ppc a) in __floatunsikf_hw()
84 __floatdikf_hw (DItype_ppc a) in __floatdikf_hw()
90 __floatundikf_hw (UDItype_ppc a) in __floatundikf_hw()
96 __fixkfsi_hw (TFtype a) in __fixkfsi_hw()
[all …]
/netbsd/src/external/gpl3/gdb/dist/opcodes/
Dia64-opc-b.c48 #define OpX6(a,b) (bOp (a) | bX6 (b)), (mOp | mX6) argument
49 #define OpPaWhaD(a,b,c,d) \ argument
51 #define OpPaWhcD(a,b,c,d) \ argument
53 #define OpBtypePaWhaD(a,b,c,d,e) \ argument
56 #define OpBtypePaWhaDPr(a,b,c,d,e,f) \ argument
59 #define OpX6BtypePaWhaD(a,b,c,d,e,f) \ argument
62 #define OpX6BtypePaWhaDPr(a,b,c,d,e,f,g) \ argument
65 #define OpIhWhb(a,b,c) \ argument
68 #define OpX6IhWhb(a,b,c,d) \ argument
80 #define BR(a,b) \ argument
[all …]

12345678910>>...47