Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
1k views

How to map uint in NHibernate with SQL Server 2005

I have a property of type uint on my entity. Something like: public class Enity { public uint Count {get;set;} } When I try to persist that into the SQL Server 2005 database, I get an exception ...
3
votes
3answers
575 views

Fastest way to cast int to UInt32 bitwise?

i have some low level image/texture operations where 32-bit colors are stored as UInt32 or int and i need a really fast bitwise conversion between the two. e.g. int color = -2451337; ...
2
votes
5answers
128 views

C# convert from uint[] to byte[]

This might be a simple one, but I can't seem to find an easy way to do it. I need to save an array of 84 uint's into an SQL database's BINARY field. So I'm using the following lines in my C# ASP.NET ...
2
votes
2answers
3k views

C# Problem using blowfish NET: How to convert from Uint32[] to byte[]

In C#,I'm using Blowfish.NET 2.1.3's BlowfishECB.cs file(can be found here) In C++,It's unknown,but it is similiar. In C++,the Initialize(blowfish) procedure is the following: void ...
1
vote
4answers
265 views

How do I convert byte array to UInt32 array?

Lets say In C++ I got code like this.. void * target uint32 * decPacket = (uint32 *)target; So in C# it would be like.. byte[] target; UInt32[] decPacket = (UInt32[])target; Cannot convert ...
1
vote
1answer
382 views

Fastest UInt32 to int conversion in C#

I have a fast bit-level routine that calculates a value, and returns a UInt32. I need to store this value in SQL Server in a 32 bit int field. I don't want to increase the size of the field, and ...
1
vote
1answer
239 views

How to force PHP to treat a number like a uint

I have some C# code that looks like this: uint a = 0x9E3779B9; a += (uint)(url[k + 0] + (url[k + 1] << 8) + (url[k + 2] << 16) + (url[k + 3] << 24)); After that code, a == 228 452 ...
1
vote
4answers
288 views

Compile time checking existance of stdint.h

I'm working with legacy embedded C code which defines the types uint8_t, uint16_t and uint32_t in a header file using the typedef keyword. For discussion, let us say the file typedefs.h contains ...
1
vote
4answers
1k views

What is the difference between Int32 and UInt32?

What is the difference between Int32 and UInt32? If they are the same with capacity range capabilities, the question is for what reason UInt32 was created? When should I use UInt32 instead of Int32?
1
vote
3answers
4k views

How to pass uint in Java?

I'm trying to call SendMessage with an uint parameter from Java, but I can't convert int to uint. I can't change the uint parameter in SendMessage because it is a windows function. Is there some way ...
1
vote
7answers
1k views

In C# is there any significant performance difference for using UInt32 vs Int32

I am porting an existing application to C# and want to improve performance wherever possible. Many existing loop counters and array references are defined as System.UInt32, instead of the Int32 I ...
0
votes
0answers
30 views

guint32 date to timestamp in php

I have a date format that is from a GTK\GNOME app that is stored in guint32 date: example: 724605 which I would like to convert into a time-stamp for use with-in a PHP script? Any ideas I have been ...
0
votes
1answer
129 views

Objective C: uint32_t stored as String, need to read as uint32_t

I am storing color values in a database for an iPad app that needs a legend with colors in it. Each entry has it's own color value, derived from a hex value. Basically, my colors all look like this: ...
0
votes
2answers
275 views

How do I convert userdata to a uint32 or float?

How do I convert user data like this: local user_data = { 0x33, 0x22, 0x11, 0x00 } to either a uint32 or float using Lua? I cant find anything in the documentation that talks about this. I've ...
0
votes
2answers
296 views

In C# should I use uint or int for values that are never supposed to be negative? [closed]

Possible Duplicate: Should I use uint in C# for values that can’t be negative? Suppose that the MaxValue of (roughly :) ) 2^31 vs 2^32 does not matter. On one hand, using uint seems ...
0
votes
1answer
184 views

how to take input for uint32_t variable

i have declared a variable as uint32_t num; when i take input for this variable i.e cin>>num; cout< when i run this program, i gives num value as 12345678, it works fine & give cout. but when ...
0
votes
2answers
342 views

NHibernate - How to store UInt32 in database

What is the best way to map UInt32 type to sql-server int type with NHibernate. The value is a picture width/height so negative value are not make sense here. But maybe I should use int because ...
0
votes
4answers
592 views

What is the UInt32 data type in Visual Basic .NET?

What is the UInt32 datatype in VB.NET? Can someone inform me about its bit length and the differences between UInt32 and Int32? Is it an integer or floating point number?
0
votes
3answers
604 views

Objective C - Are SystemSoundID's (typedef'd UInt32) automatically assigned 0?

- (void)playAlarmSound:(NSTimer *)theTimer { static SystemSoundID soundID/* = 0 */; // ? if (!soundID) { soundID = [Utilities createSystemSoundIDFromFile:@"beep" ofType:@"caf"]; } ...
0
votes
2answers
303 views

How to sort List<List<UInt32>> according to List<UInt32>[0] number ASC/DESC in C#?

How shall sort this in ASC order? I got List<List<UInt32>> full of records of List<UInt32> and I want those records to be sorted according to the first column in each record - the ...
-1
votes
1answer
64 views

VB.NET - Problems with SHQueryRecycleBin

I'm currently working on an application for my personal use. The idea is that you can open it up and reach all kind of stats of your computer (Recycle bin, Drives, Network and much more). Now I was ...