Searched refs:d1 (Results 1 - 25 of 116) sorted by relevance

12345

/freebsd-10.1-release/contrib/gcc/
H A Dfp-test.c82 volatile double d1 = 1.0, d2 = 1.0, d3 = 1.0; variable
122 d1 = f1;
133 f1 = d1;
136 d1 = -d2;
137 d1 = d2 + d3;
138 d1 = d2 - d3;
139 d1 = d2 * d3;
140 d1 = d2 / d3;
141 d1 += d2;
142 d1
[all...]
/freebsd-10.1-release/crypto/openssl/ssl/
H A Dd1_lib.c99 DTLS1_STATE *d1; local
103 if ((d1 = OPENSSL_malloc(sizeof *d1)) == NULL)
105 memset(d1, 0, sizeof *d1);
107 /* d1->handshake_epoch=0; */
109 d1->unprocessed_rcds.q = pqueue_new();
110 d1->processed_rcds.q = pqueue_new();
111 d1->buffered_messages = pqueue_new();
112 d1
[all...]
H A Dd1_pkt.c309 &((s)->d1->unprocessed_rcds))
317 &((s)->d1->processed_rcds))
328 item = pqueue_peek(s->d1->unprocessed_rcds.q);
331 if (s->d1->unprocessed_rcds.epoch != s->d1->r_epoch)
349 while (pqueue_peek(s->d1->unprocessed_rcds.q)) {
383 if (dtls1_buffer_record(s, &(s->d1->processed_rcds),
393 s->d1->processed_rcds.epoch = s->d1->r_epoch;
394 s->d1
[all...]
H A Dd1_both.c232 if (s->d1->link_mtu) {
233 s->d1->mtu =
234 s->d1->link_mtu - BIO_dgram_get_mtu_overhead(SSL_get_wbio(s));
235 s->d1->link_mtu = 0;
239 if (s->d1->mtu < dtls1_min_mtu(s)) {
241 s->d1->mtu =
248 if (s->d1->mtu < dtls1_min_mtu(s)) {
250 s->d1->mtu = dtls1_min_mtu(s);
252 s->d1->mtu, NULL);
274 OPENSSL_assert(s->d1
[all...]
/freebsd-10.1-release/lib/libc/arm/aeabi/
H A Daeabi_vfp_double.S39 LOAD_DREG(d1, r2, r3)
40 vcmp.f64 d0, d1
50 LOAD_DREG(d1, r2, r3)
51 vcmp.f64 d0, d1
61 LOAD_DREG(d1, r2, r3)
62 vcmp.f64 d0, d1
72 LOAD_DREG(d1, r2, r3)
73 vcmp.f64 d0, d1
83 LOAD_DREG(d1, r2, r3)
84 vcmp.f64 d0, d1
[all...]
/freebsd-10.1-release/contrib/unbound/util/data/
H A Ddname.h94 * @param d1: dname to compare
99 int query_dname_compare(uint8_t* d1, uint8_t* d2);
116 * @param d1: dname to compare
121 int dname_pkt_compare(struct sldns_buffer* pkt, uint8_t* d1, uint8_t* d2);
178 * @param d1: first dname. pointer to uncompressed wireformat.
183 * @return: 0 for equal, -1 smaller, or +1 d1 larger than d2.
185 int dname_lab_cmp(uint8_t* d1, int labs1, uint8_t* d2, int labs2, int* mlabs);
188 * See if domain name d1 is a strict subdomain of d2.
190 * @param d1: domain name, uncompressed wireformat
191 * @param labs1: number of labels in d1, includin
[all...]
H A Ddname.c98 query_dname_compare(register uint8_t* d1, register uint8_t* d2) argument
101 log_assert(d1 && d2);
102 lab1 = *d1++;
116 if(*d1 != *d2 &&
117 tolower((int)*d1) != tolower((int)*d2)) {
118 if(tolower((int)*d1) < tolower((int)*d2))
122 d1++;
126 lab1 = *d1++;
231 dname_pkt_compare(sldns_buffer* pkt, uint8_t* d1, uint8_t* d2) argument
234 log_assert(pkt && d1
438 dname_lab_cmp(uint8_t* d1, int labs1, uint8_t* d2, int labs2, int* mlabs) argument
580 dname_strict_subdomain(uint8_t* d1, int labs1, uint8_t* d2, int labs2) argument
594 dname_strict_subdomain_c(uint8_t* d1, uint8_t* d2) argument
601 dname_subdomain_c(uint8_t* d1, uint8_t* d2) argument
703 dname_canon_lab_cmp(uint8_t* d1, int labs1, uint8_t* d2, int labs2, int* mlabs) argument
765 dname_canonical_compare(uint8_t* d1, uint8_t* d2) argument
773 dname_get_shared_topdomain(uint8_t* d1, uint8_t* d2) argument
[all...]
/freebsd-10.1-release/contrib/subversion/subversion/libsvn_subr/
H A Dmd5.h65 svn_md5__digests_match(const unsigned char d1[],
H A Dsha1.h64 svn_sha1__digests_match(const unsigned char d1[],
H A Dmd5.c77 svn_md5__digests_match(const unsigned char d1[], const unsigned char d2[])
81 return ((memcmp(d1, zeros, APR_MD5_DIGESTSIZE) == 0)
83 || (memcmp(d1, d2, APR_MD5_DIGESTSIZE) == 0));
108 svn_md5_digests_match(const unsigned char d1[], const unsigned char d2[])
110 return svn_md5__digests_match(d1, d2);
76 svn_md5__digests_match(const unsigned char d1[], const unsigned char d2[]) argument
107 svn_md5_digests_match(const unsigned char d1[], const unsigned char d2[]) argument
H A Dsha1.c76 svn_sha1__digests_match(const unsigned char d1[], const unsigned char d2[])
80 return ((memcmp(d1, zeros, APR_SHA1_DIGESTSIZE) == 0)
82 || (memcmp(d1, d2, APR_SHA1_DIGESTSIZE) == 0));
75 svn_sha1__digests_match(const unsigned char d1[], const unsigned char d2[]) argument
/freebsd-10.1-release/crypto/openssl/crypto/des/
H A Dcfb_enc.c77 register DES_LONG d0, d1, v0, v1; local
106 c2ln(in, d0, d1, n);
109 d1 ^= ti[1];
110 l2cn(d0, d1, out, n);
121 v1 = d1;
128 l2c(d1, iv);
130 sh[0] = v0, sh[1] = v1, sh[2] = d0, sh[3] = d1;
153 c2ln(in, d0, d1, n);
164 v1 = d1;
171 l2c(d1, i
[all...]
H A Dofb_enc.c71 register DES_LONG d0, d1, vv0, vv1, v0, v1, n = (numbits + 7) / 8; local
105 c2ln(in, d0, d1, n);
108 d1 = (d1 ^ vv1) & mask1;
109 l2cn(d0, d1, out, n);
130 v0 = v1 = d0 = d1 = ti[0] = ti[1] = vv0 = vv1 = 0;
H A Dcfb64ede.c150 register DES_LONG d0, d1, v0, v1; local
168 c2ln(in, d0, d1, n);
171 d1 ^= ti[1];
172 l2cn(d0, d1, out, n);
183 v1 = d1;
189 l2c(d1, iv);
209 c2ln(in, d0, d1, n);
220 v1 = d1;
226 l2c(d1, iv);
240 d1
[all...]
/freebsd-10.1-release/contrib/ncurses/form/
H A Dfty_ipv4.c55 unsigned int d1, d2, d3, d4; local
59 num = sscanf(bp, "%u.%u.%u.%u%n", &d1, &d2, &d3, &d4, &len);
67 return ((num != 4 || *bp || d1 > 255 || d2 > 255
/freebsd-10.1-release/contrib/ldns/
H A Dduration.c78 ldns_duration_compare(ldns_duration_type* d1, ldns_duration_type* d2) argument
80 if (!d1 && !d2) {
83 if (!d1 || !d2) {
84 return d1?-1:1;
87 if (d1->years != d2->years) {
88 return (int) (d1->years - d2->years);
90 if (d1->months != d2->months) {
91 return (int) (d1->months - d2->months);
93 if (d1->weeks != d2->weeks) {
94 return (int) (d1
[all...]
/freebsd-10.1-release/contrib/subversion/subversion/include/
H A Dsvn_md5.h77 * Compare digests @a d1 and @a d2, each @c APR_MD5_DIGESTSIZE bytes long.
85 svn_md5_digests_match(const unsigned char d1[],
/freebsd-10.1-release/tools/regression/lib/msun/
H A Dtest-utils.h92 * Compare d1 and d2 using special rules: NaN == NaN and +0 != -0.
96 fpequal(long double d1, long double d2) argument
99 if (d1 != d2)
100 return (isnan(d1) && isnan(d2));
101 return (copysignl(1.0, d1) == copysignl(1.0, d2));
152 cfpequal(long double complex d1, long double complex d2) argument
155 return (fpequal(creall(d1), creall(d2)) &&
156 fpequal(cimagl(d1), cimagl(d2)));
/freebsd-10.1-release/lib/libc/sparc64/fpu/
H A Dfpu_sqrt.c197 u_int d0, d1, d2, d3; local
301 FPU_SUBS(d1, x1, t1);
304 x0 = d0, x1 = d1; /* x -= t */
312 FPU_SUBS(d1, x1, t1);
315 x0 = d0, x1 = d1;
333 FPU_SUBCS(d1, x1, t1);
336 x0 = d0, x1 = d1, x2 = d2;
345 FPU_SUBCS(d1, x1, t1);
348 x0 = d0, x1 = d1, x2 = d2;
367 FPU_SUBCS(d1, x
[all...]
/freebsd-10.1-release/sys/powerpc/fpu/
H A Dfpu_sqrt.c197 u_int d0, d1, d2, d3; local
318 FPU_SUBS(d1, x1, t1);
321 x0 = d0, x1 = d1; /* x -= t */
329 FPU_SUBS(d1, x1, t1);
332 x0 = d0, x1 = d1;
350 FPU_SUBCS(d1, x1, t1);
353 x0 = d0, x1 = d1, x2 = d2;
362 FPU_SUBCS(d1, x1, t1);
365 x0 = d0, x1 = d1, x2 = d2;
384 FPU_SUBCS(d1, x
[all...]
/freebsd-10.1-release/gnu/usr.bin/rcs/lib/
H A Drcsrev.c172 register size_t d1, d2; local
188 for (d1=0; isdigit(*(s1+d1)); d1++) continue;
192 if (d1 != d2)
193 return d1<d2 ? -1 : 1;
194 if ((r = memcmp(s1, s2, d1)))
196 s1 += d1;
197 s2 += d1;
216 register size_t d1, d local
315 register size_t d1, d2; local
[all...]
/freebsd-10.1-release/usr.sbin/sa/
H A Dmain.c395 cmp_usrsys(const DBT *d1, const DBT *d2) argument
400 memcpy(&c1, d1->data, sizeof(c1));
416 cmp_avgusrsys(const DBT *d1, const DBT *d2) argument
421 memcpy(&c1, d1->data, sizeof(c1));
440 cmp_dkio(const DBT *d1, const DBT *d2) argument
444 memcpy(&c1, d1->data, sizeof(c1));
457 cmp_avgdkio(const DBT *d1, const DBT *d2) argument
462 memcpy(&c1, d1->data, sizeof(c1));
478 cmp_cpumem(const DBT *d1, const DBT *d2) argument
482 memcpy(&c1, d1
495 cmp_avgcpumem(const DBT *d1, const DBT *d2) argument
520 cmp_calls(const DBT *d1, const DBT *d2) argument
[all...]
/freebsd-10.1-release/tools/regression/usr.bin/cc/
H A Dfloat.c70 * Compare d1 and d2 using special rules: NaN == NaN and +0 != -0.
73 fpequal(long double d1, long double d2) argument
76 if (d1 != d2)
77 return (isnan(d1) && isnan(d2));
78 return (copysignl(1.0, d1) == copysignl(1.0, d2));
82 run_zero_opt_test(double d1, double d2) argument
86 fpequal(d1 - d2, 0.0)
87 && fpequal(-d1 + 0.0, 0.0)
88 && fpequal(-d1 - d2, -0.0)
89 && fpequal(-(d1
[all...]
/freebsd-10.1-release/crypto/openssl/crypto/bn/
H A Dbn_div.c196 BN_ULONG d0, d1; local
301 d1 = (div_n == 1) ? 0 : sdiv->d[div_n - 2];
348 q = bn_div_3_words(wnump, d1, d0);
378 t2 = (BN_ULLONG) d1 *q;
387 t2 -= d1;
402 BN_UMULT_LOHI(t2l, t2h, d1, q);
404 t2l = d1 * q;
405 t2h = BN_UMULT_HIGH(d1, q);
409 t2l = LBITS(d1);
410 t2h = HBITS(d1);
[all...]
/freebsd-10.1-release/contrib/ldns/ldns/
H A Dduration.h71 * \param[in] d1 one duration
73 * \return int 0 if equal, -1 if d1 < d2, 1 if d2 < d1
76 int ldns_duration_compare(ldns_duration_type* d1, ldns_duration_type* d2);

Completed in 308 milliseconds

12345