Home
last modified time | relevance | path

Searched refs:fl1 (Results 1 – 25 of 2121) sorted by relevance

12345678910>>...85

/dports/devel/py-graphql-core/graphql-core-3.1.6/tests/pyutils/
H A Dtest_frozen_list.py74 fl1 = FrozenList([1, 2])
85 assert fl2 == fl1
86 assert fl2 is not fl1
89 assert fl3 != fl1
94 fl2 = copy(fl1)
96 assert fl2 == fl1
98 assert fl2 is not fl1
104 fl2 = deepcopy(fl1)
106 assert fl2 == fl1
110 assert fl2[0] == fl1[0]
[all …]
/dports/lang/sdcc/sdcc-4.0.0/device/lib/pic16/libsdcc/float/
H A Dfsmul.c58 volatile union float_long fl1, fl2; in __fsmul() local
63 fl1.f = a1; in __fsmul()
66 if (!fl1.l || !fl2.l) in __fsmul()
70 sign = SIGN (fl1.l) ^ SIGN (fl2.l); in __fsmul()
71 exp = EXP (fl1.l) - EXCESS; in __fsmul()
74 fl1.l = MANT (fl1.l); in __fsmul()
78 result = (fl1.l >> 8) * (fl2.l >> 8); in __fsmul()
101 fl1.l = (sign ? SIGNBIT : 0) | 0x7F800000; in __fsmul()
103 fl1.l = 0; in __fsmul()
105 fl1.l = PACK (sign ? SIGNBIT : 0 , exp, result); in __fsmul()
[all …]
/dports/biology/seqan/seqan-library-2.4.0/include/seqan/basic/
H A Ddebug_helper.h71 if (!fl1) return ret; in _compareBinaryFiles()
76 fclose(fl1); in _compareBinaryFiles()
86 ret = feof(fl1) && feof(fl2); in _compareBinaryFiles()
90 fclose(fl1); in _compareBinaryFiles()
138 if (!fl1) return false; in _compareTextFiles()
143 fclose(fl1); in _compareTextFiles()
176 fclose(fl1); in _compareTextFiles()
188 std::ifstream fl1(file1); in _compareTextFilesAlt()
191 if (!fl1.good()) in _compareTextFilesAlt()
207 getline(fl1, line1); in _compareTextFilesAlt()
[all …]
/dports/biology/seqan-apps/seqan-seqan-v2.4.0/include/seqan/basic/
H A Ddebug_helper.h71 if (!fl1) return ret; in _compareBinaryFiles()
76 fclose(fl1); in _compareBinaryFiles()
86 ret = feof(fl1) && feof(fl2); in _compareBinaryFiles()
90 fclose(fl1); in _compareBinaryFiles()
138 if (!fl1) return false; in _compareTextFiles()
143 fclose(fl1); in _compareTextFiles()
176 fclose(fl1); in _compareTextFiles()
188 std::ifstream fl1(file1); in _compareTextFilesAlt()
191 if (!fl1.good()) in _compareTextFilesAlt()
207 getline(fl1, line1); in _compareTextFilesAlt()
[all …]
/dports/biology/pbseqan/seqan-21d95d737d8decb5cc3693b9065d81e831e7f57d/include/seqan/basic/
H A Ddebug_helper.h71 if (!fl1) return ret; in _compareBinaryFiles()
76 fclose(fl1); in _compareBinaryFiles()
86 ret = feof(fl1) && feof(fl2); in _compareBinaryFiles()
90 fclose(fl1); in _compareBinaryFiles()
138 if (!fl1) return false; in _compareTextFiles()
143 fclose(fl1); in _compareTextFiles()
176 fclose(fl1); in _compareTextFiles()
188 std::ifstream fl1(file1); in _compareTextFilesAlt()
191 if (!fl1.good()) in _compareTextFilesAlt()
207 getline(fl1, line1); in _compareTextFilesAlt()
[all …]
/dports/lang/guile/guile-3.0.7/module/rnrs/arithmetic/
H A Dflonums.scm120 (define (fl- fl1 . args)
125 (define (fl/ fl1 . args)
134 (div-and-mod fl1 fl2))
136 (define (fldiv fl1 fl2)
138 (div fl1 fl2))
140 (define (flmod fl1 fl2)
142 (mod fl1 fl2))
148 (define (fldiv0 fl1 fl2)
150 (div0 fl1 fl2))
154 (mod0 fl1 fl2))
[all …]
/dports/lang/guile2/guile-2.2.7/module/rnrs/arithmetic/
H A Dflonums.scm120 (define (fl- fl1 . args)
125 (define (fl/ fl1 . args)
134 (div-and-mod fl1 fl2))
136 (define (fldiv fl1 fl2)
138 (div fl1 fl2))
140 (define (flmod fl1 fl2)
142 (mod fl1 fl2))
148 (define (fldiv0 fl1 fl2)
150 (div0 fl1 fl2))
154 (mod0 fl1 fl2))
[all …]
/dports/lang/gcc8/gcc-8.5.0/libstdc++-v3/testsuite/23_containers/forward_list/operations/
H A Dremove_freed.cc30 std::forward_list<int> fl1; in test01() local
32 fl1.push_front(1); in test01()
33 fl1.push_front(2); in test01()
34 fl1.push_front(3); in test01()
35 fl1.push_front(4); in test01()
36 fl1.push_front(1); in test01()
38 fl1.remove(*fl1.begin()); in test01()
40 VERIFY( std::distance(fl1.begin(), fl1.end()) == 3 ); in test01()
42 auto it1 = fl1.begin(); in test01()
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/libstdc++-v3/testsuite/23_containers/forward_list/operations/
H A Dremove_freed.cc30 std::forward_list<int> fl1; in test01() local
32 fl1.push_front(1); in test01()
33 fl1.push_front(2); in test01()
34 fl1.push_front(3); in test01()
35 fl1.push_front(4); in test01()
36 fl1.push_front(1); in test01()
38 fl1.remove(*fl1.begin()); in test01()
40 VERIFY( std::distance(fl1.begin(), fl1.end()) == 3 ); in test01()
42 auto it1 = fl1.begin(); in test01()
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/libstdc++-v3/testsuite/23_containers/forward_list/operations/
H A Dremove_freed.cc30 std::forward_list<int> fl1; in test01() local
32 fl1.push_front(1); in test01()
33 fl1.push_front(2); in test01()
34 fl1.push_front(3); in test01()
35 fl1.push_front(4); in test01()
36 fl1.push_front(1); in test01()
38 fl1.remove(*fl1.begin()); in test01()
40 VERIFY( std::distance(fl1.begin(), fl1.end()) == 3 ); in test01()
42 auto it1 = fl1.begin(); in test01()
/dports/lang/gcc12-devel/gcc-12-20211205/libstdc++-v3/testsuite/23_containers/forward_list/operations/
H A Dremove_freed.cc30 std::forward_list<int> fl1; in test01() local
32 fl1.push_front(1); in test01()
33 fl1.push_front(2); in test01()
34 fl1.push_front(3); in test01()
35 fl1.push_front(4); in test01()
36 fl1.push_front(1); in test01()
38 fl1.remove(*fl1.begin()); in test01()
40 VERIFY( std::distance(fl1.begin(), fl1.end()) == 3 ); in test01()
42 auto it1 = fl1.begin(); in test01()
/dports/lang/gcc10/gcc-10.3.0/libstdc++-v3/testsuite/23_containers/forward_list/operations/
H A Dremove_freed.cc30 std::forward_list<int> fl1; in test01() local
32 fl1.push_front(1); in test01()
33 fl1.push_front(2); in test01()
34 fl1.push_front(3); in test01()
35 fl1.push_front(4); in test01()
36 fl1.push_front(1); in test01()
38 fl1.remove(*fl1.begin()); in test01()
40 VERIFY( std::distance(fl1.begin(), fl1.end()) == 3 ); in test01()
42 auto it1 = fl1.begin(); in test01()
/dports/lang/gcc11-devel/gcc-11-20211009/libstdc++-v3/testsuite/23_containers/forward_list/operations/
H A Dremove_freed.cc30 std::forward_list<int> fl1; in test01() local
32 fl1.push_front(1); in test01()
33 fl1.push_front(2); in test01()
34 fl1.push_front(3); in test01()
35 fl1.push_front(4); in test01()
36 fl1.push_front(1); in test01()
38 fl1.remove(*fl1.begin()); in test01()
40 VERIFY( std::distance(fl1.begin(), fl1.end()) == 3 ); in test01()
42 auto it1 = fl1.begin(); in test01()
/dports/devel/riscv64-gcc/gcc-8.3.0/libstdc++-v3/testsuite/23_containers/forward_list/operations/
H A Dremove_freed.cc30 std::forward_list<int> fl1; in test01() local
32 fl1.push_front(1); in test01()
33 fl1.push_front(2); in test01()
34 fl1.push_front(3); in test01()
35 fl1.push_front(4); in test01()
36 fl1.push_front(1); in test01()
38 fl1.remove(*fl1.begin()); in test01()
40 VERIFY( std::distance(fl1.begin(), fl1.end()) == 3 ); in test01()
42 auto it1 = fl1.begin(); in test01()
/dports/devel/avr-gcc/gcc-10.2.0/libstdc++-v3/testsuite/23_containers/forward_list/operations/
H A Dremove_freed.cc30 std::forward_list<int> fl1; in test01() local
32 fl1.push_front(1); in test01()
33 fl1.push_front(2); in test01()
34 fl1.push_front(3); in test01()
35 fl1.push_front(4); in test01()
36 fl1.push_front(1); in test01()
38 fl1.remove(*fl1.begin()); in test01()
40 VERIFY( std::distance(fl1.begin(), fl1.end()) == 3 ); in test01()
42 auto it1 = fl1.begin(); in test01()
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/libstdc++-v3/testsuite/23_containers/forward_list/operations/
H A Dremove_freed.cc30 std::forward_list<int> fl1; in test01() local
32 fl1.push_front(1); in test01()
33 fl1.push_front(2); in test01()
34 fl1.push_front(3); in test01()
35 fl1.push_front(4); in test01()
36 fl1.push_front(1); in test01()
38 fl1.remove(*fl1.begin()); in test01()
40 VERIFY( std::distance(fl1.begin(), fl1.end()) == 3 ); in test01()
42 auto it1 = fl1.begin(); in test01()
/dports/lang/gcc9-devel/gcc-9-20211007/libstdc++-v3/testsuite/23_containers/forward_list/operations/
H A Dremove_freed.cc30 std::forward_list<int> fl1; in test01() local
32 fl1.push_front(1); in test01()
33 fl1.push_front(2); in test01()
34 fl1.push_front(3); in test01()
35 fl1.push_front(4); in test01()
36 fl1.push_front(1); in test01()
38 fl1.remove(*fl1.begin()); in test01()
40 VERIFY( std::distance(fl1.begin(), fl1.end()) == 3 ); in test01()
42 auto it1 = fl1.begin(); in test01()
/dports/lang/gcc9/gcc-9.4.0/libstdc++-v3/testsuite/23_containers/forward_list/operations/
H A Dremove_freed.cc30 std::forward_list<int> fl1; in test01() local
32 fl1.push_front(1); in test01()
33 fl1.push_front(2); in test01()
34 fl1.push_front(3); in test01()
35 fl1.push_front(4); in test01()
36 fl1.push_front(1); in test01()
38 fl1.remove(*fl1.begin()); in test01()
40 VERIFY( std::distance(fl1.begin(), fl1.end()) == 3 ); in test01()
42 auto it1 = fl1.begin(); in test01()
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/libstdc++-v3/testsuite/23_containers/forward_list/operations/
H A Dremove_freed.cc30 std::forward_list<int> fl1; in test01() local
32 fl1.push_front(1); in test01()
33 fl1.push_front(2); in test01()
34 fl1.push_front(3); in test01()
35 fl1.push_front(4); in test01()
36 fl1.push_front(1); in test01()
38 fl1.remove(*fl1.begin()); in test01()
40 VERIFY( std::distance(fl1.begin(), fl1.end()) == 3 ); in test01()
42 auto it1 = fl1.begin(); in test01()
/dports/lang/gcc11/gcc-11.2.0/libstdc++-v3/testsuite/23_containers/forward_list/operations/
H A Dremove_freed.cc30 std::forward_list<int> fl1; in test01() local
32 fl1.push_front(1); in test01()
33 fl1.push_front(2); in test01()
34 fl1.push_front(3); in test01()
35 fl1.push_front(4); in test01()
36 fl1.push_front(1); in test01()
38 fl1.remove(*fl1.begin()); in test01()
40 VERIFY( std::distance(fl1.begin(), fl1.end()) == 3 ); in test01()
42 auto it1 = fl1.begin(); in test01()
/dports/lang/gcc10-devel/gcc-10-20211008/libstdc++-v3/testsuite/23_containers/forward_list/operations/
H A Dremove_freed.cc30 std::forward_list<int> fl1; in test01() local
32 fl1.push_front(1); in test01()
33 fl1.push_front(2); in test01()
34 fl1.push_front(3); in test01()
35 fl1.push_front(4); in test01()
36 fl1.push_front(1); in test01()
38 fl1.remove(*fl1.begin()); in test01()
40 VERIFY( std::distance(fl1.begin(), fl1.end()) == 3 ); in test01()
42 auto it1 = fl1.begin(); in test01()
/dports/misc/cxx_atomics_pic/gcc-11.2.0/libstdc++-v3/testsuite/23_containers/forward_list/operations/
H A Dremove_freed.cc30 std::forward_list<int> fl1; in test01() local
32 fl1.push_front(1); in test01()
33 fl1.push_front(2); in test01()
34 fl1.push_front(3); in test01()
35 fl1.push_front(4); in test01()
36 fl1.push_front(1); in test01()
38 fl1.remove(*fl1.begin()); in test01()
40 VERIFY( std::distance(fl1.begin(), fl1.end()) == 3 ); in test01()
42 auto it1 = fl1.begin(); in test01()
/dports/lang/gcc9-aux/gcc-9.1.0/libstdc++-v3/testsuite/23_containers/forward_list/operations/
H A Dremove_freed.cc30 std::forward_list<int> fl1; in test01() local
32 fl1.push_front(1); in test01()
33 fl1.push_front(2); in test01()
34 fl1.push_front(3); in test01()
35 fl1.push_front(4); in test01()
36 fl1.push_front(1); in test01()
38 fl1.remove(*fl1.begin()); in test01()
40 VERIFY( std::distance(fl1.begin(), fl1.end()) == 3 ); in test01()
42 auto it1 = fl1.begin(); in test01()
/dports/lang/gcc6-aux/gcc-6-20180516/libgcc/config/s390/32/
H A D_fixsfdi.c64 register union float_long fl1; in __fixsfdi() local
68 fl1.f = a1; in __fixsfdi()
71 if (!EXP (fl1)) in __fixsfdi()
74 exp = EXP (fl1) - EXPONENT_BIAS - MANTISSA_BITS; in __fixsfdi()
82 if ((EXP (fl1) == 0xff) && (FRAC (fl1) != 0)) /* NaN */ in __fixsfdi()
92 if (!SIGN (fl1) || exp > 40 || FRAC (fl1) != 0) in __fixsfdi()
95 return SIGN (fl1) ? LLONG_MIN : LLONG_MAX; in __fixsfdi()
98 l = MANT (fl1); in __fixsfdi()
105 return (SIGN (fl1) ? -l : l); in __fixsfdi()
/dports/lang/gcc8/gcc-8.5.0/libgcc/config/s390/32/
H A D_fixsfdi.c64 register union float_long fl1; in __fixsfdi() local
68 fl1.f = a1; in __fixsfdi()
71 if (!EXP (fl1)) in __fixsfdi()
74 exp = EXP (fl1) - EXPONENT_BIAS - MANTISSA_BITS; in __fixsfdi()
82 if ((EXP (fl1) == 0xff) && (FRAC (fl1) != 0)) /* NaN */ in __fixsfdi()
92 if (!SIGN (fl1) || exp > 40 || FRAC (fl1) != 0) in __fixsfdi()
95 return SIGN (fl1) ? LLONG_MIN : LLONG_MAX; in __fixsfdi()
98 l = MANT (fl1); in __fixsfdi()
105 return (SIGN (fl1) ? -l : l); in __fixsfdi()

12345678910>>...85