Home
last modified time | relevance | path

Searched refs:d2 (Results 1 – 25 of 279) sorted by relevance

12345678910>>...12

/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dfp-test.c82 volatile double d1 = 1.0, d2 = 1.0, d3 = 1.0; variable
136 d1 = -d2; in main()
137 d1 = d2 + d3; in main()
138 d1 = d2 - d3; in main()
139 d1 = d2 * d3; in main()
140 d1 = d2 / d3; in main()
141 d1 += d2; in main()
142 d1 -= d2; in main()
143 d1 *= d2; in main()
144 d1 /= d2; in main()
[all …]
/openbsd-src/gnu/gcc/gcc/
H A Dfp-test.c82 volatile double d1 = 1.0, d2 = 1.0, d3 = 1.0; variable
136 d1 = -d2; in main()
137 d1 = d2 + d3; in main()
138 d1 = d2 - d3; in main()
139 d1 = d2 * d3; in main()
140 d1 = d2 / d3; in main()
141 d1 += d2; in main()
142 d1 -= d2; in main()
143 d1 *= d2; in main()
144 d1 /= d2; in main()
[all …]
/openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/gdb.disasm/
H A Dmn10300.s27 add d1,d2
28 add d2,a3
32 add 256,d2
40 addc d1,d2
61 btst 8192,d2
73 cmp d1,d2
74 cmp d2,a3
78 cmp 256,d2
87 extb d2
89 exth d2
[all …]
H A Dmn10200.s25 add d1,d2
26 add d2,a3
30 add 256,d2
35 addc d1,d2
73 btst 8192,d2
78 cmp d1,d2
79 cmp d2,a3
83 cmp 256,d2
90 extx d2
92 extxb d2
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A Dstring-opt-10.c19 char dst[64], *d2; in main() local
27 strcpy (dst, s1); d2 = dst; in main()
28 if (strncat (++d2, s2, 100) != dst+1 || d2 != dst+1 || strcmp (dst, s1)) in main()
30 strcpy (dst, s1); d2 = dst; in main()
31 if (strncat (++d2+5, s2, 100) != dst+6 || d2 != dst+1 || strcmp (dst, s1)) in main()
33 strcpy (dst, s1); d2 = dst; in main()
34 if (strncat (++d2+5, s1+11, 100) != dst+6 || d2 != dst+1 || strcmp (dst, s1)) in main()
36 strcpy (dst, s1); d2 = dst; in main()
37 if (strncat (++d2+5, s1, 0) != dst+6 || d2 != dst+1 || strcmp (dst, s1)) in main()
39 strcpy (dst, s1); d2 = dst; in main()
[all …]
H A Dstring-opt-11.c16 char dst[64], *d2; in main() local
31 strcpy (dst, s1); d2 = dst; in main()
32 if (strspn (++d2, "") != 0 || d2 != dst+1) in main()
34 strcpy (dst, s1); d2 = dst; in main()
35 if (strspn (++d2+5, "") != 0 || d2 != dst+1) in main()
42 strcpy (dst, s1); d2 = dst; in main()
43 if (strspn ("", ++d2) != 0 || d2 != dst+1) in main()
45 strcpy (dst, s1); d2 = dst; in main()
46 if (strspn ("", ++d2+5) != 0 || d2 != dst+1) in main()
H A Dstring-opt-12.c16 char dst[64], *d2; in main() local
31 strcpy (dst, s1); d2 = dst; in main()
32 if (strcspn (++d2, "") != 10 || d2 != dst+1) in main()
34 strcpy (dst, s1); d2 = dst; in main()
35 if (strcspn (++d2+5, "") != 5 || d2 != dst+1) in main()
42 strcpy (dst, s1); d2 = dst; in main()
43 if (strcspn ("", ++d2) != 0 || d2 != dst+1) in main()
45 strcpy (dst, s1); d2 = dst; in main()
46 if (strcspn ("", ++d2+5) != 0 || d2 != dst+1) in main()
H A Dstring-opt-9.c18 char dst[64], *d2; in main() local
26 strcpy (dst, s1); d2 = dst; in main()
27 if (strcat (++d2, s2) != dst+1 || d2 != dst+1 || strcmp (dst, s1)) in main()
29 strcpy (dst, s1); d2 = dst; in main()
30 if (strcat (++d2+5, s2) != dst+6 || d2 != dst+1 || strcmp (dst, s1)) in main()
32 strcpy (dst, s1); d2 = dst; in main()
33 if (strcat (++d2+5, s1+11) != dst+6 || d2 != dst+1 || strcmp (dst, s1)) in main()
/openbsd-src/sbin/unwind/libunbound/util/data/
H A Ddname.c100 query_dname_compare(register uint8_t* d1, register uint8_t* d2) in query_dname_compare() argument
103 log_assert(d1 && d2); in query_dname_compare()
105 lab2 = *d2++; in query_dname_compare()
118 if(*d1 != *d2 && in query_dname_compare()
119 tolower((unsigned char)*d1) != tolower((unsigned char)*d2)) { in query_dname_compare()
120 if(tolower((unsigned char)*d1) < tolower((unsigned char)*d2)) in query_dname_compare()
125 d2++; in query_dname_compare()
129 lab2 = *d2++; in query_dname_compare()
233 dname_pkt_compare(sldns_buffer* pkt, uint8_t* d1, uint8_t* d2) in dname_pkt_compare() argument
237 log_assert(pkt && d1 && d2); in dname_pkt_compare()
[all …]
H A Ddname.h95 * @param d2: dname to compare
99 int query_dname_compare(uint8_t* d1, uint8_t* d2);
117 * @param d2: dname to compare
121 int dname_pkt_compare(struct sldns_buffer* pkt, uint8_t* d1, uint8_t* d2);
181 * @param d2: second dname. pointer to uncompressed wireformat.
184 * @return: 0 for equal, -1 smaller, or +1 d1 larger than d2.
186 int dname_lab_cmp(uint8_t* d1, int labs1, uint8_t* d2, int labs2, int* mlabs);
209 * See if domain name d1 is a strict subdomain of d2.
213 * @param d2: domain name, uncompressed wireformat
214 * @param labs2: number of labels in d2, includin
[all...]
/openbsd-src/usr.sbin/unbound/util/data/
H A Ddname.c100 query_dname_compare(register uint8_t* d1, register uint8_t* d2) in query_dname_compare() argument
103 log_assert(d1 && d2); in query_dname_compare()
105 lab2 = *d2++; in query_dname_compare()
118 if(*d1 != *d2 && in query_dname_compare()
119 tolower((unsigned char)*d1) != tolower((unsigned char)*d2)) { in query_dname_compare()
120 if(tolower((unsigned char)*d1) < tolower((unsigned char)*d2)) in query_dname_compare()
125 d2++; in query_dname_compare()
129 lab2 = *d2++; in query_dname_compare()
233 dname_pkt_compare(sldns_buffer* pkt, uint8_t* d1, uint8_t* d2) in dname_pkt_compare() argument
237 log_assert(pkt && d1 && d2); in dname_pkt_compare()
[all …]
H A Ddname.h95 * @param d2: dname to compare
99 int query_dname_compare(uint8_t* d1, uint8_t* d2);
117 * @param d2: dname to compare
121 int dname_pkt_compare(struct sldns_buffer* pkt, uint8_t* d1, uint8_t* d2);
181 * @param d2: second dname. pointer to uncompressed wireformat.
184 * @return: 0 for equal, -1 smaller, or +1 d1 larger than d2.
186 int dname_lab_cmp(uint8_t* d1, int labs1, uint8_t* d2, int labs2, int* mlabs);
209 * See if domain name d1 is a strict subdomain of d2.
213 * @param d2: domain name, uncompressed wireformat
214 * @param labs2: number of labels in d2, includin
[all...]
/openbsd-src/gnu/usr.bin/gcc/gcc/config/mn10200/
H A Dlib1funcs.asm40 movx d2,(0,a3)
47 sub d2,d2
54 cmp d2,d0
56 sub d0,d2
60 mov d0,d2
83 divu d3,d2
102 sub d2,d0
105 mov d2,d0
109 movx (0,a3),d2
133 movx d2,(0,a3)
[all …]
/openbsd-src/usr.bin/diff3/
H A Ddiff3prog.c298 struct diff *d1, *d2, *d3; in merge() local
302 d2 = d23; in merge()
306 t2 = (d2 < d23 + m2); in merge()
314 d2->old.from,d2->old.to, in merge()
315 d2->new.from,d2->new.to); in merge()
318 if (!t2 || (t1 && d1->new.to < d2->new.from)) { in merge()
330 if (!t1 || (t2 && d2->new.to < d1->new.from)) { in merge()
333 keep(1, &d2->new); in merge()
334 change(2, &d2->old, 0); in merge()
335 change(3, &d2->new, 0); in merge()
[all …]
/openbsd-src/usr.bin/rcs/
H A Ddiff3.c159 BUF *b1, *b2, *b3, *d1, *d2, *diffb; in merge_diff3() local
163 b1 = b2 = b3 = d1 = d2 = diffb = NULL; in merge_diff3()
178 d2 = buf_alloc(128); in merge_diff3()
193 (diffreg(path2, path3, d2, D_FORCEASCII) == D_ERROR)) { in merge_diff3()
206 buf_write_stmp(d2, dp23); in merge_diff3()
208 buf_free(d2); in merge_diff3()
209 d2 = NULL; in merge_diff3()
241 buf_free(d2); in merge_diff3()
266 BUF *b1, *b2, *b3, *d1, *d2, *diffb; in rcs_diff3() local
270 b1 = b2 = b3 = d1 = d2 = diffb = NULL; in rcs_diff3()
[all …]
/openbsd-src/usr.bin/cvs/
H A Ddiff3.c163 BUF *b1, *d1, *d2, *diffb; in cvs_merge_file() local
169 b1 = d1 = d2 = diffb = NULL; in cvs_merge_file()
176 d2 = buf_alloc(128); in cvs_merge_file()
192 diffreg(path2, path3, fds[3], fds[4], d2, D_FORCEASCII); in cvs_merge_file()
199 fds[1] = buf_write_stmp(d2, dp23, NULL); in cvs_merge_file()
200 buf_free(d2); in cvs_merge_file()
540 struct diff *d1, *d2, *d3; in merge() local
544 d2 = d23; in merge()
548 t2 = (d2 < d23 + m2); in merge()
556 d2->old.from, d2->old.to, in merge()
[all …]
/openbsd-src/gnu/gcc/gcc/config/sh/
H A Ddivtab.c60 static double note_defect3 (int val, double d2, double y2d, double x) in note_defect3() argument
69 defect = cutoff + val * d2; in note_defect3()
94 double d, d2; in calc_defect() local
111 d2 = y1 + y2d - 1/x; in calc_defect()
112 if (d2 > max_defect2) in calc_defect()
114 max_defect2 = d2; in calc_defect()
117 if (d2 < min_defect2) in calc_defect()
119 min_defect2 = d2; in calc_defect()
123 note_defect3 ((1 << CUTOFF_BITS) - 1, d2, y2d, x); in calc_defect()
124 note_defect3 (1 << CUTOFF_BITS, d2, y2d, x); in calc_defect()
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/config/m68k/
H A Dlb1sf68.asm74 #define d2 REG (d2) macro
288 1: moveml sp@+,d2-d7 | restore data registers
290 1: moveml sp@,d2-d7
327 movel d2, sp@-
333 movel d0, d2
334 clrw d2
335 swap d2
336 divu d1, d2 /* high quotient in lower word */
337 movew d2, d0 /* save high quotient */
339 movew sp@(10), d2 /* get low dividend + high rest */
[all …]
/openbsd-src/gnu/gcc/gcc/config/m68k/
H A Dlb1sf68.asm74 #define d2 REG (d2) macro
358 1: moveml sp@+,d2-d7 | restore data registers
360 1: moveml sp@,d2-d7
397 movel d2, sp@-
403 movel d0, d2
404 clrw d2
405 swap d2
406 divu d1, d2 /* high quotient in lower word */
407 movew d2, d0 /* save high quotient */
409 movew sp@(10), d2 /* get low dividend + high rest */
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g77.f-torture/execute/
H A D980628-1.f13 double precision d1, d2, d3 local
16 equivalence (r2(2), d2)
25 d2 = 20.
35 call x (r1, d1, i1, r2, d2, i2, r3, d3, i3)
39 subroutine x (r1, d1, i1, r2, d2, i2, r3, d3, i3) argument
43 double precision d1, d2, d3 local
52 if (d2 .ne. 20.) call abort
H A D980628-7.f12 double precision d1, d2, d3 local
15 equivalence (d2, r2(2))
24 d2 = 20.
34 call x (r1, d1, i1, r2, d2, i2, r3, d3, i3)
38 subroutine x (r1, d1, i1, r2, d2, i2, r3, d3, i3) argument
42 double precision d1, d2, d3 local
51 if (d2 .ne. 20.) call abort
H A D980628-0.f12 double precision d1, d2, d3 local
15 equivalence (r2(2), d2)
24 d2 = 20.
34 call x (r1, d1, i1, r2, d2, i2, r3, d3, i3)
38 subroutine x (r1, d1, i1, r2, d2, i2, r3, d3, i3) argument
42 double precision d1, d2, d3 local
51 if (d2 .ne. 20.) call abort
H A D980628-8.f13 double precision d1, d2, d3 local
16 equivalence (d2, r2(2))
25 d2 = 20.
35 call x (r1, d1, i1, r2, d2, i2, r3, d3, i3)
39 subroutine x (r1, d1, i1, r2, d2, i2, r3, d3, i3) argument
43 double precision d1, d2, d3 local
52 if (d2 .ne. 20.) call abort
H A D980701-1.f13 double precision d1, d2, d3 local
17 equivalence (d2, r2(2))
30 d2 = 20.
41 call x (s1, r1, d1, i1, s2, r2, d2, i2, s3, r3, d3, i3)
45 subroutine x (s1, r1, d1, i1, s2, r2, d2, i2, s3, r3, d3, i3) argument
50 double precision d1, d2, d3 local
61 if (d2 .ne. 20.) call abort
/openbsd-src/regress/lib/libpthread/preemption_float/
H A Dpreemption_float.c53 double d, d1, d2; in log_loop() local
62 d2 = d; in log_loop()
65 if (memcmp (&d2, &d1, sizeof(double))) { in log_loop()
66 printf("log loop: %f != %f\n", d1, d2); in log_loop()
77 double d, d1, d2; in trig_loop() local
88 d2 = d; in trig_loop()
91 if (memcmp (&d2, &d1, sizeof(double))) { in trig_loop()
92 printf("trig loop: %f != %f\n", d1, d2); in trig_loop()

12345678910>>...12