Home
last modified time | relevance | path

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

123456

/titanic_50/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()
[all …]
/titanic_50/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->new); in merge()
301 change(3, &d1->new, 0); in merge()
303 d1++; in merge()
[all …]
/titanic_50/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
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;
117 FREE(d1.data, d1.length);
134 FREE(d1.data, d1.length);
147 FREE(d1.data, d1.length);
160 FREE(d1.data, d1.length);
[all …]
/titanic_50/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_50/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->is_children, in iodev_walk()
132 d1 = d1->is_next; in iodev_walk()
[all …]
/titanic_50/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, sizeof (d1)); in k5_ef_mac()
130 d1.cd_format = CRYPTO_DATA_RAW; in k5_ef_mac()
[all …]
/titanic_50/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()
/titanic_50/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()
[all …]
/titanic_50/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, d2)
[all …]
/titanic_50/usr/src/lib/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…
61 unset d1.res
63 d1.u[z]=( fd=5 events="POLLOUT" revents="" )
64 { poll -e d1.res -t 5. d1.u ; } 5</dev/null 5>/dev/null || err_exit "poll returned non-zero exit co…
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 in ':' ' :' ': ' ' : '
384 $f1$d1|$d1$f2) continue ;;
[all …]
/titanic_50/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_50/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, d2; 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)) != 0) in krb5_dk_decrypt_maybe_trunc_hmac()
/titanic_50/usr/src/lib/libgen/common/
H A Drmdirp.c54 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_50/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, d2; in aes_ccm_decrypt() local
313 bzero(&d1, sizeof (d1)); in aes_ccm_decrypt()
[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_50/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_50/usr/src/lib/libast/common/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 #define PERM6464(d,d0,d1,cpp,p) \ argument
291 LOAD(d,d0,d1,(p)[(0<<CHUNKBITS)+(cpp)[0]]); \
292 OR (d,d0,d1,(p)[(1<<CHUNKBITS)+(cpp)[1]]); \
293 OR (d,d0,d1,(p)[(2<<CHUNKBITS)+(cpp)[2]]); \
294 OR (d,d0,d1,(p)[(3<<CHUNKBITS)+(cpp)[3]]); \
[all …]
/titanic_50/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()
/titanic_50/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_t)(d2), \
[all …]
/titanic_50/usr/src/lib/libast/common/comp/
H A Ddup2.c35 dup2(int d1, int d2)
39 if (d1 == d2) return(d1);
43 return(fcntl(d1, F_DUPFD, d2));
/titanic_50/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_50/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
76 if ((m1 == m2) && (d1 == d2) && (y1 == y2)) in days_btwn()
78 if ((m1 == m2) && (d1 < d2)) { 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()

123456