Home
last modified time | relevance | path

Searched refs:d123 (Results 1 – 25 of 172) sorted by relevance

1234567

/dports/math/scilab/scilab-6.1.1/scilab/modules/output_stream/tests/nonreg_tests/
H A Dbug_1371.tst19 if string(1.2345d123)<>"1.23D+123" then pause,end
21 if string(-1.2345d123)<>"-1.23D+123" then pause,end
31 if string(1.2345d123+%i)<>"1.23D+123+%i" then pause,end
33 if string(-1.2345d123+3.33*%i)<>"-1.23D+123+%i*3.33" then pause,end
43 if string(1.2345678d123)<>"1.2345678D+123" then pause,end
46 if string(-1.2345678d123)<>"-1.2345678D+123" then pause,end
59 A=[1.7894567d120 1.2345678d123
60 4.2345678d123 -7.7894567d120];
65 4.2345678d123 -7.7894567d120-2.45*%i];
H A Dbug_1371.dia.ref17 if string(1.2345d123)<>"1.23D+123" then bugmes();quit;end
19 if string(-1.2345d123)<>"-1.23D+123" then bugmes();quit;end
26 if string(1.2345d123+%i)<>"1.23D+123+%i" then bugmes();quit;end
28 if string(-1.2345d123+3.33*%i)<>"-1.23D+123+%i*3.33" then bugmes();quit;end
32 if string(1.2345678d123)<>"1.2345678D+123" then bugmes();quit;end
34 if string(-1.2345678d123)<>"-1.2345678D+123" then bugmes();quit;end
40 A=[1.7894567d120 1.2345678d123
41 4.2345678d123 -7.7894567d120];
44 4.2345678d123 -7.7894567d120-2.45*%i];
/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/src/osg/
H A DLineSegment.cpp346 value_type d123 = (v1-v2)*n23; in intersect() local
347 if (d123>=0.0) in intersect()
350 if (ds23>d123) return false; in intersect()
355 if (ds23<d123) return false; in intersect()
374 value_type r1 = ds23/d123; in intersect()
417 value_type d123 = (v1-v2)*n23; in intersect() local
418 if (d123>=0.0) in intersect()
421 if (ds23>d123) return false; in intersect()
426 if (ds23<d123) return false; in intersect()
445 value_type r1 = ds23/d123; in intersect()
/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/src/osg/
H A DLineSegment.cpp346 value_type d123 = (v1-v2)*n23; in intersect() local
347 if (d123>=0.0) in intersect()
350 if (ds23>d123) return false; in intersect()
355 if (ds23<d123) return false; in intersect()
374 value_type r1 = ds23/d123; in intersect()
417 value_type d123 = (v1-v2)*n23; in intersect() local
418 if (d123>=0.0) in intersect()
421 if (ds23>d123) return false; in intersect()
426 if (ds23<d123) return false; in intersect()
445 value_type r1 = ds23/d123; in intersect()
/dports/math/fxt/fxt/src/ntt/attic/
H A Dnttndim.cc122 ulong d123=d1*d2*d3; in ntt_4dim() local
123 ulong n=d123*d4; in ntt_4dim()
126 for (k=0; k<n; k+=d123) ntt_3dim(f+k,d1,d2,d3,is); in ntt_4dim()
128 for (k=0; k<d123; k++) skip_ntt(f+k,d4,d123,w,is); in ntt_4dim()
/dports/math/fxt/fxt/src/fft/attic/
H A Dndimfft.cc117 ulong d123 = d1*d2*d3; in fft_4dim() local
118 ulong n = d123*d4; in fft_4dim()
120 for (ulong k=0; k<n; k+=d123) fft_3dim(fr+k, fi+k, d1, d2, d3, is); in fft_4dim()
122 for (ulong k=0; k<d123; k++) skip_fft(fr+k, fi+k, d4, d123, wr, wi, is); in fft_4dim()
/dports/lang/gcc6-aux/gcc-6-20180516/libgcc/config/libbid/
H A Dbid128_string.c58 unsigned int d0, d123; local
232 d123 = exp - 1000 * d0;
236 ind = 3 * d123;
241 if (d123 < 10) { // 0 <= exp <= 9 => 1 digit to return
242 str[k++] = d123 + 0x30;// ASCII
243 } else if (d123 < 100) { // 10 <= exp <= 99 => 2 digits to return
244 ind = 2 * (d123 - 10);
248 ind = 3 * d123;
/dports/lang/gcc8/gcc-8.5.0/libgcc/config/libbid/
H A Dbid128_string.c58 unsigned int d0, d123; local
232 d123 = exp - 1000 * d0;
236 ind = 3 * d123;
241 if (d123 < 10) { // 0 <= exp <= 9 => 1 digit to return
242 str[k++] = d123 + 0x30;// ASCII
243 } else if (d123 < 100) { // 10 <= exp <= 99 => 2 digits to return
244 ind = 2 * (d123 - 10);
248 ind = 3 * d123;
/dports/lang/gcc48/gcc-4.8.5/libgcc/config/libbid/
H A Dbid128_string.c58 unsigned int d0, d123; local
232 d123 = exp - 1000 * d0;
236 ind = 3 * d123;
241 if (d123 < 10) { // 0 <= exp <= 9 => 1 digit to return
242 str[k++] = d123 + 0x30;// ASCII
243 } else if (d123 < 100) { // 10 <= exp <= 99 => 2 digits to return
244 ind = 2 * (d123 - 10);
248 ind = 3 * d123;
/dports/lang/gcc10/gcc-10.3.0/libgcc/config/libbid/
H A Dbid128_string.c58 unsigned int d0, d123; local
232 d123 = exp - 1000 * d0;
236 ind = 3 * d123;
241 if (d123 < 10) { // 0 <= exp <= 9 => 1 digit to return
242 str[k++] = d123 + 0x30;// ASCII
243 } else if (d123 < 100) { // 10 <= exp <= 99 => 2 digits to return
244 ind = 2 * (d123 - 10);
248 ind = 3 * d123;
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/libgcc/config/libbid/
H A Dbid128_string.c58 unsigned int d0, d123; local
232 d123 = exp - 1000 * d0;
236 ind = 3 * d123;
241 if (d123 < 10) { // 0 <= exp <= 9 => 1 digit to return
242 str[k++] = d123 + 0x30;// ASCII
243 } else if (d123 < 100) { // 10 <= exp <= 99 => 2 digits to return
244 ind = 2 * (d123 - 10);
248 ind = 3 * d123;
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/libgcc/config/libbid/
H A Dbid128_string.c58 unsigned int d0, d123; local
232 d123 = exp - 1000 * d0;
236 ind = 3 * d123;
241 if (d123 < 10) { // 0 <= exp <= 9 => 1 digit to return
242 str[k++] = d123 + 0x30;// ASCII
243 } else if (d123 < 100) { // 10 <= exp <= 99 => 2 digits to return
244 ind = 2 * (d123 - 10);
248 ind = 3 * d123;
/dports/lang/gcc12-devel/gcc-12-20211205/libgcc/config/libbid/
H A Dbid128_string.c58 unsigned int d0, d123; local
232 d123 = exp - 1000 * d0;
236 ind = 3 * d123;
241 if (d123 < 10) { // 0 <= exp <= 9 => 1 digit to return
242 str[k++] = d123 + 0x30;// ASCII
243 } else if (d123 < 100) { // 10 <= exp <= 99 => 2 digits to return
244 ind = 2 * (d123 - 10);
248 ind = 3 * d123;
/dports/lang/gcc11-devel/gcc-11-20211009/libgcc/config/libbid/
H A Dbid128_string.c58 unsigned int d0, d123; local
232 d123 = exp - 1000 * d0;
236 ind = 3 * d123;
241 if (d123 < 10) { // 0 <= exp <= 9 => 1 digit to return
242 str[k++] = d123 + 0x30;// ASCII
243 } else if (d123 < 100) { // 10 <= exp <= 99 => 2 digits to return
244 ind = 2 * (d123 - 10);
248 ind = 3 * d123;
/dports/devel/avr-gcc/gcc-10.2.0/libgcc/config/libbid/
H A Dbid128_string.c58 unsigned int d0, d123; local
232 d123 = exp - 1000 * d0;
236 ind = 3 * d123;
241 if (d123 < 10) { // 0 <= exp <= 9 => 1 digit to return
242 str[k++] = d123 + 0x30;// ASCII
243 } else if (d123 < 100) { // 10 <= exp <= 99 => 2 digits to return
244 ind = 2 * (d123 - 10);
248 ind = 3 * d123;
/dports/lang/gnat_util/gcc-6-20180516/libgcc/config/libbid/
H A Dbid128_string.c58 unsigned int d0, d123; local
232 d123 = exp - 1000 * d0;
236 ind = 3 * d123;
241 if (d123 < 10) { // 0 <= exp <= 9 => 1 digit to return
242 str[k++] = d123 + 0x30;// ASCII
243 } else if (d123 < 100) { // 10 <= exp <= 99 => 2 digits to return
244 ind = 2 * (d123 - 10);
248 ind = 3 * d123;
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/libgcc/config/libbid/
H A Dbid128_string.c58 unsigned int d0, d123; local
232 d123 = exp - 1000 * d0;
236 ind = 3 * d123;
241 if (d123 < 10) { // 0 <= exp <= 9 => 1 digit to return
242 str[k++] = d123 + 0x30;// ASCII
243 } else if (d123 < 100) { // 10 <= exp <= 99 => 2 digits to return
244 ind = 2 * (d123 - 10);
248 ind = 3 * d123;
/dports/lang/gcc9-devel/gcc-9-20211007/libgcc/config/libbid/
H A Dbid128_string.c58 unsigned int d0, d123; local
232 d123 = exp - 1000 * d0;
236 ind = 3 * d123;
241 if (d123 < 10) { // 0 <= exp <= 9 => 1 digit to return
242 str[k++] = d123 + 0x30;// ASCII
243 } else if (d123 < 100) { // 10 <= exp <= 99 => 2 digits to return
244 ind = 2 * (d123 - 10);
248 ind = 3 * d123;
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libgcc/config/libbid/
H A Dbid128_string.c58 unsigned int d0, d123; local
232 d123 = exp - 1000 * d0;
236 ind = 3 * d123;
241 if (d123 < 10) { // 0 <= exp <= 9 => 1 digit to return
242 str[k++] = d123 + 0x30;// ASCII
243 } else if (d123 < 100) { // 10 <= exp <= 99 => 2 digits to return
244 ind = 2 * (d123 - 10);
248 ind = 3 * d123;
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/libgcc/config/libbid/
H A Dbid128_string.c58 unsigned int d0, d123; local
232 d123 = exp - 1000 * d0;
236 ind = 3 * d123;
241 if (d123 < 10) { // 0 <= exp <= 9 => 1 digit to return
242 str[k++] = d123 + 0x30;// ASCII
243 } else if (d123 < 100) { // 10 <= exp <= 99 => 2 digits to return
244 ind = 2 * (d123 - 10);
248 ind = 3 * d123;
/dports/misc/cxx_atomics_pic/gcc-11.2.0/libgcc/config/libbid/
H A Dbid128_string.c58 unsigned int d0, d123; local
232 d123 = exp - 1000 * d0;
236 ind = 3 * d123;
241 if (d123 < 10) { // 0 <= exp <= 9 => 1 digit to return
242 str[k++] = d123 + 0x30;// ASCII
243 } else if (d123 < 100) { // 10 <= exp <= 99 => 2 digits to return
244 ind = 2 * (d123 - 10);
248 ind = 3 * d123;
/dports/devel/riscv64-gcc/gcc-8.3.0/libgcc/config/libbid/
H A Dbid128_string.c58 unsigned int d0, d123; local
232 d123 = exp - 1000 * d0;
236 ind = 3 * d123;
241 if (d123 < 10) { // 0 <= exp <= 9 => 1 digit to return
242 str[k++] = d123 + 0x30;// ASCII
243 } else if (d123 < 100) { // 10 <= exp <= 99 => 2 digits to return
244 ind = 2 * (d123 - 10);
248 ind = 3 * d123;
/dports/lang/gcc11/gcc-11.2.0/libgcc/config/libbid/
H A Dbid128_string.c58 unsigned int d0, d123; local
232 d123 = exp - 1000 * d0;
236 ind = 3 * d123;
241 if (d123 < 10) { // 0 <= exp <= 9 => 1 digit to return
242 str[k++] = d123 + 0x30;// ASCII
243 } else if (d123 < 100) { // 10 <= exp <= 99 => 2 digits to return
244 ind = 2 * (d123 - 10);
248 ind = 3 * d123;
/dports/lang/gcc10-devel/gcc-10-20211008/libgcc/config/libbid/
H A Dbid128_string.c58 unsigned int d0, d123;
232 d123 = exp - 1000 * d0;
236 ind = 3 * d123;
241 if (d123 < 10) { // 0 <= exp <= 9 => 1 digit to return
242 str[k++] = d123 + 0x30;// ASCII
243 } else if (d123 < 100) { // 10 <= exp <= 99 => 2 digits to return
244 ind = 2 * (d123 - 10);
248 ind = 3 * d123;
/dports/lang/gcc9/gcc-9.4.0/libgcc/config/libbid/
H A Dbid128_string.c58 unsigned int d0, d123; local
232 d123 = exp - 1000 * d0;
236 ind = 3 * d123;
241 if (d123 < 10) { // 0 <= exp <= 9 => 1 digit to return
242 str[k++] = d123 + 0x30;// ASCII
243 } else if (d123 < 100) { // 10 <= exp <= 99 => 2 digits to return
244 ind = 2 * (d123 - 10);
248 ind = 3 * d123;

1234567