1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
|
{$mode macpas}
{$r-}
{$q-}
procedure testlongintrot;
const
haltoffset = 0;
var
l : longint;
begin
l := 1;
l := brotl(l,1);
if (l <> 2) then
halt(1+haltoffset);
l := brotr(l,1);
if (l <> 1) then
halt(2+haltoffset);
l := longint($80000001);
l := brotl(l,2);
if (l <> 6) then
halt(3+haltoffset);
l := brotr(l,3);
if (l <> longint($c0000000)) then
halt(4+haltoffset);
l := brotr(l,2);
// "longint($c0000000) shr 2" is evaluated using 64 bit :/
if (l <> (longint(cardinal($c0000000) shr 2))) then
halt(5+haltoffset);
end;
procedure testcardinalrot;
const
haltoffset = 5;
var
l : cardinal;
begin
l := 1;
l := brotl(l,1);
if (l <> 2) then
halt(1+haltoffset);
l := brotr(l,1);
if (l <> 1) then
halt(2+haltoffset);
l := $80000001;
l := brotl(l,2);
if (l <> 6) then
halt(3+haltoffset);
l := brotr(l,3);
if (l <> $c0000000) then
halt(4+haltoffset);
l := brotr(l,2);
if (l <> (cardinal($c0000000) shr 2)) then
halt(5+haltoffset);
end;
procedure testint64rot;
const
haltoffset = 10;
var
l : int64;
begin
l := 1;
l := brotl(l,1);
if (l <> 2) then
halt(1+haltoffset);
l := brotr(l,1);
if (l <> 1) then
halt(2+haltoffset);
l := $80000001;
l := brotl(l,2);
if (l <> $200000004) then
halt(3+haltoffset);
l := brotr(l,3);
if (l <> int64($8000000040000000)) then
halt(4+haltoffset);
l := brotr(l,2);
if (l <> (int64($8000000040000000) shr 2)) then
halt(5+haltoffset);
end;
procedure testqwordrot;
const
haltoffset = 15;
var
l : qword;
begin
l := 1;
l := brotl(l,1);
if (l <> 2) then
halt(1+haltoffset);
l := brotr(l,1);
if (l <> 1) then
halt(2+haltoffset);
l := $80000001;
l := brotl(l,2);
if (l <> $200000004) then
halt(3+haltoffset);
l := brotr(l,3);
if (l <> qword($8000000040000000)) then
halt(4+haltoffset);
l := brotr(l,2);
if (l <> (qword($8000000040000000) shr 2)) then
halt(5+haltoffset);
end;
procedure testlongintnot;
const
haltoffset = 20;
var
l, j : longint;
begin
l := low(longint);
for j := 1 to (maxlongint div 13579) do
begin
if not(l) <> bnot(l) then
halt(haltoffset+1);
inc(l,13579*2);
end;
end;
procedure testcardinalnot;
const
haltoffset = 21;
var
l, j : cardinal;
begin
l := 0;
for j := 1 to (maxlongint div 13579) do
begin
if not(l) <> bnot(l) then
halt(haltoffset+1);
inc(l,13579*2);
end;
end;
procedure testint64not;
const
haltoffset = 22;
var
l, j : int64;
begin
l := low(int64);
j := 1;
repeat
if not(l) <> bnot(l) then
halt(haltoffset+1);
inc(l,int64(13579)*high(longint)*2);
inc(j);
until (j = (high(int64) div (int64(13579) * high(longint))));
end;
procedure testqwordnot;
const
haltoffset = 22;
var
l, j : qword;
begin
l := 0;
j := 1;
repeat
if not(l) <> bnot(l) then
halt(haltoffset+1);
inc(l,int64(13579)*high(longint)*2);
inc(j);
until (j = (high(int64) div (int64(13579) * high(longint))));
end;
begin
testlongintrot;
testcardinalrot;
testint64rot;
testqwordrot;
testlongintnot;
testcardinalnot;
testint64not;
testqwordnot;
end.
|