You've already forked lazarus-ccr
aarre
applications
bindings
components
Comba_Animation
aboutcomponent
acs
beepfp
callite
chelper
chemtext
cmdline
cmdlinecfg
colorpalette
cryptini
csvdocument
epiktimer
extrasyn
fpexif
fpsound
fpspreadsheet
fractions
freetypepascal
freetype.pas
lazfreetype.lpk
lazfreetype.pas
ttcache.pas
ttcalc.pas
ttcalc1.inc
ttcalc2.inc
ttcalc3.inc
ttcalc4.inc
ttcmap.pas
ttconfig.inc
ttdebug.pas
tterror.pas
ttfile.pas
ttgload.pas
ttinterp.pas
ttload.pas
ttmemory.pas
ttobjs.pas
ttraster.pas
tttables.pas
tttypes.pas
geckoport
gradcontrols
grid_semaphor
industrialstuff
iosdesigner
iphonelazext
jujiboutils
jvcllaz
kcontrols
lazautoupdate
lazbarcodes
lazmapviewer
lclextensions
longtimer
manualdock
mbColorLib
mplayer
multithreadprocs
nvidia-widgets
onguard
orpheus
playsoundpackage
poweredby
powerpdf
rgbgraphics
richmemo
richview
rtfview
rx
scrolltext
smnetgradient
spktoolbar
svn
systools
tdi
thtmlport
tparadoxdataset
tvplanit
xdev_toolkit
zlibar
zmsql
examples
image_sources
lclbindings
wst
108 lines
2.8 KiB
PHP
108 lines
2.8 KiB
PHP
![]() |
(*******************************************************************
|
||
|
*
|
||
|
* TTCalc2.Inc 1.2
|
||
|
*
|
||
|
* Arithmetic and Vectorial Computations (inline assembly)
|
||
|
* This version is used for the OS/2 Virtual Pascal compiler
|
||
|
*
|
||
|
* Copyright 1996 David Turner, Robert Wilhelm and Werner Lemberg
|
||
|
*
|
||
|
* This file is part of the FreeType project, and may only be used
|
||
|
* modified and distributed under the terms of the FreeType project
|
||
|
* license, LICENSE.TXT. By continuing to use, modify or distribute
|
||
|
* this file you indicate that you have read the license and
|
||
|
* understand and accept it fully.
|
||
|
*
|
||
|
* NOTES : All vector operations were moved to the interpreter
|
||
|
*
|
||
|
******************************************************************)
|
||
|
|
||
|
(**********************************************************)
|
||
|
(* *)
|
||
|
(* The following routines are inline assembly, they are *)
|
||
|
(* thus processor and bitness specific. Replace them *)
|
||
|
(* with your own if you want to port the TrueType Engine *)
|
||
|
|
||
|
(* We need unsigned longints to perform correctly our additions *)
|
||
|
(* we include inline assembly to get them, baaahhh .. *)
|
||
|
|
||
|
(**********************************************************)
|
||
|
(* 64 Bit Addition *)
|
||
|
|
||
|
procedure Add64( var X, Y, Z : Int64 ); assembler;
|
||
|
{&USES ebx, edx}
|
||
|
asm
|
||
|
mov ebx,[X].dword
|
||
|
mov eax,[ebx]
|
||
|
mov edx,[ebx+4]
|
||
|
|
||
|
mov ebx,[Y].dword
|
||
|
add eax,[ebx]
|
||
|
adc edx,[ebx+4]
|
||
|
|
||
|
mov ebx,[Z].dword
|
||
|
mov [ebx],eax
|
||
|
mov [ebx+4],edx
|
||
|
end;
|
||
|
|
||
|
|
||
|
(**********************************************************)
|
||
|
(* 64 Bit Substraction *)
|
||
|
|
||
|
procedure Sub64( var X, Y, Z : Int64 ); assembler;
|
||
|
{&USES ebx, edx}
|
||
|
asm
|
||
|
mov ebx,[X].dword
|
||
|
mov eax,[ebx]
|
||
|
mov edx,[ebx+4]
|
||
|
|
||
|
mov ebx,[Y].dword
|
||
|
sub eax,[ebx]
|
||
|
sbb edx,[ebx+4]
|
||
|
|
||
|
mov ebx,[Z].dword
|
||
|
mov [ebx],eax
|
||
|
mov [ebx+4],edx
|
||
|
end;
|
||
|
|
||
|
|
||
|
(**********************************************************)
|
||
|
(* Multiply two Int32 to an Int64 *)
|
||
|
|
||
|
procedure MulTo64( X, Y : Int32; var Z : Int64 ); assembler;
|
||
|
{&USES ebx, edx }
|
||
|
asm
|
||
|
mov ebx,[Z].dword
|
||
|
mov eax,[X]
|
||
|
imul dword ptr [Y]
|
||
|
mov [ebx],eax
|
||
|
mov [ebx+4],edx
|
||
|
end;
|
||
|
|
||
|
|
||
|
(**********************************************************)
|
||
|
(* Divide an Int64 by an Int32 *)
|
||
|
|
||
|
function Div64by32( var X : Int64; Y : Int32 ) : Int32; assembler;
|
||
|
{&USES ebx, edx}
|
||
|
asm
|
||
|
mov ebx, [X].dword
|
||
|
mov eax, [ebx]
|
||
|
mov edx, [ebx+4]
|
||
|
idiv dword ptr [Y]
|
||
|
end;
|
||
|
|
||
|
procedure DivMod64by32( var X : Int64; Y : Int32; var Q, R : Int32 );
|
||
|
assembler; {&USES ebx, edx}
|
||
|
asm
|
||
|
mov ebx, [X].dword
|
||
|
mov eax, [ebx]
|
||
|
mov edx, [ebx+4]
|
||
|
idiv dword ptr [Y]
|
||
|
mov ebx, [Q].dword
|
||
|
mov [ebx], eax
|
||
|
mov ebx, [R].dword
|
||
|
mov [ebx], edx
|
||
|
end;
|
||
|
|