✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ beluga.o2switch.net ​🇻​♯➤ 4.18.0-553.123.2.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 185.154.139.77 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.84
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /opt/alt/python37/lib64/python3.7/test/decimaltestdata//ddRotate.decTest
------------------------------------------------------------------------
-- ddRotate.decTest -- rotate a decDouble coefficient left or right   --
-- Copyright (c) IBM Corporation, 1981, 2008.  All rights reserved.   --
------------------------------------------------------------------------
-- Please see the document "General Decimal Arithmetic Testcases"     --
-- at http://www2.hursley.ibm.com/decimal for the description of      --
-- these testcases.                                                   --
--                                                                    --
-- These testcases are experimental ('beta' versions), and they       --
-- may contain errors.  They are offered on an as-is basis.  In       --
-- particular, achieving the same results as the tests here is not    --
-- a guarantee that an implementation complies with any Standard      --
-- or specification.  The tests are not exhaustive.                   --
--                                                                    --
-- Please send comments, suggestions, and corrections to the author:  --
--   Mike Cowlishaw, IBM Fellow                                       --
--   IBM UK, PO Box 31, Birmingham Road, Warwick CV34 5JL, UK         --
--   mfc@uk.ibm.com                                                   --
------------------------------------------------------------------------
version: 2.59

precision:   16
maxExponent: 384
minExponent: -383
extended:    1
clamp:       1
rounding:    half_even

-- Sanity check
ddrot001 rotate                 0    0  ->  0
ddrot002 rotate                 0    2  ->  0
ddrot003 rotate                 1    2  ->  100
ddrot004 rotate                 1   15  ->  1000000000000000
ddrot005 rotate                 1   16  ->  1
ddrot006 rotate                 1   -1  ->  1000000000000000
ddrot007 rotate                 0   -2  ->  0
ddrot008 rotate  1234567890123456   -1  ->  6123456789012345
ddrot009 rotate  1234567890123456   -15 ->  2345678901234561
ddrot010 rotate  1234567890123456   -16 ->  1234567890123456
ddrot011 rotate  9934567890123456   -15 ->  9345678901234569
ddrot012 rotate  9934567890123456   -16 ->  9934567890123456

-- rhs must be an integer
ddrot015 rotate        1    1.5    -> NaN Invalid_operation
ddrot016 rotate        1    1.0    -> NaN Invalid_operation
ddrot017 rotate        1    0.1    -> NaN Invalid_operation
ddrot018 rotate        1    0.0    -> NaN Invalid_operation
ddrot019 rotate        1    1E+1   -> NaN Invalid_operation
ddrot020 rotate        1    1E+99  -> NaN Invalid_operation
ddrot021 rotate        1    Inf    -> NaN Invalid_operation
ddrot022 rotate        1    -Inf   -> NaN Invalid_operation
-- and |rhs| <= precision
ddrot025 rotate        1    -1000  -> NaN Invalid_operation
ddrot026 rotate        1    -17    -> NaN Invalid_operation
ddrot027 rotate        1     17    -> NaN Invalid_operation
ddrot028 rotate        1     1000  -> NaN Invalid_operation

-- full pattern
ddrot030 rotate  1234567890123456         -16  -> 1234567890123456
ddrot031 rotate  1234567890123456         -15  -> 2345678901234561
ddrot032 rotate  1234567890123456         -14  -> 3456789012345612
ddrot033 rotate  1234567890123456         -13  -> 4567890123456123
ddrot034 rotate  1234567890123456         -12  -> 5678901234561234
ddrot035 rotate  1234567890123456         -11  -> 6789012345612345
ddrot036 rotate  1234567890123456         -10  -> 7890123456123456
ddrot037 rotate  1234567890123456         -9   -> 8901234561234567
ddrot038 rotate  1234567890123456         -8   -> 9012345612345678
ddrot039 rotate  1234567890123456         -7   ->  123456123456789
ddrot040 rotate  1234567890123456         -6   -> 1234561234567890
ddrot041 rotate  1234567890123456         -5   -> 2345612345678901
ddrot042 rotate  1234567890123456         -4   -> 3456123456789012
ddrot043 rotate  1234567890123456         -3   -> 4561234567890123
ddrot044 rotate  1234567890123456         -2   -> 5612345678901234
ddrot045 rotate  1234567890123456         -1   -> 6123456789012345
ddrot046 rotate  1234567890123456         -0   -> 1234567890123456

ddrot047 rotate  1234567890123456         +0   -> 1234567890123456
ddrot048 rotate  1234567890123456         +1   -> 2345678901234561
ddrot049 rotate  1234567890123456         +2   -> 3456789012345612
ddrot050 rotate  1234567890123456         +3   -> 4567890123456123
ddrot051 rotate  1234567890123456         +4   -> 5678901234561234
ddrot052 rotate  1234567890123456         +5   -> 6789012345612345
ddrot053 rotate  1234567890123456         +6   -> 7890123456123456
ddrot054 rotate  1234567890123456         +7   -> 8901234561234567
ddrot055 rotate  1234567890123456         +8   -> 9012345612345678
ddrot056 rotate  1234567890123456         +9   ->  123456123456789
ddrot057 rotate  1234567890123456         +10  -> 1234561234567890
ddrot058 rotate  1234567890123456         +11  -> 2345612345678901
ddrot059 rotate  1234567890123456         +12  -> 3456123456789012
ddrot060 rotate  1234567890123456         +13  -> 4561234567890123
ddrot061 rotate  1234567890123456         +14  -> 5612345678901234
ddrot062 rotate  1234567890123456         +15  -> 6123456789012345
ddrot063 rotate  1234567890123456         +16  -> 1234567890123456

-- zeros
ddrot070 rotate  0E-10              +9   ->   0E-10
ddrot071 rotate  0E-10              -9   ->   0E-10
ddrot072 rotate  0.000              +9   ->   0.000
ddrot073 rotate  0.000              -9   ->   0.000
ddrot074 rotate  0E+10              +9   ->   0E+10
ddrot075 rotate  0E+10              -9   ->   0E+10
ddrot076 rotate -0E-10              +9   ->  -0E-10
ddrot077 rotate -0E-10              -9   ->  -0E-10
ddrot078 rotate -0.000              +9   ->  -0.000
ddrot079 rotate -0.000              -9   ->  -0.000
ddrot080 rotate -0E+10              +9   ->  -0E+10
ddrot081 rotate -0E+10              -9   ->  -0E+10

-- Nmax, Nmin, Ntiny
ddrot141 rotate  9.999999999999999E+384     -1  -> 9.999999999999999E+384
ddrot142 rotate  9.999999999999999E+384     -15 -> 9.999999999999999E+384
ddrot143 rotate  9.999999999999999E+384      1  -> 9.999999999999999E+384
ddrot144 rotate  9.999999999999999E+384      15 -> 9.999999999999999E+384
ddrot145 rotate  1E-383                     -1  -> 1.000000000000000E-368
ddrot146 rotate  1E-383                     -15 -> 1.0E-382
ddrot147 rotate  1E-383                      1  -> 1.0E-382
ddrot148 rotate  1E-383                      15 -> 1.000000000000000E-368
ddrot151 rotate  1.000000000000000E-383     -1  -> 1.00000000000000E-384
ddrot152 rotate  1.000000000000000E-383     -15 -> 1E-398
ddrot153 rotate  1.000000000000000E-383      1  -> 1E-398
ddrot154 rotate  1.000000000000000E-383      15 -> 1.00000000000000E-384
ddrot155 rotate  9.000000000000000E-383     -1  -> 9.00000000000000E-384
ddrot156 rotate  9.000000000000000E-383     -15 -> 9E-398
ddrot157 rotate  9.000000000000000E-383      1  -> 9E-398
ddrot158 rotate  9.000000000000000E-383      15 -> 9.00000000000000E-384
ddrot160 rotate  1E-398                     -1  -> 1.000000000000000E-383
ddrot161 rotate  1E-398                     -15 -> 1.0E-397
ddrot162 rotate  1E-398                      1  -> 1.0E-397
ddrot163 rotate  1E-398                      15 -> 1.000000000000000E-383
--  negatives
ddrot171 rotate -9.999999999999999E+384     -1  -> -9.999999999999999E+384
ddrot172 rotate -9.999999999999999E+384     -15 -> -9.999999999999999E+384
ddrot173 rotate -9.999999999999999E+384      1  -> -9.999999999999999E+384
ddrot174 rotate -9.999999999999999E+384      15 -> -9.999999999999999E+384
ddrot175 rotate -1E-383                     -1  -> -1.000000000000000E-368
ddrot176 rotate -1E-383                     -15 -> -1.0E-382
ddrot177 rotate -1E-383                      1  -> -1.0E-382
ddrot178 rotate -1E-383                      15 -> -1.000000000000000E-368
ddrot181 rotate -1.000000000000000E-383     -1  -> -1.00000000000000E-384
ddrot182 rotate -1.000000000000000E-383     -15 -> -1E-398
ddrot183 rotate -1.000000000000000E-383      1  -> -1E-398
ddrot184 rotate -1.000000000000000E-383      15 -> -1.00000000000000E-384
ddrot185 rotate -9.000000000000000E-383     -1  -> -9.00000000000000E-384
ddrot186 rotate -9.000000000000000E-383     -15 -> -9E-398
ddrot187 rotate -9.000000000000000E-383      1  -> -9E-398
ddrot188 rotate -9.000000000000000E-383      15 -> -9.00000000000000E-384
ddrot190 rotate -1E-398                     -1  -> -1.000000000000000E-383
ddrot191 rotate -1E-398                     -15 -> -1.0E-397
ddrot192 rotate -1E-398                      1  -> -1.0E-397
ddrot193 rotate -1E-398                      15 -> -1.000000000000000E-383

-- more negatives (of sanities)
ddrot201 rotate                -0    0  -> -0
ddrot202 rotate                -0    2  -> -0
ddrot203 rotate                -1    2  -> -100
ddrot204 rotate                -1   15  -> -1000000000000000
ddrot205 rotate                -1   16  -> -1
ddrot206 rotate                -1   -1  -> -1000000000000000
ddrot207 rotate                -0   -2  -> -0
ddrot208 rotate -1234567890123456   -1  -> -6123456789012345
ddrot209 rotate -1234567890123456   -15 -> -2345678901234561
ddrot210 rotate -1234567890123456   -16 -> -1234567890123456
ddrot211 rotate -9934567890123456   -15 -> -9345678901234569
ddrot212 rotate -9934567890123456   -16 -> -9934567890123456


-- Specials; NaNs are handled as usual
ddrot781 rotate -Inf  -8     -> -Infinity
ddrot782 rotate -Inf  -1     -> -Infinity
ddrot783 rotate -Inf  -0     -> -Infinity
ddrot784 rotate -Inf   0     -> -Infinity
ddrot785 rotate -Inf   1     -> -Infinity
ddrot786 rotate -Inf   8     -> -Infinity
ddrot787 rotate -1000 -Inf   -> NaN Invalid_operation
ddrot788 rotate -Inf  -Inf   -> NaN Invalid_operation
ddrot789 rotate -1    -Inf   -> NaN Invalid_operation
ddrot790 rotate -0    -Inf   -> NaN Invalid_operation
ddrot791 rotate  0    -Inf   -> NaN Invalid_operation
ddrot792 rotate  1    -Inf   -> NaN Invalid_operation
ddrot793 rotate  1000 -Inf   -> NaN Invalid_operation
ddrot794 rotate  Inf  -Inf   -> NaN Invalid_operation

ddrot800 rotate  Inf  -Inf   -> NaN Invalid_operation
ddrot801 rotate  Inf  -8     -> Infinity
ddrot802 rotate  Inf  -1     -> Infinity
ddrot803 rotate  Inf  -0     -> Infinity
ddrot804 rotate  Inf   0     -> Infinity
ddrot805 rotate  Inf   1     -> Infinity
ddrot806 rotate  Inf   8     -> Infinity
ddrot807 rotate  Inf   Inf   -> NaN Invalid_operation
ddrot808 rotate -1000  Inf   -> NaN Invalid_operation
ddrot809 rotate -Inf   Inf   -> NaN Invalid_operation
ddrot810 rotate -1     Inf   -> NaN Invalid_operation
ddrot811 rotate -0     Inf   -> NaN Invalid_operation
ddrot812 rotate  0     Inf   -> NaN Invalid_operation
ddrot813 rotate  1     Inf   -> NaN Invalid_operation
ddrot814 rotate  1000  Inf   -> NaN Invalid_operation
ddrot815 rotate  Inf   Inf   -> NaN Invalid_operation

ddrot821 rotate  NaN -Inf    ->  NaN
ddrot822 rotate  NaN -1000   ->  NaN
ddrot823 rotate  NaN -1      ->  NaN
ddrot824 rotate  NaN -0      ->  NaN
ddrot825 rotate  NaN  0      ->  NaN
ddrot826 rotate  NaN  1      ->  NaN
ddrot827 rotate  NaN  1000   ->  NaN
ddrot828 rotate  NaN  Inf    ->  NaN
ddrot829 rotate  NaN  NaN    ->  NaN
ddrot830 rotate -Inf  NaN    ->  NaN
ddrot831 rotate -1000 NaN    ->  NaN
ddrot832 rotate -1    NaN    ->  NaN
ddrot833 rotate -0    NaN    ->  NaN
ddrot834 rotate  0    NaN    ->  NaN
ddrot835 rotate  1    NaN    ->  NaN
ddrot836 rotate  1000 NaN    ->  NaN
ddrot837 rotate  Inf  NaN    ->  NaN

ddrot841 rotate  sNaN -Inf   ->  NaN  Invalid_operation
ddrot842 rotate  sNaN -1000  ->  NaN  Invalid_operation
ddrot843 rotate  sNaN -1     ->  NaN  Invalid_operation
ddrot844 rotate  sNaN -0     ->  NaN  Invalid_operation
ddrot845 rotate  sNaN  0     ->  NaN  Invalid_operation
ddrot846 rotate  sNaN  1     ->  NaN  Invalid_operation
ddrot847 rotate  sNaN  1000  ->  NaN  Invalid_operation
ddrot848 rotate  sNaN  NaN   ->  NaN  Invalid_operation
ddrot849 rotate  sNaN sNaN   ->  NaN  Invalid_operation
ddrot850 rotate  NaN  sNaN   ->  NaN  Invalid_operation
ddrot851 rotate -Inf  sNaN   ->  NaN  Invalid_operation
ddrot852 rotate -1000 sNaN   ->  NaN  Invalid_operation
ddrot853 rotate -1    sNaN   ->  NaN  Invalid_operation
ddrot854 rotate -0    sNaN   ->  NaN  Invalid_operation
ddrot855 rotate  0    sNaN   ->  NaN  Invalid_operation
ddrot856 rotate  1    sNaN   ->  NaN  Invalid_operation
ddrot857 rotate  1000 sNaN   ->  NaN  Invalid_operation
ddrot858 rotate  Inf  sNaN   ->  NaN  Invalid_operation
ddrot859 rotate  NaN  sNaN   ->  NaN  Invalid_operation

-- propagating NaNs
ddrot861 rotate  NaN1   -Inf    ->  NaN1
ddrot862 rotate +NaN2   -1000   ->  NaN2
ddrot863 rotate  NaN3    1000   ->  NaN3
ddrot864 rotate  NaN4    Inf    ->  NaN4
ddrot865 rotate  NaN5   +NaN6   ->  NaN5
ddrot866 rotate -Inf     NaN7   ->  NaN7
ddrot867 rotate -1000    NaN8   ->  NaN8
ddrot868 rotate  1000    NaN9   ->  NaN9
ddrot869 rotate  Inf    +NaN10  ->  NaN10
ddrot871 rotate  sNaN11  -Inf   ->  NaN11  Invalid_operation
ddrot872 rotate  sNaN12  -1000  ->  NaN12  Invalid_operation
ddrot873 rotate  sNaN13   1000  ->  NaN13  Invalid_operation
ddrot874 rotate  sNaN14   NaN17 ->  NaN14  Invalid_operation
ddrot875 rotate  sNaN15  sNaN18 ->  NaN15  Invalid_operation
ddrot876 rotate  NaN16   sNaN19 ->  NaN19  Invalid_operation
ddrot877 rotate -Inf    +sNaN20 ->  NaN20  Invalid_operation
ddrot878 rotate -1000    sNaN21 ->  NaN21  Invalid_operation
ddrot879 rotate  1000    sNaN22 ->  NaN22  Invalid_operation
ddrot880 rotate  Inf     sNaN23 ->  NaN23  Invalid_operation
ddrot881 rotate +NaN25  +sNaN24 ->  NaN24  Invalid_operation
ddrot882 rotate -NaN26    NaN28 -> -NaN26
ddrot883 rotate -sNaN27  sNaN29 -> -NaN27  Invalid_operation
ddrot884 rotate  1000    -NaN30 -> -NaN30
ddrot885 rotate  1000   -sNaN31 -> -NaN31  Invalid_operation


Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
25 Jul 2024 8.42 AM
root / linksafe
0755
abs.decTest
6.142 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
add.decTest
137.049 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
and.decTest
15.98 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
base.decTest
59.917 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
clamp.decTest
10.751 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
class.decTest
6.227 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
compare.decTest
28.933 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
comparetotal.decTest
33.616 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
comparetotmag.decTest
35.282 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
copy.decTest
3.297 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
copyabs.decTest
3.402 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
copynegate.decTest
3.587 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
copysign.decTest
7.205 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddAbs.decTest
4.786 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddAdd.decTest
76.265 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddAnd.decTest
18.183 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddBase.decTest
53.181 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddCanonical.decTest
18.465 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddClass.decTest
3.815 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddCompare.decTest
29.572 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddCompareSig.decTest
27.742 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddCompareTotal.decTest
29.92 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddCompareTotalMag.decTest
31.658 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddCopy.decTest
3.536 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddCopyAbs.decTest
3.642 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddCopyNegate.decTest
3.791 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddCopySign.decTest
7.453 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddDivide.decTest
47.009 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddDivideInt.decTest
19.125 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddEncode.decTest
24.109 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddFMA.decTest
99.785 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddInvert.decTest
10.118 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddLogB.decTest
6.094 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddMax.decTest
12.025 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddMaxMag.decTest
12.444 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddMin.decTest
11.688 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddMinMag.decTest
11.353 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddMinus.decTest
3.701 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddMultiply.decTest
28.617 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddNextMinus.decTest
6.667 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddNextPlus.decTest
6.565 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddNextToward.decTest
24.404 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddOr.decTest
15.647 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddPlus.decTest
3.658 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddQuantize.decTest
41.497 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddReduce.decTest
7.285 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddRemainder.decTest
26.354 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddRemainderNear.decTest
29.55 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddRotate.decTest
13.752 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddSameQuantum.decTest
17.13 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddScaleB.decTest
12.487 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddShift.decTest
13.097 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddSubtract.decTest
34.568 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddToIntegral.decTest
11.906 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ddXor.decTest
17.287 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
decDouble.decTest
2.157 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
decQuad.decTest
2.155 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
decSingle.decTest
1.422 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
divide.decTest
36.918 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
divideint.decTest
19.957 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqAbs.decTest
5.151 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqAdd.decTest
87.106 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqAnd.decTest
28.44 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqBase.decTest
57.573 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqCanonical.decTest
26.679 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqClass.decTest
3.926 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqCompare.decTest
32.346 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqCompareSig.decTest
28.999 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqCompareTotal.decTest
30.123 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqCompareTotalMag.decTest
31.861 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqCopy.decTest
3.894 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqCopyAbs.decTest
4.005 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqCopyNegate.decTest
4.148 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqCopySign.decTest
8.035 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqDivide.decTest
53.811 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqDivideInt.decTest
19.361 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqEncode.decTest
30.693 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqFMA.decTest
126.943 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqInvert.decTest
15.746 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqLogB.decTest
6.23 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqMax.decTest
12.06 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqMaxMag.decTest
12.489 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqMin.decTest
11.723 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqMinMag.decTest
11.376 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqMinus.decTest
4.059 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqMultiply.decTest
31.731 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqNextMinus.decTest
8.448 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqNextPlus.decTest
8.327 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqNextToward.decTest
29.029 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqOr.decTest
29.899 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqPlus.decTest
4.016 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqQuantize.decTest
42.082 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqReduce.decTest
7.637 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqRemainder.decTest
26.917 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqRemainderNear.decTest
30.556 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqRotate.decTest
20.488 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqSameQuantum.decTest
17.72 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqScaleB.decTest
15.683 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqShift.decTest
18.98 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqSubtract.decTest
40.945 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqToIntegral.decTest
11.938 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dqXor.decTest
27.601 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dsBase.decTest
48.404 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
dsEncode.decTest
15.514 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
exp.decTest
38.517 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
extra.decTest
90.344 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
fma.decTest
190.748 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
inexact.decTest
10.246 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
invert.decTest
8.092 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
ln.decTest
34.692 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
log10.decTest
31.93 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
logb.decTest
7.147 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
max.decTest
15.598 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
maxmag.decTest
16.945 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
min.decTest
15.322 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
minmag.decTest
15.076 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
minus.decTest
7.251 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
multiply.decTest
37.416 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
nextminus.decTest
6.779 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
nextplus.decTest
6.761 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
nexttoward.decTest
24.633 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
or.decTest
15.485 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
plus.decTest
7.697 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
power.decTest
92.755 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
powersqrt.decTest
154.937 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
quantize.decTest
46.174 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
randomBound32.decTest
297.369 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
randoms.decTest
284.251 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
reduce.decTest
9.101 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
remainder.decTest
26.488 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
remainderNear.decTest
24.432 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
rescale.decTest
34.431 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
rotate.decTest
11.609 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
rounding.decTest
62.277 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
samequantum.decTest
15.822 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
scaleb.decTest
9.68 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
shift.decTest
11.398 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
squareroot.decTest
187.948 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
subtract.decTest
43.267 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
testall.decTest
2.667 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
tointegral.decTest
8.656 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
tointegralx.decTest
11.582 KB
5 Jun 2023 8.45 PM
root / linksafe
0644
xor.decTest
15.946 KB
5 Jun 2023 8.45 PM
root / linksafe
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF