Questions tagged [32-bit]

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 computers in which 32-bit processors are the norm.

The range of integer values that can be stored in 32 bits is 0 through 4,294,967,295. Hence, a processor with 32-bit memory addresses can directly access 4 GiB of byte-addressable memory.

The external address and data buses are often wider than 32 bits but both of these are stored and manipulated internally in the processor as 32-bit quantities. For example, the Pentium Pro processor is a 32-bit machine, but the external address bus is 36 bits wide, and the external data bus is 64 bits wide.

Source: Wikipedia (32-bit)

1381 questions
-3
votes
1 answer

16-digit number manipulation on a 32-bit programming language

I have a simple problem, but because this "programming language" I am using is 32-bit and only supports basic functions such as addition, subtraction, multiplication, division, and concatenation (literally that's it), I am having some trouble. For…
Rui Nian
  • 2,544
  • 18
  • 32
-3
votes
1 answer

batch file code to detect 32-bit vs 64-bit office not working

I'm trying to put together a batch file that would select the appropriate bit version of executables when run by the user. I found this code on stackoverflow: Batch file check office architecture version The problem is that it does not work when I…
RobH
  • 3
  • 2
-3
votes
3 answers

Issue with installing android studio - windows 32 bit

I have HP Laptop with the following configuration - Processor-Intel Core 2 Duo. Windows - 7 Home Premium - 32-Bit (SP-1). Ram - 4GB. No graphics card(actually some inbuilt graphics support of 256MB I am not sure). I have installed android studio…
K.C.A.
  • 1
  • 1
-3
votes
1 answer

C format string vulnerability: How many bytes does %x read from the stack?

my doubt is the following: assuming Ubuntu 14.04 32bit and x_86 intel atom cpu how many bytes does the format %x read from stack? I know that I can read what's in the stack by using: formatstring="%x"; printf(formatstring); As I put more %x in the…
mik1904
  • 1,335
  • 9
  • 18
-3
votes
3 answers

Converting number into 32 bits in python

I have 32 bit numbers A=0x0000000A and B=0X00000005. I get A xor B by A^B and it gives 0b1111. I rotated this and got D=0b111100000 but I want this to be 32 bit number not just for printing but I need MSB bits even though there are 0 in this case…
-3
votes
2 answers

Read and extract specific number of bits of a 32-bit unsigned integer

How can I read and extract specific number of bits of a 32-bit unsigned integer in C++/C? Then, resulted values convert to floating point. For example: 32 integer 0xC0DFCF19 for x=read 11 bits, y=read 11 bits and for z = read last 10 bits of 32 bit…
Andrew
  • 15
  • 1
-3
votes
1 answer

Address of the next 32 bit register

There are two 32 bit registers. If for some reason the 1st register has the address 0x84000000, then what will be the HEX address of the 2nd 32 bit register (consider the two register to be one after the other)?
dpaul
  • 21
  • 1
  • 7
-3
votes
1 answer

Visual Studio Professional 2013 32-bit versus 32-bit web installer

When downloading Visual Studio Professional 2013, you have the option of downloading 32-bit and 32-bit web installer. What's the difference?
-3
votes
1 answer

RAM usage with Win 7 32 PAE patched

I have to use Windows 7 32 bit in a computer, which I need to use a software which just works with this operating system unfortunately. I have 8GB RAM installed I applied the patch developed by Unawave to let the OS see all the RAM installed. This…
EmThorns
  • 119
  • 6
-3
votes
3 answers

Counting the binary digits of a signed 32-bit integer in c programming

I have following function which counts the number of binary digits in an unsigned 32-bit integer. uint32_t L(uint32_t in) { uint32_t rc = 0; while (in) { rc++; in >>= 1; } return(rc); } Could anyone tell me please in…
rzmuc
  • 243
  • 1
  • 5
  • 10
-3
votes
2 answers

How can I build a DMD 1.076/Tango bundle (Win32)

Willing to harness Tango library along with the very last release of DMD 1 compiler (v1.076), I searched the net in vain for the bundle. How that can that be built? Solved: I've managed to build a DMD 1 v1.076 with Tango. See here my answer.
menjaraz
  • 7,551
  • 4
  • 41
  • 81
-4
votes
2 answers

Minikube 32 bit installation issue in ubuntu 18

I am unable to install 32 bit minikube on ubuntu 18.04. Now just need a solution can I somehow install 32 minikube insde my GUEST so that i can run it. Because right now I can't dual boot my HOST. Although dual booting will ultimately solve my…
Dunesh
  • 1
  • 1
-4
votes
1 answer

How to Ensure Android APK supports 32-bit as well as 64-bit?

If My APK consist of 'armeabi-v7a' 'arm64-v8a' 'x86' 'x86_64' folders in lib, But inside that folders, is It means it supports both 64-bit and 32-bit. Because already APk built consist of 'armeabi-v7a' 'arm64-v8a' 'x86' 'x86_64' folders in lib. But…
Sony
  • 1
  • 1
  • 1
-4
votes
1 answer

Install Oracle 12c on window 7 32bit

Is there any manual or site on how to install oracle 12c on window 7 32 bit machine? I already downloaded the software but majority for the sites is for only 64bit machine
makoz
  • 61
  • 1
  • 3
  • 13
-5
votes
2 answers

Problems with installing jdk

When I want to install JDK8 on my Windows 7 (32 bit) It installed in C://Program Files/Java/jdk1.8.0_211 Why is the version 1.8? Shouldn't it be 8?
1 2 3
92
93