Home
last modified time | relevance | path

Searched refs:d1 (Results 1 – 25 of 139) sorted by relevance

123456

/titanic_52/usr/src/lib/libm/common/m9x/
H A Dfenv_inlines.h345 sse_cvtss2sd(float *f1, double *d1) in sse_cvtss2sd() argument
352 : "=m" (*d1), "=x" (tmp) in sse_cvtss2sd()
432 sse_cmpeqsd(double *d1, double *d2, long long *ll1) in sse_cmpeqsd() argument
437 : "=m" (*ll1), "+x" (*d1) in sse_cmpeqsd()
442 sse_cmpltsd(double *d1, double *d2, long long *ll1) in sse_cmpltsd() argument
447 : "=m" (*ll1), "+x" (*d1) in sse_cmpltsd()
452 sse_cmplesd(double *d1, double *d2, long long *ll1) in sse_cmplesd() argument
457 : "=m" (*ll1), "+x" (*d1) in sse_cmplesd()
462 sse_cmpunordsd(double *d1, double *d2, long long *ll1) in sse_cmpunordsd() argument
467 : "=m" (*ll1), "+x" (*d1) in sse_cmpunordsd()
473 sse_minsd(double * d1,double * d2,double * d3) sse_minsd() argument
483 sse_maxsd(double * d1,double * d2,double * d3) sse_maxsd() argument
493 sse_addsd(double * d1,double * d2,double * d3) sse_addsd() argument
503 sse_subsd(double * d1,double * d2,double * d3) sse_subsd() argument
513 sse_mulsd(double * d1,double * d2,double * d3) sse_mulsd() argument
523 sse_divsd(double * d1,double * d2,double * d3) sse_divsd() argument
533 sse_sqrtsd(double * d1,double * d2) sse_sqrtsd() argument
545 sse_ucomisd(double * d1,double * d2) sse_ucomisd() argument
551 sse_comisd(double * d1,double * d2) sse_comisd() argument
557 sse_cvtsd2ss(double * d1,float * f1) sse_cvtsd2ss() argument
569 sse_cvtsi2sd(int * i1,double * d1) sse_cvtsi2sd() argument
580 sse_cvttsd2si(double * d1,int * i1) sse_cvttsd2si() argument
592 sse_cvtsd2si(double * d1,int * i1) sse_cvtsd2si() argument
605 sse_cvtsi2sdq(long long * ll1,double * d1) sse_cvtsi2sdq() argument
617 sse_cvttsd2siq(double * d1,long long * ll1) sse_cvttsd2siq() argument
629 sse_cvtsd2siq(double * d1,long long * ll1) sse_cvtsd2siq() argument
[all...]
/titanic_52/usr/src/cmd/diff3/
H A Ddiff3prog.c278 struct diff *d1, *d2, *d3; in merge() local
282 d1 = d13; in merge()
285 for (; (t1 = d1 < d13+m1) | (t2 = d2 < d23+m2); ) { in merge()
288 d1->old.from, d1->old.to, in merge()
289 d1->new.from, d1->new.to, in merge()
295 if (!t2 || t1 && d1->new.to < d2->new.from) { in merge()
299 change(1, &d1->old, 0); in merge()
300 keep(2, &d1 in merge()
[all...]
/titanic_52/usr/src/uts/common/gssapi/mechs/krb5/crypto/arcfour/
H A Dk5_arcfour.c84 krb5_data d1, d2, d3, salt, plaintext, checksum, ciphertext, confounder; local
96 * d1 is the contents buffer for key k1.
99 d1.length=keybytes;
100 d1.data=MALLOC(d1.length);
101 if (d1.data == NULL)
104 k1.length=d1.length;
105 k1.contents= (void *) d1.data;
109 * checksum field. 'd2' == 'd1' when not using the exportable
117 FREE(d1
280 krb5_data d1,d2,d3,salt,ciphertext,plaintext,checksum; global() local
[all...]
/titanic_52/usr/src/uts/common/io/e1000g/
H A De1000g_debug.h78 #define E1000G_DEBUGLOG_1(Adapter, Level, fmt, d1) \ argument
79 if (e1000g_debug) e1000g_log((Adapter), (Level), (fmt), (d1))
81 #define E1000G_DEBUGLOG_2(Adapter, Level, fmt, d1, d2) \ argument
82 if (e1000g_debug) e1000g_log((Adapter), (Level), (fmt), (d1), (d2))
84 #define E1000G_DEBUGLOG_3(Adapter, Level, fmt, d1, d2, d3) \ argument
85 if (e1000g_debug) e1000g_log((Adapter), (Level), (fmt), (d1),\
88 #define E1000G_DEBUGLOG_4(Adapter, Level, fmt, d1, d2, d3, d4) \ argument
89 if (e1000g_debug) e1000g_log((Adapter), (Level), (fmt), (d1),\
92 #define E1000G_DEBUGLOG_5(Adapter, Level, fmt, d1, d2, d3, d4, d5) \ argument
93 if (e1000g_debug) e1000g_log((Adapter), (Level), (fmt), (d1),\
[all...]
/titanic_52/usr/src/cmd/stat/common/
H A Dwalkers.c112 iodev_walk(struct iodev_snapshot *d1, struct iodev_snapshot *d2, in iodev_walk() argument
117 while (d1 && d2) { in iodev_walk()
118 if (strcmp(d1->is_name, d2->is_name) < 0) { in iodev_walk()
120 cb(d1, NULL, data); in iodev_walk()
121 (void) iodev_walk(d1->is_children, NULL, cb, data); in iodev_walk()
122 d1 = d1->is_next; in iodev_walk()
123 } else if (strcmp(d1->is_name, d2->is_name) > 0) { in iodev_walk()
129 cb(d1, d2, data); in iodev_walk()
130 changed |= iodev_walk(d1 in iodev_walk()
304 iodev_report(struct iodev_snapshot * d1,struct iodev_snapshot * d2) iodev_report() argument
[all...]
/titanic_52/usr/src/uts/common/gssapi/mechs/krb5/crypto/hash_provider/
H A Dhash_kef_generic.c23 crypto_data_t d1, d2; in k5_ef_hash() local
29 bzero(&d1, sizeof (d1)); in k5_ef_hash()
59 d1.cd_length = input[i].length; in k5_ef_hash()
60 d1.cd_format = CRYPTO_DATA_RAW; in k5_ef_hash()
61 d1.cd_offset = 0; in k5_ef_hash()
62 d1.cd_raw = v1; in k5_ef_hash()
64 rv = crypto_digest_update(ctxp, &d1, NULL); in k5_ef_hash()
96 crypto_data_t d1, d2; in k5_ef_mac() local
108 bzero(&d1, sizeo in k5_ef_mac()
[all...]
/titanic_52/usr/src/cmd/eqn/
H A Dshift.c23 int shval, d1, h1, b1, h2, b2; in bshiftb() local
43 d1 = VERT(EM(0.5, effps2)); in bshiftb()
45 d1 = VERT(1); in bshiftb()
47 shval = - d1 + h2 - b2; in bshiftb()
48 if (d1+b1 > h2) /* move little sub down */ in bshiftb()
50 ebase[yyval] = b1 + max(0, h2-b1-d1); in bshiftb()
51 eht[yyval] = h1 + max(0, h2-b1-d1); in bshiftb()
61 d1 = VERT(EM(0.2, effps)); in bshiftb()
63 d1 = VERT(1); in bshiftb()
73 shval = -(h1-b1) + h2-b2 - d1; in bshiftb()
114 int effps, h1, h2, h3, b1, b2, b3, subsh, d1, d2, supsh, treg; shift2() local
[all...]
/titanic_52/usr/src/uts/common/gssapi/mechs/krb5/crypto/des/
H A Def_crypto.c23 crypto_data_t d1, d2; in k5_ef_crypto() local
30 bzero(&d1, sizeof (d1)); in k5_ef_crypto()
33 d1.cd_format = CRYPTO_DATA_RAW; in k5_ef_crypto()
34 d1.cd_offset = 0; in k5_ef_crypto()
35 d1.cd_length = length; in k5_ef_crypto()
36 d1.cd_raw.iov_base = (char *)in; in k5_ef_crypto()
37 d1.cd_raw.iov_len = length; in k5_ef_crypto()
62 rv = crypto_encrypt(&mech, &d1, in k5_ef_crypto()
68 rv = crypto_decrypt(&mech, &d1, in k5_ef_crypto()
[all...]
/titanic_52/usr/src/uts/common/io/ixgbe/
H A Dixgbe_debug.h50 #define IXGBE_DEBUGLOG_1(adapter, fmt, d1) \ argument
51 ixgbe_log((adapter), (fmt), (d1))
52 #define IXGBE_DEBUGLOG_2(adapter, fmt, d1, d2) \ argument
53 ixgbe_log((adapter), (fmt), (d1), (d2))
54 #define IXGBE_DEBUGLOG_3(adapter, fmt, d1, d2, d3) \ argument
55 ixgbe_log((adapter), (fmt), (d1), (d2), (d3))
56 #define IXGBE_DEBUGLOG_6(adapter, fmt, d1, d2, d3, d4, d5, d6) \ argument
57 ixgbe_log((adapter), (fmt), (d1), (d2), (d3), (d4), (d5), (d6))
62 #define IXGBE_DEBUGLOG_1(adapter, fmt, d1)
63 #define IXGBE_DEBUGLOG_2(adapter, fmt, d1, d
[all...]
/titanic_52/usr/src/cmd/ast/libshell/common/tests/
H A Dsun_solaris_builtin_poll.sh47 compound d1=(
55 cat /dev/zero | { redirect 5<&0 ; poll -e d1.res -t 5. d1.u ; } || err_exit "poll returned non-zero exit code $?"
56 [[ "${d1.u[x].revents}" == "POLLIN" ]] || err_exit "d1.u[x].revents contains '${d1.u[x].revents}', not POLLIN"
57 [[ "${d1.u[y].revents}" == "POLLIN" ]] || err_exit "d1.u[y].revents contains '${d1.u[y].revents}', not POLLIN"
58 [[ "${d1
[all...]
/titanic_52/usr/src/lib/libbc/libc/gen/common/sparc/
H A Disinf.c36 isinf( d0, d1 ) in isinf() argument
37 unsigned d0,d1; in isinf()
40 if (d1 != 0 ) return 0; /* nope -- low-order must be all zeros */
46 isnan( d0,d1 ) in isnan() argument
47 unsigned d0,d1; in isnan()
53 if ((d0 & ~(EXPONENT|SIGN)) == 0 && d1 == 0 ) return 0; /* must have bits */
/titanic_52/usr/src/uts/common/gssapi/mechs/krb5/crypto/dk/
H A Ddk_encrypt.c67 krb5_data d1, d2; in krb5_dk_encrypt() local
100 d1.length = blocksize; in krb5_dk_encrypt()
101 d1.data = (char *) plaintext; in krb5_dk_encrypt()
103 if ((ret = krb5_c_random_make_octets(context, &d1))) in krb5_dk_encrypt()
112 d1.length = plainlen; in krb5_dk_encrypt()
113 d1.data = (char *) plaintext; in krb5_dk_encrypt()
122 ivec, &d1, &d2)))) in krb5_dk_encrypt()
138 if ((ret = krb5_hmac(context, derived_hmac_key, &d1, &d2))) { in krb5_dk_encrypt()
144 1, &d1, &d2))) { in krb5_dk_encrypt()
231 krb5_data d1, d in krb5int_aes_dk_encrypt() local
[all...]
H A Ddk_decrypt.c87 krb5_data d1, d2; in krb5_dk_decrypt_maybe_trunc_hmac() local
129 d1.length = enclen; in krb5_dk_decrypt_maybe_trunc_hmac()
130 d1.data = input->data; in krb5_dk_decrypt_maybe_trunc_hmac()
136 ivec, &d1, &d2))) != 0) in krb5_dk_decrypt_maybe_trunc_hmac()
140 cn = (unsigned char *) d1.data + d1.length - blocksize; in krb5_dk_decrypt_maybe_trunc_hmac()
151 d1.length = hashsize; in krb5_dk_decrypt_maybe_trunc_hmac()
152 d1.data = (char *) cksum; in krb5_dk_decrypt_maybe_trunc_hmac()
155 if ((ret = krb5_hmac(context, derived_hmac_key, &d2, &d1)) != 0) in krb5_dk_decrypt_maybe_trunc_hmac()
159 1, &d2, &d1)) ! in krb5_dk_decrypt_maybe_trunc_hmac()
[all...]
/titanic_52/usr/src/lib/libgen/common/
H A Drmdirp.c35 * The remaining path, which is not removed for some reason, is stored in "d1".
36 * If nothing remains, "d1" is empty.
54 rmdirp(char *d, char *d1) in rmdirp() argument
72 (void) strcpy(d1, d); in rmdirp()
93 (void) strcpy(d1, d); in rmdirp()
101 (void) strcpy(d1, d); in rmdirp()
108 (void) strcpy(d1, d); in rmdirp()
117 (void) strcpy(d1, d); in rmdirp()
130 *d1 = '\0'; in rmdirp()
/titanic_52/usr/src/uts/common/io/net80211/
H A Dnet80211_crypto_ccmp.c236 crypto_data_t d1, d2; in aes_ccm_encrypt() local
260 bzero(&d1, sizeof (d1)); in aes_ccm_encrypt()
263 d1.cd_format = CRYPTO_DATA_RAW; in aes_ccm_encrypt()
264 d1.cd_offset = 0; in aes_ccm_encrypt()
265 d1.cd_length = plain_len; in aes_ccm_encrypt()
266 d1.cd_raw.iov_base = (char *)plaintext; in aes_ccm_encrypt()
267 d1.cd_raw.iov_len = plain_len; in aes_ccm_encrypt()
276 rv = crypto_encrypt(&mech, &d1, &crkey, NULL, &d2, NULL); in aes_ccm_encrypt()
289 crypto_data_t d1, d in aes_ccm_decrypt() local
[all...]
H A Dnet80211_crypto_wep.c359 crypto_data_t d1, d2; in rc4_crypt() local
364 bzero(&d1, sizeof (d1)); in rc4_crypt()
367 d1.cd_format = CRYPTO_DATA_RAW; in rc4_crypt()
368 d1.cd_offset = 0; in rc4_crypt()
369 d1.cd_length = buflen; in rc4_crypt()
370 d1.cd_raw.iov_base = (char *)inbuf; in rc4_crypt()
371 d1.cd_raw.iov_len = buflen; in rc4_crypt()
379 rv = crypto_encrypt_update(ctx, &d1, &d2, NULL); in rc4_crypt()
/titanic_52/usr/src/contrib/ast/src/lib/libast/uwin/
H A Dcrypt.c276 #define ZERO(d,d0,d1) d0 = 0, d1 = 0 argument
277 #define LOAD(d,d0,d1,bl) d0 = (bl).b32.i0, d1 = (bl).b32.i1 argument
278 #define LOADREG(d,d0,d1,s,s0,s1) d0 = s0, d1 = s1 argument
279 #define OR(d,d0,d1,bl) d0 |= (bl).b32.i0, d1 |= (bl).b32.i1 argument
281 #define DCL_BLOCK(d,d0,d1) long d0, d1 argument
290 PERM6464(d,d0,d1,cpp,p) global() argument
299 PERM3264(d,d0,d1,cpp,p) global() argument
308 PERM6464(d,d0,d1,cpp,p) global() argument
310 PERM3264(d,d0,d1,cpp,p) global() argument
[all...]
/titanic_52/usr/src/uts/common/io/igb/
H A Digb_debug.h50 #define IGB_DEBUGLOG_1(adapter, fmt, d1) \ argument
51 igb_log((adapter), (IGB_LOG_INFO), (fmt), (d1))
52 #define IGB_DEBUGLOG_2(adapter, fmt, d1, d2) \ argument
53 igb_log((adapter), (IGB_LOG_INFO), (fmt), (d1), (d2))
54 #define IGB_DEBUGLOG_3(adapter, fmt, d1, d2, d3) \ argument
55 igb_log((adapter), (IGB_LOG_INFO), (fmt), (d1), (d2), (d3))
/titanic_52/usr/src/lib/libidmap/common/
H A Ddirectory_helper.c59 directory_t d1 = NULL; in directory_sid_from_name_common() local
78 de = directory_open(&d1); in directory_sid_from_name_common()
82 d1 = d; in directory_sid_from_name_common()
85 de = directory_get_v(d1, &ret_list, &name, 1, type, attrs); in directory_sid_from_name_common()
121 directory_close(d1); in directory_sid_from_name_common()
170 directory_t d1 = NULL; in directory_canon_common() local
194 de = directory_open(&d1); in directory_canon_common()
198 d1 = d; in directory_canon_common()
201 de = directory_get_v(d1, &ret_list, &id, 1, id_type, attrs); in directory_canon_common()
234 directory_close(d1); in directory_canon_common()
[all...]
/titanic_52/usr/src/uts/common/sys/
H A Dftrace.h106 #define FTRACE_1(fmt, d1) \ argument
109 ftrace_1(fmt, d1, caller()); \
111 #define FTRACE_2(fmt, d1, d2) \ argument
114 ftrace_2(fmt, d1, d2, caller()); \
116 #define FTRACE_3(fmt, d1, d2, d3) \ argument
119 ftrace_3(fmt, d1, d2, d3, caller()); \
H A Dvtrace.h1078 #define TRACE_1(fac, tag, name, d1) { \ argument
1080 __dtrace_probe___vtrace_##tag((ulong_t)(d1)); \
1083 #define TRACE_2(fac, tag, name, d1, d2) { \ argument
1085 __dtrace_probe___vtrace_##tag((ulong_t)(d1), (ulong_t)(d2)); \
1088 #define TRACE_3(fac, tag, name, d1, d2, d3) { \ argument
1090 __dtrace_probe___vtrace_##tag((ulong_t)(d1), (ulong_t)(d2), \
1094 #define TRACE_4(fac, tag, name, d1, d2, d3, d4) { \ argument
1097 __dtrace_probe___vtrace_##tag((ulong_t)(d1), (ulong_t)(d2), \
1101 #define TRACE_5(fac, tag, name, d1, d2, d3, d4, d5) { \ argument
1104 __dtrace_probe___vtrace_##tag((ulong_t)(d1), (ulong_
[all...]
/titanic_52/usr/src/cmd/picl/plugins/sun4u/snowbird/frutree/
H A Dpiclfrutree.h53 #define FRUTREE_DEBUG1(lvl, fmt, d1) \ argument
55 syslog(LOG_DEBUG, fmt, d1); \
57 #define FRUTREE_DEBUG2(lvl, fmt, d1, d2) \ argument
59 syslog(LOG_DEBUG, fmt, d1, d2); \
61 #define FRUTREE_DEBUG3(lvl, fmt, d1, d2, d3) \ argument
63 syslog(LOG_DEBUG, fmt, d1, d2, d3); \
65 #define FRUTREE_DEBUG4(lvl, fmt, d1, d2, d3, d4) \ argument
67 syslog(LOG_DEBUG, fmt, d1, d2, d3, d4); \
/titanic_52/usr/src/contrib/ast/src/lib/libast/comp/
H A Ddup2.c35 dup2(int d1, int d2)
39 if (d1 == d2) return(d1);
43 return(fcntl(d1, F_DUPFD, d2));
/titanic_52/usr/src/cmd/cron/
H A Dfuncs.c64 days_btwn(int m1, int d1, int y1, int m2, int d2, int y2) in days_btwn() argument
68 * m1/d1/y1 and m2/d2/y2. in days_btwn()
76 if ((m1 == m2) && (d1 == d2) && (y1 == y2)) in days_btwn()
78 if ((m1 == m2) && (d1 < d2)) { in days_btwn()
80 * In case of d2==29 ,d1==28 and m1==m2==Feb and year is not in days_btwn()
88 return (p*365 + d2-d1-1); in days_btwn()
90 return (d2-d1-1); in days_btwn()
93 days = (days_in_mon(m1, y1)-d1) + (d2-1); in days_btwn()
/titanic_52/usr/src/contrib/ast/src/cmd/ksh93/tests/
H A Dvariables.sh335 for d1 in '' ' ' ':' ' :' ': ' ' : '
337 case $f1$d1 in
338 '') split "$d0$f1$d1" "[0]" "()()" ;;
340 *) split "$d0$f1$d1" "[1]($f1)" "($f1)()" ;;
355 for d1 in ' ' ':' ' :' ': ' ' : '
358 $f1$d1|$d1$f2) continue ;;
363 '') split "$d0$f1$d1$f2$d2" "[1]($f1)" "($f1)()" ;;
365 *) split "$d0$f1$d1$f2$d2" "[2]($f1)($f2)" "($f1)($f2)" ;;
381 for d1 i
[all...]

123456