In computer architecture, 32-bit integers, memory addresses, or other data units are those that are at most 32 bits (4 octets) wide. Also, 32-bit CPU and ALU architectures are those that are based on registers, address buses, or data buses of that size. 32-bit is also a term given to a generation of ...

learn more… | top users | synonyms (1)

130
votes
6answers
128k views

How can I tell if I'm running in 64-bit JVM or 32-bit JVM?

How can I tell if the JVM my application runs in is 32 bit or 64-bit? Specifically, what function or preference do I access to detect this within the program?
52
votes
8answers
65k views

Java 32-bit vs 64-bit compatibility

Will Java code built and compiled against a 32-bit JDK into 32-bit byte code work in a 64-bit JVM? Or does a 64-bit JVM require 64-bit byte code? To give a little more detail, I have code that was ...
33
votes
7answers
39k views

How do I detect which kind of JRE is installed — 32bit vs. 64bit

During installation with an NSIS installer, I need to check which JRE (32bit vs 64bit) is installed on a system. I already know that I can check a system property "sun.arch.data.model", but this is ...
137
votes
8answers
101k views

“An attempt was made to load a program with an incorrect format” even when the platforms are the same

I'm calling functions from a 32-bit unmanaged DLL on a 64-bit system. What I get is: BadImageFormatException: An attempt was made to load a program with an incorrect format. (Exception from ...
16
votes
12answers
17k views

Find most significant bit (left-most) that is set in a bit array

I have a bit array implementation where the 0th index is the MSB of the first byte in an array, the 8th index is the MSB of the second byte, etc... What's a fast way to find the first bit that is ...
27
votes
5answers
17k views

check if unmanaged dll is 32-bit or 64-bit?

How can I programmatically tell in C# if an unmanaged dll is x86 or x64?
13
votes
8answers
2k views

Is an int a 64-bit integer in 64-bit C#?

In my C# source code I may have declared integers as: int i = 5; or Int32 i = 5; In the currently prevalent 32bit world they are equivalent. However, as we move into a 64bit world am I correct ...
22
votes
4answers
3k views

How do I tell if my application is running as a 32 or 64 bit application?

I'm trying to figure out how to tell if my application (compiled in VS2008 as Any CPU) is running as a 32 or 64 bit app.
14
votes
5answers
5k views

What are the pros and cons of running IIS as 32bit vs 64bit on a 64bit OS?

Possibly better suited for "Rack Overflow", but from a developer's point of view, what are the advantages and disadvantages of running IIS (serving both legacy classic ASP and .NET) as a 32bit process ...
12
votes
2answers
5k views

Create 64 bit registry key (non-WOW64) from a 32 bit application

I have a Visual Studio installer that is creating some registry keys: HKEY_LOCAL_MACHINE\SOFTWARE\MyApp but the registry keys it is creating are automatically appearing under Wow6432Node: ...
6
votes
3answers
10k views

Linking 32-bit library to 64-bit program

I have a 32-bit .so binary-only library and I have to generate 64-bit program that uses it. Is there a way to wrap or convert it, so it can be used with 64-bit program?
22
votes
15answers
5k views

Processor, OS : 32bit, 64 bit

I am new to programming and come from a non-CS background (no formal degree). I mostly program winforms using C#. I am confused about 32 bit and 64 bit.... I mean, have heard about 32 bit OS, 32 bit ...
24
votes
4answers
8k views

Reading 64bit Registry from a 32bit application

I have a c# unit test project that is compiled for AnyCPU. Our build server is a 64bit machine, and has a 64bit SQL Express instance installed. The test project uses code similar to the following to ...
8
votes
2answers
8k views

How do I force a 32 bit build of boost with gcc?

How do I force a 32 bit build of boost with gcc? Currently attempting by putting this line in my user-config.jam, but it does not work. using gcc : 4.1.2 : g++ : compileflags="-m32" ; Chenz
2
votes
2answers
1k views

Converting a decimal value to a 32bit floating-point hexadecimal

For a simple utility I'm working on, I need a script that converts a given decimal value to a 32bit floating-point hexadecimal value. For example, I know 1 is 3F800000 and 100 is 42C80000, however I ...
41
votes
4answers
40k views

How to compile a 32-bit binary on a 64-bit linux machine with gcc/cmake

Is it possible to compile a project in 32-bit with cmake and gcc on a 64-bit system? It probably is, but how do I do it? When I tried it the "ignorant" way, without setting any parameters/flags/etc, ...
4
votes
7answers
4k views

What are the lower level advantages and disadvantages of 64-bit/32-bit?

I'm sure we've all heard the terms 64bit and 32bit thrown around, but what do they actually mean? I'm pretty sure they have to do with the size of a memory address. On a 64bit machine, a reference to ...
22
votes
8answers
40k views

Converting a pointer into an integer

I am trying to adapt an existing code to a 64 bit machine. The main problem is that in one function, the previous coder uses a void* argument that is converted into suitable type in the function ...
6
votes
7answers
5k views

memcpy performance differences between 32 and 64 bit processes

We have Core2 machines (Dell T5400) with XP64. We observe that when running 32-bit processes, the performance of memcpy is on the order of 1.2GByte/s; however memcpy in a 64-bit process achieves ...
2
votes
2answers
2k views

How to force /usr/bin/gcc -> /usr/bin/gcc -m32?

I have bad Makefile(s) of a large bundled software distribution. In some point compiler always "forgets" that I want to compile in 32 bit program. This causes that part of the programs have 64 bit ...
5
votes
4answers
5k views

16 bit Int vs 32 bit Int vs 64 bit Int

I've been wondering this for a long time since I've never had "formal" education on computer science (I'm in highschool), so please excuse my ignorance on the subject. On a platform that supports the ...
8
votes
1answer
9k views

Apple's gcc, what's the difference between -arch i386 and -m32?

According to Apple's gcc 4.2.1 doc: -arch arch Compile for the specified target architecture arch. The allowable values are 'i386', 'x86_64', 'ppc' and 'ppc64'. Multiple options work, and ...
7
votes
5answers
7k views

Memory alignment on a 32-bit Intel processor

Intel's 32-bit processors such as Pentium have 64-bit wide data bus and therefore fetch 8 bytes per access. Based on this, I'm assuming that the physical addresses that these processors emit on the ...
23
votes
6answers
9k views

What is the best 32bit hash function for short strings (tag names)?

What is the best 32bit hash function for relatively short strings? Strings are tag names that consist of English letters, numbers, spaces and some additional characters (#, $, ., ...). For example: ...
9
votes
3answers
2k views

SetWindowsHookEx failing in .NET 4.0 on 32-bit machine with “module not found”?

I have found similar questions on this page, but I can't seem to figure out how to interpret the answers or figure out if they are truly duplicates. Here are the possible duplicates I've found, with ...
12
votes
3answers
4k views

Determining 64-bit vs. 32-bit Windows

I'd like to configure visual studio 2005 to copy .dll's based on whether the OS is 64-bit or 32-bit during a build. I do not want to specify what the platform target is. My first attempt was to ...
14
votes
6answers
18k views

How do I force MSBuild to compile for 32-bit mode?

I'm using MSBuild (via NAnt) to compile a bunch of VB.NET assemblies. Because these assemblies depend on COM Interop, I need to guarantee that they run in 32-bit mode on 64 bit OS's. I can get the ...
12
votes
6answers
14k views

Can I still develop 32-bit applications using a 64-bit machine?

I'm wondering if I can still develop 32-bit apps using a 64-bit machine (64-bit Windows Vista with Visual Studio 2008 SP1)? Because I am planning to buy a laptop with 64-bit Vista. Im asking just to ...
14
votes
10answers
11k views

#ifdef for 32-bit platform

In an application I maintain, we've encountered a problem with file descriptor limitations affecting the stdlib. This problem only affects the 32-bit version of the standard lib. I have devised a fix ...
10
votes
2answers
7k views

C# PInvoking user32.dll on a 64 bit system

Is it wrong to pinvoke user32.dll on 64 bit Windows, from a 64 bit app? I've done this successfully a number of times and never had an error, but it seems contradictory. Should I look for user64.dll ...
3
votes
2answers
2k views

Win32 API to tell whether a given binary (EXE or DLL) is x86, x64, or ia64

I am trying to find a programmatic way to tell if a binary is x86, x64, or ia64. Platform: Windows. Language: c/c++. Background: Before trying to load a third-party dll, I need to find out its ...
6
votes
4answers
262 views

Can a 32-bit processor really address 2^32 memory locations?

I feel this might be a weird/stupid question, but here goes... In the question Is NULL in C required/defined to be zero?, it has been established that the NULL pointer points to an unaddressable ...
5
votes
8answers
2k views

On 32-bit CPUs, is an 'integer' type more efficient than a 'short' type?

On a 32-bit CPU, an integer is 4 bytes and a short integer is 2 bytes. If I am writing a C/C++ application that uses many numeric values that will always fit within the provided range of a short ...
4
votes
4answers
4k views

How to allow 32 bit apps on 64 bit windows to execute 64 bit apps provided in Windows\System32

Say you have an app, that you want to provide users ability to browse the system32 directory and execute programs in (like telnet). What is the best method for supporting this when you need to ...
7
votes
3answers
2k views

Converting 32-bit binary string with Integer.parseInt fails

Why does this part of code fail: Integer.parseInt("11000000000000000000000000000000",2); Exception in thread "main" java.lang.NumberFormatException: For input string: ...
7
votes
3answers
2k views

Compile git for 32-bit linux on shared hosting

I need to set up the Git client on a cheap shared hosting, with a no-name 32-bit Linux distribution. GCC isn't available so I can't compile it on the server. I do have at my disposal 2 other 64-bit ...
7
votes
6answers
2k views

Why does BinaryReader.ReadUInt32() reverse the bit pattern?

I am trying to read a binary file with the BinaryReader class, and I need to read it in as blocks of UInt32, and then do some bit shifting etc. afterwords. But, for some reason bit order is reversed ...
3
votes
4answers
2k views

How can I enable my 32-bit Delphi application to use 4gb of memory on 64-bit windows (via Wow64.exe)?

According to this MSDN page: WOW64 enables 32-bit applications to take advantage of the 64-bit kernel. Therefore, 32-bit applications can use a larger number of kernel handles and window ...
2
votes
0answers
349 views

Why is the SetupDiCallClassInstaller function restricted to 64 bit programs?

Attempting to call SetupDiCallClassInstaller from a program compiled in 32 bit mode fails on 64 bit Windows. Apparently this is by design, but I'd like to know the reason.
1
vote
2answers
3k views

Compiling a .NET application as 32-bit only so I can use my Access database

I keep getting this error when I try and use an MS Access database in my application: The 'Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine. After Google'ing the ...
1
vote
2answers
680 views

compling assemblies on a 64bit plaform for a 32bit

What option should I select for compliing assemblies on a 64bit plaform for a 32bit platform server. As currently I am trying to publish to a 32bit server. I am using VS2005 on a windows Vista machine ...
0
votes
1answer
222 views

How to make Most Significant Bit of a binary number= 1

How can I make MSB of a binary number equal to 1 in MIPS? I have tried to do it with masking but I am getting error, so is there another way to do it? The code for making MSB=1 by masking which is ...
0
votes
1answer
112 views

NSIS Uninstaller with prefix: Windows XP works, Windows Vista doesn't [closed]

This piece of code http://pastebin.com/tGK4Gwum Works on XP however it is not working on a Vista 32 bit machine. Any idea why? I hope I made myself clear. Y.
12
votes
4answers
25k views

How to run 32-bit Java on Mac OSX 10.7 Lion

From my experience with Windows 7 (64-bit) and Java, a 32-bit JRE uses less memory and runs significantly faster than a 64-bit JRE (provided you don't need or benefit from having a lot of memory). I ...
9
votes
2answers
19k views

Setting 32-bit x86 build target in Visual C# 2008 Express Edition?

I'm building a C# application that loads a 32-bit COM dll. The compiled application runs fine on 32-bit Windows but barfs on 64 bit Windows because it can't load the 32-bit COM. Is there a way to set ...
20
votes
2answers
2k views

Getting Embedded with D (the programming language)

I like a lot of what I've read about D. Unified Documentation (That would make my job a lot easier.) Testing capability built in to the language. Debug code support in the language. Forward ...
5
votes
2answers
2k views

Differences between 32 and 64-bit .NET (4) applications

What are the differences between 32 and 64-bit .NET (4) applications? Often 32-bit applications have problems running on 64-bit machines and conversely. I know I can declare an integer as int32 and ...
4
votes
3answers
641 views

What are the differences between .NET in 32 or 64 bit systems?

Imagine a pure .NET application which do not uses COM components nor PInvoke. Does it matters if the target system is 32 or 64 bits?
19
votes
9answers
3k views

Why is abs(0x80000000) == 0x80000000?

I just started reading Hacker's Delight and it defines abs(-231) as -231. Why is that? I tried printf("%x", abs(0x80000000)) on a few different systems and I get back 0x80000000 on all of them.
18
votes
3answers
27k views

How do I run a VBScript in 32-bit mode on a 64-bit machine?

I have a text file that ends with .vbs that I have written the following in: Set Conn = CreateObject("ADODB.Connection") Conn.Provider = "Microsoft.ACE.OLEDB.12.0" Conn.Properties("Data Source") = ...

1 2 3