Tagged Questions

3
votes
3answers
579 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
269 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
242 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
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
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
2answers
305 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 ...