Registriert seit: 22. Mär 2005
Ort: Dingolfing
4.129 Beiträge
Turbo Delphi für Win32
|
Re: Function für Vorzeichen?
9. Sep 2006, 15:01
Das geht schneller:
Delphi-Quellcode:
function signmultiply(const a, b: Extended): Extended;
begin
result:=a;
PByte(Integer(@result)+9)^:=PByte(Integer(@result)+9)^ xor
(PByte(Integer(@b)+9)^ and (1 shl 7));
end;
c:=signmultiply(a, b) macht in etwa das: if b<0 then c:=-a else c:=a;
Manuel Eberl „The trouble with having an open mind, of course, is that people will insist on coming along and trying to put things in it.“
- Terry Pratchett
|