Home
last modified time | relevance | path

Searched refs:f1 (Results 1 – 25 of 411) sorted by relevance

12345678910>>...17

/openbsd/gnu/usr.bin/gcc/gcc/
H A Dfp-test.c114 sc = f1; in main()
115 uc = f1; in main()
116 ss = f1; in main()
117 us = f1; in main()
118 si = f1; in main()
119 ui = f1; in main()
120 sl = f1; in main()
121 ul = f1; in main()
122 d1 = f1; in main()
123 D1 = f1; in main()
[all …]
/openbsd/gnu/gcc/gcc/
H A Dfp-test.c114 sc = f1; in main()
115 uc = f1; in main()
116 ss = f1; in main()
117 us = f1; in main()
118 si = f1; in main()
119 ui = f1; in main()
120 sl = f1; in main()
121 ul = f1; in main()
122 d1 = f1; in main()
123 D1 = f1; in main()
[all …]
/openbsd/lib/libc/stdlib/
H A Dmerge.c127 f1 = l2; in mergesort()
138 q = f1; in mergesort()
181 if (q == f1) { in mergesort()
274 f1 = list1; in setup()
275 sense = (cmp(f1, f1 + size) > 0); in setup()
288 swap (f1, f1 + size); in setup()
297 f1 = f2; in setup()
302 f1 = f2; in setup()
310 for (f1 = list1, p2 = list2; f1 < last; f1 += size2) { in setup()
312 if (cmp (f1, f1 + size) > 0) in setup()
[all …]
/openbsd/gnu/gcc/libgomp/testsuite/libgomp.fortran/
H A Dvla7.f906 c = f1 (6)
15 function f1 (n) function
17 character (n) :: f1 local
19 f1 = 'abcdef'
22 l = f1 .ne. 'abcdef'
29 f1 = 'zZzz_z'
34 f1 = 'abc'
37 l = l .or. f1 .ne. 'abc'
41 l = l .or. f1 .ne. 'def'
44 f1 = 'opqrst'
[all …]
H A Dretval2.f904 real :: f1 local
5 f1 = 6.5
13 l = f1 .ne. 6.5
14 if (omp_get_thread_num () .eq. 0) f1 = 8.5
15 if (omp_get_thread_num () .eq. 1) f1 = 14.5
17 l = l .or. (omp_get_thread_num () .eq. 0 .and. f1 .ne. 8.5)
18 l = l .or. (omp_get_thread_num () .eq. 1 .and. f1 .ne. 14.5)
21 f1 = -2.5
25 real :: f1 variable
26 if (f1 () .ne. -2.5) call abort
H A Dretval1.f905 real :: f1 local
7 f1 = 6.5
10 l = f1 .ne. 6.5
11 if (omp_get_thread_num () .eq. 0) f1 = 8.5
12 if (omp_get_thread_num () .eq. 1) f1 = 14.5
14 l = l .or. (omp_get_thread_num () .eq. 0 .and. f1 .ne. 8.5)
15 l = l .or. (omp_get_thread_num () .eq. 1 .and. f1 .ne. 14.5)
18 f1 = -2.5
109 real :: f1, f2, e2, f3, e3, f4, e4, f5 variable
111 if (f1 () .ne. -2.5) call abort
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A Dcomp-goto-1.c30 } f1; member
82 program[i].f1.offset = op_map[program[i].f1.offset] - base_addr; in simulator_kernel()
89 s1 = (insn.f1.s1 << 2); in simulator_kernel()
90 goto *(base_addr + insn.f1.offset); in simulator_kernel()
107 s1 = insn.f1.s1 << 2; in simulator_kernel()
115 s1 = insn.f1.s1 << 2; in simulator_kernel()
144 insn.f1.offset = LOAD32_RR; in main()
148 insn.f1.s1 = 0; in main()
149 insn.f1.s2 = 2; in main()
154 insn.f1.offset = METAOP_DONE; in main()
[all …]
H A D20021118-2.c5 void (*f1) (double), in t1()
8 f1 (3.0); in t1()
14 void (*f1) (double), in t2()
19 f1 (3.0); in t2()
24 void f1 (double d) in f1() function
30 void f2 (float f1, float f2) in f2() argument
32 if (f1 != 2.5f || f2 != 3.5f) in f2()
45 t1 (f, 0, f1, f2); in main()
46 t2 (f, 1, f1, f2, f3); in main()
H A D981019-1.c3 extern void f1(void);
11 f1(); /* bb 2 */ in ff()
22 f1(); /* bb 7 ... */ in ff()
25 f1(); /* bb 8 */ in ff()
26 f1(); /* bb 9 */ in ff()
32 f1(); /* bb 12 */ in ff()
43 void f1(void) { abort(); } in f1() function
/openbsd/gnu/lib/libstdc++/libstdc++/testsuite/26_numerics/
H A Dc99_classification_macros_c++.cc65 fp_type f1 = 1.0; in test_c99_classify() local
69 res = std::fpclassify(f1); in test_c99_classify()
71 res = std::isinf(f1); in test_c99_classify()
73 res = std::isnormal(f1); in test_c99_classify()
75 res = std::isgreater(f1, f2); in test_c99_classify()
76 res = std::isgreaterequal(f1, f2); in test_c99_classify()
77 res = std::isless(f1, f2); in test_c99_classify()
78 res = std::islessequal(f1,f2); in test_c99_classify()
79 res = std::islessgreater(f1, f2); in test_c99_classify()
80 res = std::isunordered(f1, f2); in test_c99_classify()
/openbsd/sys/dev/pci/drm/amd/display/dc/inc/
H A Dreg_helper.h69 FN(reg, f1), v1,\
74 FN(reg, f1), v1,\
80 FN(reg, f1), v1,\
88 FN(reg, f1), v1,\
97 FN(reg, f1), v1,\
107 FN(reg, f1), v1,\
118 FN(reg, f1), v1,\
130 FN(reg, f1), v1,\
143 FN(reg, f1), v1,\
236 FN(reg, f1), v1,\
[all …]
/openbsd/gnu/usr.bin/cvs/diff/
H A Ded.c39 int f0, l0, f1, l1; local
50 analyze_hunk (hunk, &f0, &l0, &f1, &l1, &deletes, &inserts);
65 for (i = f1; i <= l1; i++)
70 i - f1 + translate_line_number (&files[0], f0) - 1);
85 i - f1 + translate_line_number (&files[0], f0));
115 int f0, l0, f1, l1; local
119 analyze_hunk (hunk, &f0, &l0, &f1, &l1, &deletes, &inserts);
137 for (i = f1; i <= l1; i++)
161 int f0, l0, f1, l1; local
189 translate_range (&files[1], f1, l1, &tf1, &tl1);
[all …]
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A Dpack-test-1.c30 #define al1 gap(s0, f1, f0)
31 #define al2 gap(s0, f2, f1)
44 testgap(0, f1, f0, sizeof(char)); in SNAME()
55 testgap(0, f1, f0, sizeof(short)); in SNAME()
66 testgap(0, f1, f0, sizeof(int)); in SNAME()
77 testgap(0, f1, f0, sizeof(short)); in SNAME()
88 testgap(0, f1, f0, sizeof(char)); in SNAME()
99 testgap(0, f1, f0, al1); in SNAME()
110 testgap(0, f1, f0, sizeof(char)); in SNAME()
132 testgap(0, f1, f0, sizeof(char)); in SNAME()
[all …]
/openbsd/gnu/lib/libstdc++/libstdc++/testsuite/27_io/istream_extractor_arith/
H A D07.cc61 float f1 = 0.0; in test07() local
72 is >> f1; in test07()
93 f1 = 0.0; in test07()
108 is >> f1; in test07()
109 VERIFY( f1 == 0.0 ); in test07()
118 is >> f1; in test07()
126 f1 = 0.0; in test07()
129 is >> f1; in test07()
130 VERIFY( f1 == 5.0 ); in test07()
132 is >> f1; in test07()
[all …]
/openbsd/sys/dev/pci/drm/amd/display/dmub/src/
H A Ddmub_reg.h65 #define REG_SET_2(reg, init_value, f1, v1, f2, v2) \ argument
67 FN(reg, f1), v1, \
70 #define REG_SET_3(reg, init_value, f1, v1, f2, v2, f3, v3) \ argument
72 FN(reg, f1), v1, \
78 FN(reg, f1), v1, \
92 #define REG_UPDATE_2(reg, f1, v1, f2, v2) \ argument
94 FN(reg, f1), v1,\
97 #define REG_UPDATE_3(reg, f1, v1, f2, v2, f3, v3) \ argument
99 FN(reg, f1), v1, \
103 #define REG_UPDATE_4(reg, f1, v1, f2, v2, f3, v3, f4, v4) \ argument
[all …]
/openbsd/usr.bin/diff/
H A Ddiffreg.c295 FILE *f1, *f2; in diffreg() local
298 f1 = f2 = NULL; in diffreg()
324 f1 = stdin; in diffreg()
328 if (f1 == NULL) { in diffreg()
402 check(f1, f2, flags); in diffreg()
410 if (f1 != NULL) in diffreg()
411 fclose(f1); in diffreg()
704 rewind(f1); in check()
721 c = getc(f1); in check()
752 c = getc(f1); in check()
[all …]
/openbsd/usr.bin/rcs/
H A Ddiff.c302 FILE *f1, *f2; in diffreg() local
305 f1 = f2 = NULL; in diffreg()
319 if (f1 == NULL) { in diffreg()
388 check(f1, f2, flags); in diffreg()
389 output(f1, f2, flags); in diffreg()
396 if (f1 != NULL) in diffreg()
397 fclose(f1); in diffreg()
637 rewind(f1); in check()
654 c = getc(f1); in check()
681 c = getc(f1); in check()
[all …]
/openbsd/sys/arch/sparc64/fpu/
H A Dfpu_explode.c141 fp->fp_mant[1] = f1; \
151 fp->fp_mant[1] = f1; \
158 fp->fp_mant[1] = f1; \
172 u_int frac, f0, f1; in fpu_stof() local
178 f1 = frac << (32 - SNG_SHIFT); in fpu_stof()
179 FP_TOF(exp, SNG_EXP_BIAS, frac, f0, f1, 0, 0); in fpu_stof()
190 u_int frac, f0, f1, f2; in fpu_dtof() local
199 FP_TOF(exp, DBL_EXP_BIAS, frac, f0, f1, f2, 0); in fpu_dtof()
209 u_int frac, f0, f1, f2, f3; in fpu_qtof() local
218 f1 = (j << EXT_SHIFT) | (k >> (32 - EXT_SHIFT)); in fpu_qtof()
[all …]
/openbsd/usr.bin/cvs/
H A Ddiff_internals.c306 FILE *f1, *f2; in diffreg() local
311 f1 = f2 = NULL; in diffreg()
335 f1 = fdopen(fd1, "r"); in diffreg()
336 if (f1 == NULL) { in diffreg()
406 check(f1, f2, flags); in diffreg()
414 if (f1 != NULL) in diffreg()
415 fclose(f1); in diffreg()
655 rewind(f1); in check()
672 c = getc(f1); in check()
699 c = getc(f1); in check()
[all …]
/openbsd/lib/libc/arch/sparc64/fpu/
H A Dfpu_explode.c200 fp->fp_mant[1] = f1; \
210 fp->fp_mant[1] = f1; \
217 fp->fp_mant[1] = f1; \
233 u_int frac, f0, f1; local
239 f1 = frac << (32 - SNG_SHIFT);
240 FP_TOF(exp, SNG_EXP_BIAS, frac, f0, f1, 0, 0);
253 u_int frac, f0, f1, f2; local
262 FP_TOF(exp, DBL_EXP_BIAS, frac, f0, f1, f2, 0);
274 u_int frac, f0, f1, f2, f3; local
283 f1 = (j << EXT_SHIFT) | (k >> (32 - EXT_SHIFT));
[all …]
/openbsd/gnu/usr.bin/binutils/gdb/testsuite/gdb.base/
H A Dfuncargs.c189 call2a (c, f1, s, d1, i, f2, l, d2) in call2a()
193 c = 'a'; f1 = 0.0; s = 5; d1 = 0.0; i = 6; f2 = 0.1; l = 7; d2 = 0.2;
199 call2b (f1, s, d1, i, f2, l, d2, c) in call2b()
203 c = 'a'; f1 = 0.0; s = 5; d1 = 0.0; i = 6; f2 = 0.1; l = 7; d2 = 0.2;
209 call2c (s, d1, i, f2, l, d2, c, f1) in call2c()
219 call2d (d1, i, f2, l, d2, c, f1, s) in call2d()
229 call2e (i, f2, l, d2, c, f1, s, d1) in call2e()
239 call2f (f2, l, d2, c, f1, s, d1, i) in call2f()
249 call2g (l, d2, c, f1, s, d1, i, f2) in call2g()
259 call2h (d2, c, f1, s, d1, i, f2, l) in call2h()
[all …]
/openbsd/gnu/usr.bin/perl/cpan/bignum/t/
H A Ddown-undef-up-mbf.t22 my $f1 = 3.75;
26 is(ref($f1), "Math::BigFloat", "literal $f1 is a Math::BigFloat");
36 cmp_ok($f1/$f2, "==", "3", "$f1/$f2 is 3");
37 is(ref($f1/$f2), "Math::BigFloat",
38 "$f1/$f2 is 3 as a Math::BigFloat due to no downgrading");
H A Ddown-mbi-up-undef.t29 my $f1 = 3.75;
33 is(ref($f1), "Math::BigFloat", "literal $f1 is a Math::BigFloat");
43 cmp_ok($f1/$f2, "==", "3", "$f1/$f2 is 3");
44 is(ref($f1/$f2), "Math::BigInt",
45 "$f1/$f2 is 3 as a Math::BigInt due to downgrading");
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/other/
H A Dptrmem2.C17 template<class T> int f1(T x);
22 f1( &D::m); // { dg-error "cannot create pointer to ref" "" } in Foo()
23 f1( &(D::m)); // ok in Foo()
31 f1( &D::m); // { dg-error "cannot create pointer to ref" "" } in Foo()
32 f1( &(D::m)); // { dg-error "at this point" "" } in Foo()
/openbsd/usr.sbin/tcpdump/
H A Dprint-smb.c127 uchar *f1=NULL,*f2=NULL; in print_trans2() local
170 fdata(param,f1?f1:(uchar*)"params ",param+pcnt); in print_trans2()
242 uchar *f1,*f2,*f3,*f4; in print_trans() local
287 uchar *f1=NULL,*f2=NULL; in print_negprot() local
301 if (f1) in print_negprot()
311 uchar *f1=NULL,*f2=NULL; in print_sesssetup() local
328 if (f1) in print_sesssetup()
529 char *f1,*f2; in print_smb() local
533 f1 = fn->descript.req_f1; in print_smb()
536 f1 = fn->descript.rep_f1; in print_smb()
[all …]

12345678910>>...17