Home
last modified time | relevance | path

Searched refs:Y (Results 1 – 25 of 1188) sorted by relevance

12345678910>>...48

/NextBSD/cddl/contrib/dtracetoolkit/Examples/
HDdnlcsnoop_example.txt9 9185 bash 9 Y /etc
10 9185 bash 3 Y /etc
11 12293 bash 9 Y /usr
12 12293 bash 3 Y /usr/bin
13 12293 bash 4 Y /usr/bin/find
14 12293 bash 7 Y /lib
15 12293 bash 3 Y /lib/ld.so.1
16 12293 find 6 Y /usr
17 12293 find 3 Y /usr/bin
18 12293 find 3 Y /usr/bin/find
[all …]
/NextBSD/contrib/llvm/include/llvm/Support/
HDCasting.h131 template <class X, class Y>
132 LLVM_ATTRIBUTE_UNUSED_RESULT inline bool isa(const Y &Val) {
133 return isa_impl_wrap<X, const Y,
134 typename simplify_type<const Y>::SimpleType>::doit(Val);
219 template <class X, class Y>
220 inline typename std::enable_if<!is_simple_type<Y>::value,
221 typename cast_retty<X, const Y>::ret_type>::type
222 cast(const Y &Val) {
225 X, const Y, typename simplify_type<const Y>::SimpleType>::doit(Val);
228 template <class X, class Y>
[all …]
/NextBSD/contrib/gcc/config/soft-fp/
HDop-common.h120 #define _FP_CHOOSENAN_SEMIRAW(fs, wc, R, X, Y, OP) \ argument
124 _FP_FRAC_SRL_##wc(Y, _FP_WORKBITS); \
125 _FP_CHOOSENAN(fs, wc, R, X, Y, OP); \
296 #define _FP_ADD_INTERNAL(fs, wc, R, X, Y, OP) \ argument
298 if (X##_s == Y##_s) \
302 int ediff = X##_e - Y##_e; \
306 if (Y##_e == 0) \
309 if (_FP_FRAC_ZEROP_##wc(Y)) \
321 _FP_FRAC_ADD_##wc(R, X, Y); \
342 _FP_FRAC_HIGH_##fs(Y) |= _FP_IMPLBIT_SH_##fs; \
[all …]
HDop-2.h113 #define _FP_FRAC_ADD_2(R,X,Y) \ argument
114 __FP_FRAC_ADD_2(R##_f1, R##_f0, X##_f1, X##_f0, Y##_f1, Y##_f0)
116 #define _FP_FRAC_SUB_2(R,X,Y) \ argument
117 __FP_FRAC_SUB_2(R##_f1, R##_f0, X##_f1, X##_f0, Y##_f1, Y##_f0)
119 #define _FP_FRAC_DEC_2(X,Y) \ argument
120 __FP_FRAC_DEC_2(X##_f1, X##_f0, Y##_f1, Y##_f0)
138 #define _FP_FRAC_EQ_2(X, Y) (X##_f1 == Y##_f1 && X##_f0 == Y##_f0) argument
139 #define _FP_FRAC_GT_2(X, Y) \ argument
140 (X##_f1 > Y##_f1 || (X##_f1 == Y##_f1 && X##_f0 > Y##_f0))
141 #define _FP_FRAC_GE_2(X, Y) \ argument
[all …]
HDop-1.h66 #define _FP_FRAC_ADD_1(R,X,Y) (R##_f = X##_f + Y##_f) argument
67 #define _FP_FRAC_SUB_1(R,X,Y) (R##_f = X##_f - Y##_f) argument
68 #define _FP_FRAC_DEC_1(X,Y) (X##_f -= Y##_f) argument
76 #define _FP_FRAC_EQ_1(X, Y) (X##_f == Y##_f) argument
77 #define _FP_FRAC_GE_1(X, Y) (X##_f >= Y##_f) argument
78 #define _FP_FRAC_GT_1(X, Y) (X##_f > Y##_f) argument
141 #define _FP_MUL_MEAT_1_imm(wfracbits, R, X, Y) \ argument
143 R##_f = X##_f * Y##_f; \
152 #define _FP_MUL_MEAT_1_wide(wfracbits, R, X, Y, doit) \ argument
155 doit(_Z_f1, _Z_f0, X##_f, Y##_f); \
[all …]
HDquad.h153 #define FP_ADD_Q(R,X,Y) _FP_ADD(Q,4,R,X,Y) argument
154 #define FP_SUB_Q(R,X,Y) _FP_SUB(Q,4,R,X,Y) argument
155 #define FP_MUL_Q(R,X,Y) _FP_MUL(Q,4,R,X,Y) argument
156 #define FP_DIV_Q(R,X,Y) _FP_DIV(Q,4,R,X,Y) argument
160 #define FP_CMP_Q(r,X,Y,un) _FP_CMP(Q,4,r,X,Y,un) argument
161 #define FP_CMP_EQ_Q(r,X,Y) _FP_CMP_EQ(Q,4,r,X,Y) argument
162 #define FP_CMP_UNORD_Q(r,X,Y) _FP_CMP_UNORD(Q,4,r,X,Y) argument
254 #define FP_ADD_Q(R,X,Y) _FP_ADD(Q,2,R,X,Y) argument
255 #define FP_SUB_Q(R,X,Y) _FP_SUB(Q,2,R,X,Y) argument
256 #define FP_MUL_Q(R,X,Y) _FP_MUL(Q,2,R,X,Y) argument
[all …]
HDdouble.h147 #define FP_ADD_D(R,X,Y) _FP_ADD(D,2,R,X,Y) argument
148 #define FP_SUB_D(R,X,Y) _FP_SUB(D,2,R,X,Y) argument
149 #define FP_MUL_D(R,X,Y) _FP_MUL(D,2,R,X,Y) argument
150 #define FP_DIV_D(R,X,Y) _FP_DIV(D,2,R,X,Y) argument
154 #define FP_CMP_D(r,X,Y,un) _FP_CMP(D,2,r,X,Y,un) argument
155 #define FP_CMP_EQ_D(r,X,Y) _FP_CMP_EQ(D,2,r,X,Y) argument
156 #define FP_CMP_UNORD_D(r,X,Y) _FP_CMP_UNORD(D,2,r,X,Y) argument
244 #define FP_ADD_D(R,X,Y) _FP_ADD(D,1,R,X,Y) argument
245 #define FP_SUB_D(R,X,Y) _FP_SUB(D,1,R,X,Y) argument
246 #define FP_MUL_D(R,X,Y) _FP_MUL(D,1,R,X,Y) argument
[all …]
HDop-4.h122 #define _FP_FRAC_ADD_4(R,X,Y) \ argument
125 Y##_f[3], Y##_f[2], Y##_f[1], Y##_f[0])
127 #define _FP_FRAC_SUB_4(R,X,Y) \ argument
130 Y##_f[3], Y##_f[2], Y##_f[1], Y##_f[0])
132 #define _FP_FRAC_DEC_4(X,Y) \ argument
134 Y##_f[3], Y##_f[2], Y##_f[1], Y##_f[0])
148 #define _FP_FRAC_EQ_4(X,Y) \ argument
149 (X##_f[0] == Y##_f[0] && X##_f[1] == Y##_f[1] \
150 && X##_f[2] == Y##_f[2] && X##_f[3] == Y##_f[3])
152 #define _FP_FRAC_GT_4(X,Y) \ argument
[all …]
HDsingle.h136 #define FP_ADD_S(R,X,Y) _FP_ADD(S,1,R,X,Y) argument
137 #define FP_SUB_S(R,X,Y) _FP_SUB(S,1,R,X,Y) argument
138 #define FP_MUL_S(R,X,Y) _FP_MUL(S,1,R,X,Y) argument
139 #define FP_DIV_S(R,X,Y) _FP_DIV(S,1,R,X,Y) argument
143 #define FP_CMP_S(r,X,Y,un) _FP_CMP(S,1,r,X,Y,un) argument
144 #define FP_CMP_EQ_S(r,X,Y) _FP_CMP_EQ(S,1,r,X,Y) argument
145 #define FP_CMP_UNORD_S(r,X,Y) _FP_CMP_UNORD(S,1,r,X,Y) argument
/NextBSD/contrib/groff/font/devdvi/
HDHIEC21 bq Y -87360
22 bq :Y -87360
23 bq 'Y -87360
60 Bq Y -87360
61 Bq :Y -87360
62 Bq 'Y -87360
160 A Y -87360
161 A :Y -87360
162 A 'Y -87360
178 D Y -29120
[all …]
HDHREC20 bq Y -87360
21 bq :Y -87360
22 bq 'Y -87360
59 Bq Y -87360
60 Bq :Y -87360
61 Bq 'Y -87360
159 A Y -87360
160 A :Y -87360
161 A 'Y -87360
177 D Y -29120
[all …]
HDHBEC20 bq Y -96096
21 bq :Y -96096
22 bq 'Y -96096
59 Bq Y -96096
60 Bq :Y -96096
61 Bq 'Y -96096
159 A Y -96096
160 A :Y -96096
161 A 'Y -96096
177 D Y -32032
[all …]
HDHBIEC21 bq Y -96096
22 bq :Y -96096
23 bq 'Y -96096
60 Bq Y -96096
61 Bq :Y -96096
62 Bq 'Y -96096
160 A Y -96096
161 A :Y -96096
162 A 'Y -96096
178 D Y -32032
[all …]
HDTREC20 bq Y -87360
21 bq :Y -87360
22 bq 'Y -87360
59 Bq Y -87360
60 Bq :Y -87360
61 Bq 'Y -87360
159 A Y -87360
160 A :Y -87360
161 A 'Y -87360
177 D Y -29120
[all …]
HDTBEC20 bq Y -100464
21 bq :Y -100464
22 bq 'Y -100464
59 Bq Y -100464
60 Bq :Y -100464
61 Bq 'Y -100464
159 A Y -100464
160 A :Y -100464
161 A 'Y -100464
177 D Y -33488
[all …]
/NextBSD/contrib/gcc/config/rs6000/
HDsfp-machine.h6 #define _FP_MUL_MEAT_S(R,X,Y) \ argument
7 _FP_MUL_MEAT_1_wide(_FP_WFRACBITS_S,R,X,Y,umul_ppmm)
8 #define _FP_MUL_MEAT_D(R,X,Y) \ argument
9 _FP_MUL_MEAT_2_wide(_FP_WFRACBITS_D,R,X,Y,umul_ppmm)
10 #define _FP_MUL_MEAT_Q(R,X,Y) \ argument
11 _FP_MUL_MEAT_4_wide(_FP_WFRACBITS_Q,R,X,Y,umul_ppmm)
13 #define _FP_DIV_MEAT_S(R,X,Y) _FP_DIV_MEAT_1_loop(S,R,X,Y) argument
14 #define _FP_DIV_MEAT_D(R,X,Y) _FP_DIV_MEAT_2_udiv(D,R,X,Y) argument
15 #define _FP_DIV_MEAT_Q(R,X,Y) _FP_DIV_MEAT_4_udiv(Q,R,X,Y) argument
27 #define _FP_CHOOSENAN(fs, wc, R, X, Y, OP) \ argument
[all …]
/NextBSD/contrib/llvm/tools/clang/include/clang/Basic/
HDVersionTuple.h102 friend bool operator==(const VersionTuple& X, const VersionTuple &Y) {
103 return X.Major == Y.Major && X.Minor == Y.Minor &&
104 X.Subminor == Y.Subminor && X.Build == Y.Build;
111 friend bool operator!=(const VersionTuple &X, const VersionTuple &Y) {
112 return !(X == Y);
119 friend bool operator<(const VersionTuple &X, const VersionTuple &Y) {
121 std::tie(Y.Major, Y.Minor, Y.Subminor, Y.Build);
128 friend bool operator>(const VersionTuple &X, const VersionTuple &Y) {
129 return Y < X;
137 friend bool operator<=(const VersionTuple &X, const VersionTuple &Y) {
[all …]
/NextBSD/crypto/openssl/crypto/bn/
HDbn_gcd.c229 BIGNUM *A, *B, *X, *Y, *M, *D, *T, *R = NULL; in BN_mod_inverse() local
247 Y = BN_CTX_get(ctx); in BN_mod_inverse()
260 BN_zero(Y); in BN_mod_inverse()
327 if (BN_is_odd(Y)) { in BN_mod_inverse()
328 if (!BN_uadd(Y, Y, n)) in BN_mod_inverse()
332 if (!BN_rshift1(Y, Y)) in BN_mod_inverse()
354 if (!BN_uadd(X, X, Y)) in BN_mod_inverse()
364 if (!BN_uadd(Y, Y, X)) in BN_mod_inverse()
471 if (!BN_add(tmp, X, Y)) in BN_mod_inverse()
489 if (!BN_add(tmp, tmp, Y)) in BN_mod_inverse()
[all …]
/NextBSD/crypto/openssl/crypto/ec/asm/
HDecp_nistz256-avx2.pl413 my ($B,$Y,$T0,$AND_MASK,$OVERFLOW)=map("%ymm$_",(9..13));
591 vpand $AND_MASK, $ACC0, $Y
604 vpmuludq $AND_MASK, $Y, $T0
611 vpmuludq 32*3(%rax), $Y, $T0
616 vpsllq \$18, $Y, $OVERFLOW
619 vpmuludq %ymm14, $Y, $T0
621 vpmuludq %ymm15, $Y, $OVERFLOW
668 vpand $AND_MASK, $ACC0, $Y
678 vpmuludq $AND_MASK, $Y, $T0
685 vpmuludq 32*3(%rax), $Y, $T0
[all …]
/NextBSD/contrib/groff/font/devps/
HDPR13 A Y -111
24 L Y -92
33 R Y -37
83 Y v -90
84 Y u -90
85 Y u0020 -18
86 Y ; -74
87 Y q -90
88 Y . -111
89 Y p -111
[all …]
HDBMI8 A Y -62
16 L Y 7
22 R Y 11
68 Y v -19
69 Y u -31
70 Y ; -40
71 Y q -72
72 Y . -100
73 Y p -37
74 Y o -75
[all …]
HDBMB10 A Y -52
18 L Y -35
26 R Y -20
72 Y v 24
73 Y u -13
74 Y ; -34
75 Y q -66
76 Y . -105
77 Y p -23
78 Y o -66
[all …]
HDPBI14 A Y -74
26 L Y -74
35 R Y -37
83 Y v -30
84 Y u -50
85 Y ; -55
86 Y q -92
87 Y . -55
88 Y p -74
89 Y o -111
[all …]
HDPI14 A Y -55
25 L Y -74
33 R Y -55
83 Y v -74
84 Y u -92
85 Y ; -74
86 Y q -92
87 Y . -92
88 Y p -74
89 Y o -111
[all …]
/NextBSD/crypto/openssl/crypto/md5/asm/
HDmd5-ia64.S147 #define Y in21 macro
469 dep.z Y = Z, 32, 32 ;; \
470 shrp Z = Z, Y, 64 - s ; \
482 dep.z Y = Z, 32, 32 ;; \
483 shrp Z = Z, Y, 64 - s ; \
496 and Y = b, d ; \
501 or Y = Y, X ;; \
502 add Z = Z, Y ; \
510 xor Y = b, c ; \
515 xor Y = Y, d ;; \
[all …]

12345678910>>...48