Click here to Skip to main content
15,884,838 members
Articles / Programming Languages / C++

Scaling 64 bit integers

Rate me:
Please Sign up or sign in to vote.
4.36/5 (12 votes)
22 Feb 20054 min read 66K   1.2K   20  
An article on scaling 64 bit integers using extended precision integer arithmetic.
Microsoft Visual Studio Solution File, Format Version 7.00
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MulDiv64", "MulDiv64.vcproj", "{4B2B9CBF-3DB4-4752-9AFE-18600AB870B3}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestMulDiv64", "TestMulDiv64\TestMulDiv64.vcproj", "{E45B946B-7FCF-4220-A250-2F455D91753F}"
EndProject
Global
	GlobalSection(SolutionConfiguration) = preSolution
		ConfigName.0 = Debug
		ConfigName.1 = Release
	EndGlobalSection
	GlobalSection(ProjectDependencies) = postSolution
		{E45B946B-7FCF-4220-A250-2F455D91753F}.0 = {4B2B9CBF-3DB4-4752-9AFE-18600AB870B3}
	EndGlobalSection
	GlobalSection(ProjectConfiguration) = postSolution
		{4B2B9CBF-3DB4-4752-9AFE-18600AB870B3}.Debug.ActiveCfg = Debug|Win32
		{4B2B9CBF-3DB4-4752-9AFE-18600AB870B3}.Debug.Build.0 = Debug|Win32
		{4B2B9CBF-3DB4-4752-9AFE-18600AB870B3}.Release.ActiveCfg = Release|Win32
		{4B2B9CBF-3DB4-4752-9AFE-18600AB870B3}.Release.Build.0 = Release|Win32
		{E45B946B-7FCF-4220-A250-2F455D91753F}.Debug.ActiveCfg = Debug|Win32
		{E45B946B-7FCF-4220-A250-2F455D91753F}.Debug.Build.0 = Debug|Win32
		{E45B946B-7FCF-4220-A250-2F455D91753F}.Release.ActiveCfg = Release|Win32
		{E45B946B-7FCF-4220-A250-2F455D91753F}.Release.Build.0 = Release|Win32
	EndGlobalSection
	GlobalSection(ExtensibilityGlobals) = postSolution
	EndGlobalSection
	GlobalSection(ExtensibilityAddIns) = postSolution
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior)
Netherlands Netherlands
Richard van der Wal is a Software Development Engineer at Fugro Intersite B.V.
He holds a bachelors in mechanical engineering and a bachelors in information technology and had many years of experience in industrial automation before he started his job at Intersite. His current activities focus on software design and system design for real-time data processing in the offshore industry both on Windows PCs and embedded Linux platforms.

Comments and Discussions