Searched refs:fl (Results 1 - 25 of 60) sorted by relevance

123

/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/forward_list/requirements/
H A Ddo_the_right_thing.cc26 std::forward_list<double*> fl(7, 0);
27 fl.assign(7, 0);
28 fl.insert_after(fl.before_begin(), 7, 0);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/opt/
H A Dpr26179.C16 struct a fl; local
17 h(fl);
18 if (fl.i)
20 fl.i+=2;
21 return fl;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/forward_list/debug/
H A Dinsert_after4_neg.cc27 std::forward_list<int> fl{ 1, 2, 3 };
28 fl.insert_after(fl.before_begin(), fl.begin(), std::next(fl.begin(), 2));
H A Dclear.cc28 std::forward_list<int> fl{1, 2, 3};
30 auto before = fl.before_begin();
31 auto end = fl.end();
32 fl.clear();
34 VERIFY( end == fl.end() );
35 VERIFY( before == fl.before_begin() );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/forward_list/
H A Drange_access.cc28 std::forward_list<int> fl{1, 2, 3};
29 std::begin(fl);
30 std::end(fl);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/forward_list/modifiers/
H A D5.cc32 std::forward_list<int> fl({0, 1, 2, 3, 4, 5, 6, 7, 8, 9});
34 VERIFY(fl.empty() == false);
36 fl.clear();
38 VERIFY(fl.empty() == true);
H A D3.cc34 std::forward_list<int> fl({0, 1, 2, 3, 4, 5, 6, 7, 8, 9});
36 std::forward_list<int>::const_iterator pos = fl.cbegin();
40 std::forward_list<int>::iterator pos2 = fl.erase_after(pos);
57 std::forward_list<int> fl({0, 1, 2, 3, 4, 5, 6, 7, 8, 9});
59 std::forward_list<int>::const_iterator pos = fl.cbegin();
63 std::forward_list<int>::iterator stop = fl.begin();
70 std::forward_list<int>::iterator pos2 = fl.erase_after(pos, stop);
76 VERIFY( std::distance(fl.begin(), fl.end()) == 8 );
79 = fl
[all...]
H A D2.cc35 std::forward_list<int> fl({0, 1, 2, 3, 4, 5, 6, 7, 8, 9});
37 std::forward_list<int>::iterator ret = fl.insert_after(fl.before_begin(),
39 VERIFY( ret == fl.begin() );
40 VERIFY( fl.front() == 42 );
47 std::forward_list<int> fl({0, 1, 2, 3, 4, 5, 6, 7, 8, 9});
49 std::forward_list<int>::const_iterator pos = fl.cbegin();
53 std::forward_list<int>::iterator ret = fl.insert_after(pos, 0, 42);
56 ret = fl.insert_after(pos, 5, 42);
75 std::forward_list<int> fl({
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/forward_list/capacity/
H A Dresize_size.cc30 std::forward_list<__gnu_test::NonCopyConstructible> fl; local
31 VERIFY( std::distance(fl.begin(), fl.end()) == 0 );
33 fl.resize(1000);
34 VERIFY( std::distance(fl.begin(), fl.end()) == 1000 );
35 for(auto it = fl.begin(); it != fl.end(); ++it)
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/forward_list/cons/
H A Dcons_size.cc30 std::forward_list<__gnu_test::NonCopyConstructible> fl(1000);
31 VERIFY( std::distance(fl.begin(), fl.end()) == 1000 );
32 for(auto it = fl.begin(); it != fl.end(); ++it)
H A D8.cc35 std::forward_list<int> fl(i, i+ni);
36 std::forward_list<int> flm(std::move(fl));
/haiku-buildtools/gcc/gmp/mpf/
H A Dfits_s.h32 mp_limb_t fl; variable
47 fl = fp[fn-1];
52 fl = fp[fn-1];
53 if ((fl >> GMP_NAIL_BITS) != 0)
55 fl = (fl << GMP_NUMB_BITS);
57 fl |= fp[fn-2];
63 return fl <= (fs >= 0 ? (mp_limb_t) MAXIMUM : - (mp_limb_t) MINIMUM);
H A Dfits_u.h32 mp_limb_t fl; variable
46 fl = fp[fn-1];
51 fl = fp[fn-1];
52 if ((fl >> GMP_NAIL_BITS) != 0)
54 fl = (fl << GMP_NUMB_BITS);
56 fl |= fp[fn-2];
62 return fl <= MAXIMUM;
H A Dget_si.c34 fl is established in basically the same way as for mpf_get_ui, see that
38 f is a negative fraction (ie. size<0 and exp<=0) we can't let fl==0 go
39 through to the zany final "~ ((fl - 1) & LONG_MAX)", that would give
48 mp_limb_t fl; variable
61 fl = 0;
64 fl = fp[abs_size-exp];
68 fl |= fp[abs_size - exp + 1] << GMP_NUMB_BITS;
72 return fl & LONG_MAX;
75 return -1 - (long) ((fl - 1) & LONG_MAX);
H A Dget_ui.c69 mp_limb_t fl; variable
75 fl = 0;
82 fl = fp[size-exp];
86 fl += (fp[size-exp+1] << GMP_NUMB_BITS);
90 return (unsigned long) fl;
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp1y/
H A Dvar-templ25.C3 using fl = float;
6 template<> const int V<fl> = 42;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/forward_list/operations/
H A D4.cc32 std::forward_list<int> fl = {99, 5, 99, 6, -5, 666, 777, 888, local
35 fl.unique();
38 VERIFY(fl == fl2);
63 std::forward_list<int> fl = {99, 5, 99, 6, -5, 666, 777, 888, 42, 7, 0, 9}; local
65 fl.unique(Mod<int>(111));
68 VERIFY(fl == fl2);
H A D3.cc34 std::forward_list<int> fl ={0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
36 fl.remove_if(std::bind2nd(std::less<int>(),5));
38 std::forward_list<int>::const_iterator pos = fl.cbegin();
H A D2.cc32 std::forward_list<int> fl ={0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
34 fl.remove(7);
36 std::forward_list<int>::const_iterator pos = fl.cbefore_begin();
H A D7.cc37 std::forward_list<int> fl(order, order + n);
43 fl.reverse();
45 VERIFY(std::lexicographical_compare(fl.begin(), fl.end(),
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/cpp/
H A Dsysmac2.c14 #define fl 1.0f macro
22 float f1 = fl; /* { dg-warning "traditional C rejects" } */
/haiku-buildtools/binutils/gas/testsuite/gas/all/
H A Dcofftag.d7 \[ 0\]\(sec -2\)\(fl 0x00\)\(ty 0\)\(scl 103\) \(nx 1\) 0x0+0000 foo.c
9 \[ 2\]\(sec 1\)\(fl 0x00\)\(ty 0\)\(scl 6\) \(nx 0\) 0x0+0000 gcc2_compiled.
10 \[ 3\]\(sec 1\)\(fl 0x00\)\(ty 0\)\(scl 6\) \(nx 0\) 0x0+0000 ___gnu_compiled_c
11 \[ 4\]\(sec -2\)\(fl 0x00\)\(ty a\)\(scl 15\) \(nx 1\) 0x0+0000 _token
13 \[ 6\]\(sec -(1|2)\)\(fl 0x00\)\(ty b\)\(scl 16\) \(nx 0\) 0x0+0000 _operator
14 \[ 7\]\(sec -(1|2)\)\(fl 0x00\)\(ty b\)\(scl 16\) \(nx 0\) 0x0+0001 _flags
15 \[ 8\]\(sec -(1|2)\)\(fl 0x00\)\(ty 0\)\(scl 102\) \(nx 1\) 0x0+0004 .eos
17 \[ 10\]\(sec 1\)\(fl 0x00\)\(ty 0\)\(scl 3\) \(nx 1\) 0x[0-9a-f]+ .text
19 \[ 12\]\(sec 2\)\(fl 0x00\)\(ty 0\)\(scl 3\) \(nx 1\) 0x[0-9a-f]+ .data
21 \[ 14\]\(sec 3\)\(fl
[all...]
/haiku-buildtools/legacy/binutils/gas/testsuite/gas/all/
H A Dcofftag.d7 \[ 0\]\(sec -2\)\(fl 0x00\)\(ty 0\)\(scl 103\) \(nx 1\) 0x0+0000 foo.c
9 \[ 2\]\(sec 1\)\(fl 0x00\)\(ty 0\)\(scl 6\) \(nx 0\) 0x0+0000 gcc2_compiled.
10 \[ 3\]\(sec 1\)\(fl 0x00\)\(ty 0\)\(scl 6\) \(nx 0\) 0x0+0000 ___gnu_compiled_c
11 \[ 4\]\(sec -2\)\(fl 0x00\)\(ty a\)\(scl 15\) \(nx 1\) 0x0+0000 _token
13 \[ 6\]\(sec -(1|2)\)\(fl 0x00\)\(ty b\)\(scl 16\) \(nx 0\) 0x0+0000 _operator
14 \[ 7\]\(sec -(1|2)\)\(fl 0x00\)\(ty b\)\(scl 16\) \(nx 0\) 0x0+0001 _flags
15 \[ 8\]\(sec -(1|2)\)\(fl 0x00\)\(ty 0\)\(scl 102\) \(nx 1\) 0x0+0004 .eos
17 \[ 10\]\(sec 1\)\(fl 0x00\)\(ty 0\)\(scl 3\) \(nx 1\) 0x[0-9a-f]+ .text
19 \[ 12\]\(sec 2\)\(fl 0x00\)\(ty 0\)\(scl 3\) \(nx 1\) 0x[0-9a-f]+ .data
21 \[ 14\]\(sec 3\)\(fl
[all...]
/haiku-buildtools/binutils/gold/
H A Dftruncate.c52 struct flock fl; local
73 fl.l_whence = 0;
74 fl.l_len = 0;
75 fl.l_start = length;
76 fl.l_type = F_WRLCK; /* write lock on file space */
80 indicated by fl.l_start. Will minor miracles never cease? */
82 if (fcntl (fd, F_FREESP, &fl) < 0)
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/powerpc/
H A Daltivec-15.c20 float fl = 2.0; local
26 vec_dstst (&vi, (short)fl, '\0');

Completed in 66 milliseconds

123