The unsigned-integer tag has no wiki summary.
30
votes
3answers
3k views
Why are unsigned int's not CLS compliant
Why are unsigned int's not CLS compliant. I start to think type-specification is just for performance, and not for correctness.
19
votes
8answers
928 views
How can I safely average two unsigned ints in C++?
Using integer math alone, I'd like to "safely" average two unsigned ints in C++.
What I mean by "safely" is avoiding overflows (and anything else that can be thought of).
For instance, averaging ...
7
votes
3answers
117 views
Overflowing of Unsigned Int
What will the unsigned int contain when I overflow it? To be specific, I want to do a multiplication with two unsigned ints and want to know what will be in the unsigned int after the multiplication ...
7
votes
3answers
267 views
What's a portable value for UINT_MIN?
In limits.h, there are #defines for INT_MAX and INT_MIN (and SHRT_* and LONG_* and so on), but only UINT_MAX.
Should I define UINT_MIN myself? Is 0 (positive zero) a portable value?
5
votes
4answers
1k views
what is the benefit of zerofill in mysql?
i just want to know what is the benefit/usage of using ZEROFILL for INT datatype in mysql
4
votes
4answers
138 views
Unsigned integers in C++ for loops
I have made some research on Stackoverflow about reverse for loops in C++ that use an unsigned integer instead of a signed one. But I still do NOT understand why there is a problem (see Unsigned int ...
4
votes
4answers
116 views
C++: Signed/unsigned mismatch when only using unsigned types
When I try to compile the following C++ program using the Visual Studio 2010 C++ compiler (X86) with warning level /W4 enabled, I get a signed/unsigned mismatch warning at the marked line.
#include ...
4
votes
3answers
559 views
datatype by default is int(11) whereas unsigned becomes int(10) in mysql?
in mysql if we create a field datatype of INT and does not specify any length/values then it turns automatically into int(11) and if we set the attribute UNSIGNED or UNSIGNED ZEROFILL then it ...
3
votes
4answers
203 views
Function of type unsigned int returns negative number
Wow I thought I knew my C++ but this is weird
This function returns an unsigned int so I thought that means I will never get a negative number returned right?
The function determines how many hours ...
3
votes
4answers
246 views
Using MySQL's TIMESTAMP vs storing timestamps directly
I'm in a dilemma about saving date and time values in MySQL's TIMESTAMP format vs in a custom UNSIGNED INT format. The main considerations here are speed of retrieval, appropriate range calculations ...
2
votes
3answers
92 views
java: fastest way of converting a bye array byte [1000] to array int[500]
The goal is to convert every pair of bytes as a single unsigned 16bit int.
In C I would define an array[500] of 16bit unsinged int pointer and would point it the the array of bytes, but in java I am ...
2
votes
4answers
107 views
C++: Difference of two unsigned 64-bit integer in a signed 64-bit integer
I am trying to write a function in C++ which takes two 64 bit unsigned integers and returns their difference in a signed 64 bit integer. It seems to be a bit complicated because of the overflow ...
2
votes
5answers
119 views
Binding an 'unsigned long' (uint64) in an sqlite3 statement? C++
I'm using the sqlite3 library that is available at sqlite.org.
I have some unsigned longs that I would like store in a database. I do not want to construct the query myself and leave it open to some ...
2
votes
2answers
54 views
converting from size_t to unsigned int
Is it possible that converting from size_t to unsigned int result in overflow .
size_t x = foo ( ) ; // foo ( ) returns a value in type size_t
unsigned int ux = (unsigned int ) x ;
ux == x // ...
2
votes
3answers
343 views
JNI: converting unsigned int to jint
How do I convert an unsigned int to jint? Do I have to convert it at all, or can I just return it without any special treatment? This is basically my code right now, but I can't test it, as I haven't ...
2
votes
2answers
99 views
Transfering uintN data types from C to Java (Socket Programing)
I have a requirement to send data from native program written in C through Sockets, namely the winsock interface. That data is then received by a java program. The Java program receives a packet of ...
2
votes
1answer
125 views
MIPS: Can I get unsigned int value from user via syscall?
The title pretty much sums this up. I am writing a program in 32-bit MIPS Assembly Language (using the MARS emulator) for a school project and I'm having zero luck reading in int values > ...
2
votes
5answers
202 views
Adding unsigned integers in C
Here are two very simple programs. I would expect to get the same output, but I don't. I can't figure out why. The first outputs 251. The second outputs -5. I can understand why the 251. However, I ...
2
votes
2answers
139 views
How to get rid of integer overflow warning?
In my C++ code I have an expression where I multiply unsigned long integer to an int to assign the result to unsigned long int. I am getting a warning as 'overflowed returned value'. I tried to cast ...
2
votes
2answers
172 views
How do I reinterpret an unsigned long (DWORD) as a signed long in C++?
I want to reinterpret an unsigned long (actually, a DWORD) as a signed long. I tried:
DWORD x;
long y = reinterpret_cast<signed long>(x);
However, VC++2010 intellisense tells me "Invalid type ...
2
votes
4answers
110 views
C/GL: Using -1 as sentinel on array of unsigned integers
I am passing an array of vertex indices in some GL code... each element is a GLushort
I want to terminate with a sentinel so as to avoid having to laboriously pass the array length each time ...
2
votes
4answers
159 views
Why does C not run a comparison of unsigned int with negative value?
Consider this C code:
#include "stdio.h"
int main(void) {
int count = 5;
unsigned int i;
for (i = count; i > -1; i--) {
printf("%d\n", i);
}
return 0;
}
My ...
2
votes
3answers
333 views
How many bits are necessary to address 32 bytes?
Sorry this is a really silly question, was just looking through an old exam paper for my Operating Systems class and noticed this question can come up every so often. How does one work out the answer ...
2
votes
3answers
262 views
PHP: Proper way to store IP in MySql and quickest way to search for IP throughout millions of rows
I'm storing IPv4 addresses in a "int unsigned" column type with inet_aton. [Am I doing this right? And is using "unsigned" necessary?] This particular column is indexed as well. Since there will be ...
1
vote
3answers
115 views
'unsigned long int', and 'unsigned long long int' assignment issue
A few weeks ago, I was using for first time (I'm not used to use them) floats, doubles, and I have some problems with the comparison operand. I also have had problems while trying to assign values to ...
1
vote
1answer
57 views
Translate embedded C function to PHP function
I'm trying to "translate" the following function written in C in PHP. The problem is, the results returned by the function written in PHP are different from those returned by the one in C.
I think ...
1
vote
5answers
139 views
Convert unsigned int to signed int C
I am trying to convert 65529 from an unsigned int to a signed int. I tried doing a cast like this:
unsigned int x = 65529;
int y = (int) x;
But y is still returning 65529 when it should return -7. ...
1
vote
3answers
85 views
Fastest way to calculate possible values of unsigned int with N unreliable bits?
Given an unsigned int A (32 bit), and another unsigned int B, where B's binary form denotes the 10 "least reliable" bits of A, what is the fastest way to expand all 1024 potential values of A? I'm ...
1
vote
2answers
87 views
Checksum Algorithm Producing Unpredictable Results
I'm working on a checksum algorithm, and I'm having some issues. The kicker is, when I hand craft a "fake" message, that is substantially smaller than the "real" data I'm receiving, I get a correct ...
1
vote
4answers
172 views
a bit map in c++ - will unsigned int do the job?
Hello Stackers
I'm afraid to admit, I haven't used C++ for a while now [java is just too good.. :) ] but i'm afraid I have to now, and I'm a bit rusty.
I need to have a bitmap, and I do care about ...
1
vote
5answers
502 views
unsigned int and signed char comparison
I am trying to compare an unsigned int with a signed char like this:
int main(){
unsigned int x = 9;
signed char y = -1;
x < y ? printf("s") : printf("g");
return 0;
}
I was expecting ...
1
vote
3answers
3k views
A warning - comparison between signed and unsigned integer expressions
first post so apologies if I make some mistakes,
I am currently working through Accelerated C++ and have come across my first 'issue' in exercise 2-3.
A quick overview of the program - the program ...
1
vote
1answer
228 views
How to declare ULARGE_INTEGER in c#?
Based upon this question How to declarate LARGE_INTEGER in C# with answer of:
[StructLayout(LayoutKind.Absolute, Size=8)]
struct LARGE_INTEGER
{
[FieldOffset(0)]public Int64 QuadPart;
...
1
vote
2answers
172 views
Convert a .NET long to an unsigned 8-byte integer
For the purposes of setting a value in Active Directory I would like to convert a long to an unsigned 8-byte integer, for assignment to an AD property.
How can I do this?
0
votes
4answers
64 views
Convert hex scanned (scanf) from an unsigned int array into decimal
I'm here trying to convert 4-digit hexa into dec but didn't succeed.
Here is a my code.
unsigned int array[4];
printf("Type in 4-digit hexa: \n");
scanf("%x", &array);
...
0
votes
7answers
66 views
INT max size for 32bit system
Lets assume we are talking about 32bit system.
PHP doesn't support unsigned INT. It means that INT value should be between -2,147,483,648 and 2,147,483,647 values. And INT takes 4 bytes to store a ...
0
votes
2answers
54 views
Unsigned Int and Colors
I'm trying to alter the coloring of something using an unsigned int (0xFF998877 etc...) in the form 0xAABBGGRR where A is Alpha and B, G and R are Blue, Green and Red.
I'm wondering however what the ...
0
votes
1answer
39 views
Using an unsigned int to terminate a while() loop
Is it possible to terminate a while() loop with an unsigned int? For example I want to terminate a while() when the user enters a negative value. But I want it to be any negative value, not just -1. ...
0
votes
2answers
171 views
Java read unsigned int, store, and write it back
I need to read an unsigned int from a quicktime file, and write it back to another quicktime file.
Currently I read the unsigned int into a Long but while writing it back I never managed to write ...
0
votes
1answer
342 views
SQL Server 2008 – Unsigned Integer Data Types
I am using SQL SERVER 2008, I have a number of INT, SMALLINT fields in my various tables, And I know they all will be 0 or greater than 0 i.e. I can take them Unsigned.
Is there a simple way of ...
0
votes
3answers
453 views
Calculating bits required to store decimal number
This is a homework question that I am stuck with.
Consider unsigned integer representation. How many bits will be
required to store a decimal number containing:
i) 3 digits ii) 4 digits iii) 6 ...
0
votes
0answers
181 views
How to deal with unsigned numbers in JavaScript?
I am having difficult time dealing with unsigned numbers in JavaScript. I would like to perform basic math and bitwise operation on unsigned numbers using JavaScript especially shifting bits. Anyone ...
0
votes
1answer
210 views
objective-c - how to convert between signed base 10 numbers and unsigned base 16
I am wondering how to do converts between unsigned base 16 numbers and signed base 10 numbers?
For example
5d0cfa30041d4348 <-> 6705009029382226760
024025978b5e50d2 <-> 162170919393841362
...
0
votes
0answers
43 views
Unsigned integer type in OData?
Is there a way to specify unsigned integers in the OData Metadata (CSDL) format? I have a data structure that contains an unsigned 64 bit integer, but from the documentation here it seems there isn't ...
0
votes
1answer
70 views
Why don't we use “unsigned int” instead of “char” to implement a big integer class?
I used to implement something acting as a very large integer using char. But it suddenly occurred to me that I can use unsigned int, which is more straight-forward to implement.
For example, I use ...
0
votes
2answers
98 views
Representing n-bit unsigned integers in mysql
How do I represent this data in mysql?
16 bit unsigned integer -----Range: 0x0000 - 0xFFF7
64 bit unsigned int. Depicted as xx:xx:xx:xx:xx:xx:xx:xx -----Range: 0x0000 - 0xFFFFFFFFFFFFFFFF
2 bits ...
0
votes
3answers
286 views
how to convert an unsigned int to NSString?
I have an unsinged int having value of -10,
now I want to convert it into NSString.
In simply we do as, in objective-c, iphone programming
int x = 10;
NSString *str = [NSString ...
0
votes
2answers
72 views
Unexpected behavior from unsigned_int64;
unsigned__int64 difference;
difference=(64*33554432);
printf ("size %I64u \n", difference);
difference=(63*33554432);
printf ("size %I64u \n", difference);
the first # is ridiculously large. The ...
0
votes
1answer
237 views
How to hash a 32bit int to 10bit int? [closed]
How to hash a 32bit unsigned int(0~4294967295) to 10bit unsigned int(0~1023)?
least collisions and fast are important.Please write samples in C/C++ if convenient.
Sorry, I didn't ask in a good way, ...
0
votes
2answers
397 views
How can I get a byte that represents an unsigned int in Java?
I have integers from 0 to 255, and I need to pass them along to an OutputStream encoded as unsigned bytes. I've tried to convert using a mask like so, but if i=1, the other end of my stream (a serial ...