Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

35
votes
7answers
43k views

How to determine the variable type in Python

I want to see the type of a variable whether it is unsigned 32 bit,signed 16 bit etc. How to view...
33
votes
11answers
24k views

Signed versus UnSigned Integers

Am I correct to say the difference between a signed and unsigned integer is: UnSigned can hold a larger positive value, and no negative value. Unsigned uses the leading bit, while the signed version ...
23
votes
9answers
1k views

Detecting signed overflow in C/C++

At first glance, this question may seem like a duplicate of http://stackoverflow.com/questions/199333/best-way-to-detect-integer-overflow-in-c-c, however it is actually significantly different. I've ...
20
votes
6answers
41k views

C++ convert hex string to signed integer

I want to convert a hex string to a 32 bit signed integer in C++. So, for example, I have the hex string "fffefffe". The binary representation of this is 11111111111111101111111111111110. The ...
20
votes
7answers
7k views

What is the best way to work around the fact that ALL Java bytes are signed?

In Java, there is no such thing as an unsigned byte. Working with some low level code, occasionally you need to work with bytes that have unsigned values greater than 128, which causes Java to ...
18
votes
4answers
760 views

Signed/unsigned comparisons

I'm trying to understand why the following code doesn't issue a warning at the indicated place. //from limits.h #define UINT_MAX 0xffffffff /* maximum unsigned int value */ #define INT_MAX ...
14
votes
4answers
354 views

Would it break the language or existing code if we'd add safe signed/unsigned compares to C/C++?

After reading this question on signed/unsigned compares (they come up every couple of days I'd say): http://stackoverflow.com/questions/3475841/signed-unsigned-comparison-and-wall I wondered why ...
14
votes
1answer
944 views

Signedness of enum in C/C99/C++/C++x/GNU C/GNU C99

Is enum type signed or unsigned? Is the Signedness of enums differ in C/C99/ANSI C/C++/C++x/GNU C/ GNU C99? Thanks
11
votes
6answers
266 views

How to detect encodings on signed integers in C?

The ISO C standard allows three encoding methods for signed integers: two's complement, one's complement and sign/magnitude. What's an efficient or good way to detect the encoding at runtime (or some ...
11
votes
1answer
1k views

Verifying that C / C++ signed right shift is arithmetic for a particular compiler?

According to the C / C++ standard (see this link), the >> operator in C and C++ is not necessarily an arithmetic shift for signed numbers. It is up to the compiler implementation whether 0's ...
8
votes
3answers
161 views

How to judge an overflow when adding signed to unsigned

I'm trying to detect the overflow when adding a signed offset to an unsigned position uint32 position; int32 offset; // it could be negative uint32 position = position+offset; How can I check ...
7
votes
5answers
245 views

Signed division with unsigned numerator

I'm trying to calculate a rolling average, and to try and get and optimize a bit, I've simplified the calculation so there is only one division. When the value is decreasing, there is a point where ...
7
votes
3answers
166 views

Unsigned versus signed numbers as indexes

Whats the rationale for using signed numbers as indexes in .Net? In Python, you can index from the end of an array by sending negative numbers, but this is not the case in .Net. It's not easy for ...
6
votes
3answers
114 views

Signed zero linux vs windows

i am running a program in c++ on windows and on linux. the output is meant to be identical. i am trying to make sure that the only differences are real differences oppose to working inviorment ...
6
votes
3answers
2k views

How can I do 64-bit arithmetic in Perl?

I am a perl newbie, Can I simply use 64-bit arithmetic in Perl? For example $operand1 = 0xFFFFFFFFFFFF; # 48 bit value $operand2 = 0xFFFFFFFFFFFF; # 48 bit value $Result = $operand1 * ...
6
votes
2answers
3k views

How to get the signed integer value of a long in python?

If lv stores a long value, and the machine is 32 bits, the following code: iv = int(lv & 0xffffffff) results an iv of type long, instead of the machine's int. How can I get the (signed) ...
5
votes
2answers
357 views

When should I use std_logic_vector and when should I use other data types?

I'm new to VHDL and am having trouble figuring out which data types are appropriate to use where. If I understand correctly, for synthesis, all top level entity ports should be declared either ...
5
votes
3answers
375 views

Why are enums with negative values causing problems in Objective-C/C?

For various implementation reasons, I've defined the following enum: typedef enum HBSnakeMovementDirection { HBSnakeMovementDirectionUp = 1, HBSnakeMovementDirectionDown = -1, ...
5
votes
9answers
735 views

Programmatically determining max value of a signed integer type

This related question is about determining the max value of a signed type at compile-time: C question: off_t (and other signed integer types) minimum and maximum values However, I've since realized ...
5
votes
2answers
507 views

Unsigned hexadecimal constant in C?

Does C treat hexadecimal constants (e.g. 0x23FE) and signed or unsigned int? Amr
5
votes
1answer
569 views

Converting hexadecimal numbers in strings to negative numbers, in Perl

I have a bunch of numbers represented as hexadecimal strings in logfiles that are being parsed by a Perl script, and I'm relatively inexperienced with Perl. Some of these numbers are actually signed ...
5
votes
10answers
3k views

2's complement example, why not carry?

I'm watching some great lectures from David Malan (here) that is going over binary. He talked about signed/unsigned, 1's compliment, and 2's complement representations. There was an addition done of 4 ...
4
votes
4answers
99 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
2answers
299 views

c printf signed float

What is the formatter to make sure that + or - signs are always shown in front of the float value in printf() in C? I haven't done C in a while, so where can I find a good reference on the web, any ...
4
votes
6answers
559 views

Signed right shift = strange result?

I was helping someone with their homework and ran into this strange issue. The problem is to write a function that reverses the order of bytes of a signed integer(That's how the function was specified ...
4
votes
2answers
331 views

Consensus? MySQL, Signed VS Unsigned Primary/Foreign Keys

I have seen a couple threads about what everyone was doing now a days in regards to signed vs unsigned key values. It would seem that unsigned is optimal since it allows twice the number of rows for ...
4
votes
3answers
2k views

Arithmetic operations on unsigned and signed integers

See this code snippet int main() { unsigned int a = 1000; int b = -1; if (a>b) printf("A is BIG! %d\n", a-b); else printf("a is SMALL! %d\n", a-b); return 0; } This gives the output: a ...
4
votes
4answers
5k views

In C Left shift (char) 0xFF by 8 and cast it to int

On left shift of (char) 0xff by 8 and casting it to int we get -256 or 0xffffff00. Can somebody explain why this should happen? #include <stdio.h> int main (void) { char c = 0xff; ...
4
votes
3answers
722 views

Downloading Java classes from inside a (signed) applet

If I'm running a signed Java applet, can I download additional classes from remote sources (in the same domain, maybe even the same host) and run them? I'd like to do this without changing pages or ...
3
votes
3answers
121 views

Explicit casting problems, C

I have this case statement in C: case GOTO: { int o1 = (int)P[pc+1]; unsigned int o2 = (unsigned)P[pc+2]; int offset =(o1<<8) | o2; pc = pc + (int)offset; break; } Now ...
3
votes
5answers
1k views

Google map signed api key errors in Android

When I switched from my debug map key to my signed map key my maps stop working. I get the following errors in logcat: 09-03 18:18:04.112: WARN/System.err(4073): IOException processing: 26 09-03 ...
3
votes
1answer
124 views

Is it possible to view digitally signed pdfs on the iphone or ipad?

When I try to view a sample digitally signed pdf in a UIWebView, I get blank pages. The number of pages is correct, but they are all blank. Normal pdfs show up correctly. I am not looking for ...
3
votes
1answer
364 views

Calculating the maximum size of a signed integer

I wanted to know what the maximum value my time_tcan hold was, so I wrote a little program helping me. It needs one argument: the amount of bytes (1 byte = 8 bits). So I wrote it and tested it. It ...
3
votes
5answers
250 views

would doing arithmetic operation on a pair of signed and unsigned numbers be legal?

I'm more than half way through learning assembly and I'm familiar with the concept of how signed and unsigned integers are presented in bits, I know that it might seem a weird question of which the ...
3
votes
2answers
650 views

Is int16_t guaranteed to be signed?

This may be an incredibly silly question, but is the int16_t type declared in <stdint.h> guaranteed to be signed, or is it just supposed to be signed? I would assume that it would have to be ...
3
votes
2answers
632 views

How to perform unsigned to signed conversion in Java?

Say I read these bytes: "6F D4 06 40" from an input device. The number is a longitude reading in MilliArcSeconds format. The top bit (0x80000000) is basically always zero and is ignored for this ...
3
votes
3answers
572 views

How do I convert hex string into signed integer?

I'm getting a hex string that needs to be converted to a signed 8-bit integer. Currently I'm converting using Int16/Int32, which will obviously not give me a negative value for an 8-bit integer. If ...
3
votes
6answers
2k views

C/C++ packing signed char into int

I have need to pack four signed bytes into 32-bit integral type. this is what I came up to: int32_t byte(int8_t c) { return (unsigned char)c; } int pack(char c0, char c1, ...) { return byte(c0) | ...
3
votes
1answer
516 views

Problem with AutoMapper in IIS7 when using signed assemblies

I am trying to use AutoMapper with web application running on IIS 7. The intended use it so map domain types defined in an external dll to view models defined in the IIS application. This works fine ...
3
votes
2answers
1k views

How to cast a 32-bit integer from unsigned to signed in MySQL or PHP?

I have a string in PHP (came from some data source), which represents a formatted unsigned 32-bit integer. I need to store it into a MySQL database as a signed 32-bit integer, so that later I can ...
2
votes
7answers
162 views

Why does -INT_MIN = INT_MIN in a signed, two's complement representation?

I still haven't found a reason why the lowest signed negative number doesn't have an equivalent signed positive number? I mean in a 3 digit binary number for simplicity 100 is -4? but we can't have a ...
2
votes
3answers
97 views

Copy & Paste Not working in a *Signed* Applet

I've a signed applet (which verifies correctly with jarsigner) that for some reason will not allow copy and paste from the system clipboard into a JTextField despite the documentation telling me that ...
2
votes
4answers
178 views

value vs type: Code to Determine if a Variable Is Signed or Not

I came across this question in a forum. The answer is something like this: #define ISUNSIGNED(a) (a >= 0 && ~a >= 0) //Alternatively, assuming the argument is to be a type, one answer ...
2
votes
2answers
113 views

How to avoid sign extending bit mask in Java?

My bit masks are bytes, and I'd like to keep them exactly as they are, but I think they're sign extended. I don't care if the byte is considered positive or negative, as long as it has the same bits ...
2
votes
1answer
169 views

unsigned and signed values in C

here is the question: in the Book 'Computer Systems: A Programmer’s Perspective' section 2.2.5 it said that if an unsigned value is comparing with a signed value, all values will be compared in the ...
2
votes
1answer
54 views

Why does a negative SByte number have 16 bits in VB.Net?

I asked a question earlier about comparing numbers using the "And" comparison operator in If Statements and now I have been toying around with getting my head wrapped around bitwise operators. So I ...
2
votes
0answers
35 views

exporting signed appication package fails with: conversion to Davlik error 1

I have two related apps that have suddenly thrown this error. They both compile and can be downloaded to the phone. They exported OK two days ago. Since then I have added licensing to one of the apps. ...
2
votes
1answer
56 views

Why is FileInfo.Length of type “long”?

I was just wondering whether anyone knows why the property FileInfo.Length is of type long instead of ulong? I don't think the size of a file can ever be negative. Was this a general design decision ...
2
votes
2answers
752 views

SQL Server 2005 - Format a decimal number with leading zeros (including signed decimals!)

I need to format numbers like:- 1.99 21.34 1797.94 -300.36 -21.99 -2.31 Into a format mask of 0000.00, using SQL-Server 2005 T-SQL. Preserving the signed integers and the decimals after the dot. ...
2
votes
1answer
169 views

Packing two shorts into one int, dealing with negative and positive

I'm making a class PackedUnsigned1616 which stores two unsigned shorts in one int, and a class PackedSigned1616 which stores two signed shorts in one int. I've read up on bitwise operations, but I'm ...

1 2 3 4