The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
13 views

Unsigned to signed without comparison

To convert 32-bit unsigned to signed integer one could use: function covert(n) if n >= 2 ^ 31 then return n - 2 ^ 32 end return n end Is it possible to do it without that ...
1
vote
1answer
31 views

How to unsign an APK via command line in Windows

I work in a QA department that receives APKs signed with development keys. When we want to sign one of these builds for purchase testing, I typically use 7zip to open the APK and delete the META-INF ...
-2
votes
3answers
56 views

difference and mapping between unsigned integers

I want to deduce a list of 16-bit unsigned integers from another list of 16-bit unsigned integers for example, I have a list 10000 12349 32333 3342 and I know the first integer of the other list ...
-2
votes
4answers
79 views

values changed in bitfields in structure [closed]

Can anyone explain the output , how the value is stored and calculated? #include<stdio.h> struct bitfield { unsigned f1:1; unsigned f2:2; unsigned :3; unsigned ...
0
votes
2answers
52 views

C++ copying integer to char[] or unsigned char[] error

So I'm using the following code to put an integer into a char[] or an unsigned char[] (unsigned???) char test[12]; test[0] = (i >> 24) & 0xFF; test[1] = (i >> 16) & 0xFF; test[2] ...
0
votes
1answer
59 views

I want to multiply signed and unsigned in vhdl

I have the following issue: I need to multiply and add various std_logic_vectors and to obtain a result, which can be either negative or positive. Then I have to check the result: 1. if it is negative ...
0
votes
4answers
43 views

Using char as an unsigned 16 bit value in Java?

I need an unsigned 8 bit integer in Java, and char seems to be the only thing close to that. Although it's double the size, it's unsigned which makes it practical for what I want to use it for ...
4
votes
3answers
153 views

Does the unsigned keyword affect the result of sizeof?

Do C and C++ guarantee that the unsigned equivalent of a type has the same size? Example: size_t size = sizeof(unsigned int); Is the unsigned completely moot here?
1
vote
6answers
75 views

The “unsigned” keyword [duplicate]

I saw in some C++ code the keyword "unsigned" in the following form: const int HASH_MASK = unsigned(-1) >> 1; and later: unsigned hash = HASH_SEED; (it is taken from the CS106B/X reader - ...
1
vote
1answer
50 views

are signed integer and unsigned integer one-one mapping with each other?

I want to make ip-port pair as a search key, so I have the following function int64_t make_pair(u_int32_t ip, u_int16_t port) { u_int64_t ip_u64 = ip; ip_u64 = ip_u64 ...
1
vote
1answer
68 views

How to convert signed 32-bit int to unsigned 32-bit int in python?

This is what I have, currently. Is there any nicer way to do this? import struct def int32_to_uint32(i): return struct.unpack_from("I", struct.pack("i", i))[0]
-1
votes
1answer
48 views

I need to concatenate two elements of an unsigned char array into and keep it unsigned char

I have unsigned char array[8] and I want to make another unsigned char array, which has 4 elements, for example new_array[4]. Its elements have to be like that: new_array[0] - concatenation of ...
0
votes
0answers
29 views

Parsing base 2^32 numbers to decimal (For theorically unlimited numbers)

I am working on a C++ problem where I have to print my class. My class stores and does arithmetic and logic operations on theorically unlimited long numbers. It has an array of unsigned ints to hold ...
1
vote
3answers
37 views

Determining signed state for HDF5 variables in NetCDF

My team has been given HDF5 files to read. They contain structured data with unsigned variables. I and my team were overjoyed to find the NetCDF library, which allows pure-Java reading of HDF5 files, ...
1
vote
5answers
119 views

difference between unsigned short int and unsigned short

Is there a difference between unsigned short int and a unsigned short decleration in c and if so, what is it please ? I tried looking online, but couldn't find anything worthwhile. unsigned short ...
0
votes
3answers
64 views

c++ vector size. why -1 is greater than zero

Please take a look at this simple program: #include <iostream> #include <vector> using namespace std; int main() { vector<int> a; std::cout << "vector size " << ...
0
votes
1answer
74 views

Is unsigned long long fixed to an int(4 byte) range, if so, why is it 8 bytes in memory?

Edit: Stupid question, I overlooked the format identifiers. I had a program grab the size of a few unsigned types and their maximum value. This brought an anomaly to my attention, the fact that even ...
0
votes
1answer
66 views

LPWSTR, wchar_t* and unsigned short pointer in C++

I'm trying to understand if these types are all the same. I have this function from windows.h: GetCommandLine(), in UNICODE mode, and it returns a LPWSTR. Now, if I dig deeper I can see how LPWSTR is ...
-1
votes
1answer
78 views

C++: Bitshifting an unsigned short

I'm trying to save 2 unsigned char into a single unsigned short. So what I do is save the 1st char, bitshift it then OR with the 2nd char. Code: unsigned char a = 8; unsigned char b = 2; unsigned ...
0
votes
1answer
44 views

SSE Compare Packed Unsigned Bytes

I'm trying to use the SSE instructions to do some image filtering. The image I'm using has a byte per pixel (255 greyscale) and I need to compare the unsigned packed bytes using a greather than ...
0
votes
2answers
64 views

C : Modulus operator on unsigned int gives unexpected output

#include <stdio.h> main() { unsigned a = -20; unsigned b = 10; printf("%d\n", (a % b)); printf("%d\n", (-20 % 10)); } Output: 6 0 The second printf prints the expected value ...
7
votes
3answers
180 views

Why does std::abs return signed types

I'm getting warning for signed vs. unsigned comparison when I'm comparing a std::abs(int) against an unsigned. And indeed, std::abs returns signed values. Why was that choice made? It would have ...
0
votes
4answers
71 views

Why use #define DEF ((unsigned) -1) instead of #define 0xFFFFFFFF

In the C language, why use the following line to define a constant with all bits set to 1?: #define EXTENDED_MEM_END ((unsigned) -1) Instead of using the following?: #define EXTENDED_MEM_END ...
0
votes
1answer
63 views

Eclipse shutdown when creating unsigned android apk

I'm freaking out with eclipse, I can generate a unsigned apk. When I start generating it, looks like everything goes good, but at the last moment when should finished generating the unsinged apk ...
-1
votes
1answer
58 views

Modulo arithmetic with signed integers undefined behavior in c?

Having read all answers and comments in Should you always use 'int' for numbers in C, even if they are non-negative? I'm still not sure what to do in the following situation. Two remote ...
1
vote
2answers
86 views

How to convert an array of bits to a char

I am trying to edit each byte of a buffer by modifying the LSB(Least Significant Bit) according to some requirements. I am using the unsigned char type for the bytes, so please let me know IF that is ...
0
votes
2answers
90 views

How to implement an unsigned byte in java, restriction being the size should be 1 byte only

How to implement an unsigned byte in java, restriction being the size should be 1 byte only i.e. we cannot convert to short or int by And' ing with 0xFF I have to transfer an unsigned byte array ...
2
votes
1answer
75 views

Symfony 1.4 Validation Error Unsigned

when i try to save an form in Symfony 1.4 it gives me these errors: Validation failed in class CmsContentElementFile 4 fields had validation errors: * 1 validator failed on title (unsigned) * 1 ...
8
votes
2answers
103 views

Declare an “unsigned T”

I want to use unsigned T in a template: template<class T> void signed2unsigned(const T* source, unsigned T* dest, size_t n) { do { intmax_t s=*source; ...
0
votes
2answers
215 views

should use size_t or ssize_t [duplicate]

At my code, I do not use int or unsigned int. I only use size_t or ssize_t for portable. for example: typedef size_t intc;(instead of unsigned int) typedef ssize_t uintc;(instead of int) Because ...
0
votes
3answers
105 views

Is it okay to use int instead of a size_t in looping over a vector?

If I have an integer vector vector<int> vec; and I loop in the following way for(int i=0; i<vec.size(); i++) { // do something } I get the signed/unsigned mismatch warning. Of ...
0
votes
3answers
461 views

How to initialize an unsigned char array of variable length?

I read through this(How to initialize a unsigned char array?), but it doesn't quite answer my question. I know I can create an array of strings like this: const char *str[] = { "first", ...
1
vote
2answers
163 views

Vhdl code acting wierd (small code , where variable keeps its value and doesnt reset)

Here is the code: entity main is port(input:in unsigned(99 downto 0); clk:in std_logic; output:out unsigned(99 downto 0) ); end main; architecture Behavioral of main is begin process(clk) ...
0
votes
1answer
83 views

Using a union to read a char array as an unsigned long int

As the title hints, essentially I convert a char array into an unsigned long int (or rather, read as an unsigned long int) by means of a Union. union { char buffer[8]; unsigned long int ...
0
votes
2answers
357 views

Java: Unsigned byte creation by bit-wise AND

I would like to create a bit array which will be sent via serial RS232 to an Arduino to control output pins. I'm doing this by creating checkboxes which when selected send a byte which each bit ...
0
votes
2answers
436 views

Inserting unsigned 64-bit number into BigInt MySQL column using Java and JDBC

I searched for answer to this question and only found vague answers. Here is the problem: I have a sample table in MySQL: mytable time Timestamp data BigInt(20) unsigned Data field is chosen so that ...
2
votes
1answer
48 views

Mysql CAST return invalid data

I have a query SELECT MAX(CAST(user_name as SIGNED)) as max_id FROM (`users`) it returns 2.01303045556E+12 but actually the maximum value is 2013030455555 Anybody know how it happens??
0
votes
3answers
117 views

C++ Largest Numerical Storage [duplicate]

Is there an equivalent to Java's Bigint in C++ that can store the following number: ...
0
votes
0answers
50 views

Cast Unsigned Ints near Max Value [closed]

This is probably a pretty obvious question to someone with the know how, but it's giving me grief. My code unsigned char arr[4] = {buffer[pos-4], buffer[pos-3], buffer[pos-2], buffer[pos-1]}; ...
1
vote
4answers
100 views

Java and unsigned Bytes

Good day, Sorry to ask about such a common questions, but i have been googling and reading and i still have not come right. I need to make use of an array of unsigned bytes. i need to send certain ...
0
votes
1answer
34 views

how free unsigned pointer array and it's elements (calloc)

What is the best way to free unsigned pointer array allocated with cmallc? uint8_t *buf; buf = cs_calloc(ca->len + 13); i do like this , but i know this is not quite right , since i got ...
0
votes
1answer
146 views

I need help: Send a list of bytes with UDP to a Server, o it works with signed/unsigned bytes

I have the following problem: I have to send a list of bytes from my android phone to an old server with udp. Because in java the bytes are signed, the server receive always to many bytes. Instead of ...
0
votes
4answers
205 views

C/C++: How to properly convert “unsigned int *” value to “unsigned int”?

I have an "unsigned int *" value, and I need to convert it to a simple "unsigned int", so I could transfer it to a function. But, unfortunately, when I try to do a simple cast, the value gets changed: ...
0
votes
2answers
205 views

Convert 16-bit signed PCM to usigned 16-bit

I have a audio wave file (*.wav) and I have the audio data formatted in signed 16-bit (from -32767 to +32768). I want to convert them in unsigned 16-bit (from 0 to +65535). Is there some idea how to ...
0
votes
0answers
73 views

Use of unsigned types in C [closed]

Is there any consensus on where unsigned types should be used in C? I generally prefer signed types, int for example, wherever arithmetic is or might be involved, even if there is no possibility ...
0
votes
2answers
35 views

INT(3) column not cliping the value to appropriate length and allowing the full value to be inserted - MySQL

I have an INT(3) UNSIGNED column. If I insert a value with character length more that 3, it doesn't clip that value but inserts it. Whats happening?
0
votes
0answers
28 views

What is the difference between little and big endian for unsigned ints?

Consider a register: | 5000 | 5001 | 5002 | 5003 | | FF | 00 | 00 | 00 | What impact does the use of different sized load instructions (load byte, load halfword, load word) have when using ...
4
votes
1answer
544 views

Will 'comparison between signed and unsigned integer expressions' ever actually result in errors?

Often an object I use will have (signed) int parameters (e.g. int iSize) which eventually store how large something should be. At the same time, I will often initialize them to -1 to signify that the ...
0
votes
1answer
173 views

Java unsigned - remove sign bit

I have this function: public static final int UNSIGN(short b){ return (b & 0xFFFF); } The intent here is to use the value in 'b' as if it were positive, by this I mean as if it were an ...
0
votes
1answer
77 views

make operation between to unsigned number when variables can take negative value [closed]

How I make one operation Between when I do queries like these: types.init and types.end are an unsigned number, and for this case B.init=0 and B.end=0 SET @init:=20; SET @end:=100; SELECT ...

1 2 3 4 5 9