Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
8answers
7k views

Generate random values in C#

How can I generate random Int64 and UInt64 values using the Random class in C#?
11
votes
7answers
3k views

Under C# is Int64 use on a 32 bit processor dangerous

I read in the MS documentation that assigning a 64-bit value on a 32-bit Intel computer is not an atomic operation; that is, the operation is not thread safe. This means that if two people ...
7
votes
2answers
451 views

Why do my .net Int64's behaves as if they were Int32's?

I'm witnessing a strange behavior in a .net program : Console.WriteLine(Int64.MaxValue.ToString()); // displays 9223372036854775807, which is 2^63-1, as expected Int64 a = 256*256*256*127; // ok ...
4
votes
4answers
301 views

std::atoll with VC++

I have been using std::atoll from cstdlib to convert a string to an int64_t with gcc. That function does not seem to be available on the Windows toolchain (using Visual Studio Express 2010). What is ...
4
votes
1answer
217 views

Multiplying __int64's

Can someone explain to me (in detail) how to multiply two __int64 objs and check if the result will fit in __int64. Note: Do not use any compiler or processor dependent routines.
4
votes
4answers
349 views

Do I need to have 64 bit Processor to use 64 bit data type

I have a few questions: Do I need to have 64 bit Processor to use 64 bit data type(__int64 or int64_t) ? What means by, the "t" of int64_t? Starting from what version of GCC and VCC are supporting ...
4
votes
2answers
2k views

c# isn't a Int64 equal to a long?

I have been playing around with SQL and databases in C# via SqlCeConnection. I have been using ExecuteReader to read results and BigInt values for record ID's which are read into Longs. Today I ...
4
votes
3answers
223 views

Why can't I directly set an __int64 variable to -2500000000?

This program is written in VC++ 6.0 on a WindowsXP machine. If I try to set an __int64 variable to -2500000000 directly, it is truncated to a 32bit value and the two's complement is taken. __int64 ...
4
votes
2answers
1k views

How to change System.DirectoryEntry “uSNChanged” attribute value to an Int64

I'm trying to get the Int64 value of a Directory Services object's "uSNChanged" value. Unfortunately, it is always coming back as a COM object of some kind. I've tried using casting to Int64, calling ...
4
votes
3answers
538 views

How to sort a part of an array with int64 indicies in C#?

The .Net framework has an Array.Sort overload that allows one to specify the starting and ending indicies for the sort to act upon. However these parameters are only 32 bit. So I don't see a way to ...
3
votes
4answers
2k views

manipulating LARGE_INTEGERS

I am converting some code from C to C++ in MS dev studio under win32. In the old code I was doing some high speed timings using QueryPerformanceCounter() and did a few manipulations on the __int64 ...
2
votes
4answers
60 views

in php5, how to stop GET from (wrongly) converting into numeric?

in relation to php int64 limits, if the uri has a int64 argument, how do you prevent GET from wrongly converting it into numeric and simply keeping it as a string? http://some.com?id=1707541557936130 ...
2
votes
1answer
32 views

php5 converts 64 bit integer to double - how force 64-bit?

in php5, pass a 64bit integer, 1707541557936130 through GET, but it shows value of 1.7075415579361E+15 how can I force php to use large integers as integers, not as float when I shift << ...
2
votes
4answers
218 views

Huge file support for Delphi 6? (replacement for System module?)

I am running into problems interacting with a huge fixed length record data file. The file is over 14 GB in size. I first noticed a problem when I saw the return value from the System.Filesize() ...
2
votes
3answers
196 views

Most efficient way to compare two __int64 numbers and get -1,0,1

I have been struggling with a very simple problem... I am working with a 4 dimensional cube using AVL trees... now the problem is a performance related one... basically I have to compare billions of ...
2
votes
3answers
2k views

What is the int.MaxValue on a 64-bit PC?

System.Console.WriteLine(int.MaxValue); This line gives me the answer of 2147483647 as I have a 32-bit PC. Will the answer be same on a 64-bit PC?
1
vote
3answers
54 views

Runtime error, makes my .exe crash and I am not sure why

I can take a guess that it has something to do with working with the unsigned long long int. #include <cstdlib> #include <iostream> #include <cmath> using namespace std; typedef ...
1
vote
2answers
107 views

converting char array (c string) to _int64 in C

I tried this function to convert a string to _int64 but it didn't work : _int64 lKey = _atoi64("a1234"); lKey value is always zero and doesn't work except the string is only digits like "1234" I ...
1
vote
1answer
176 views

C++: converting __int64 to unsigned long

I'd like to use the following function in windows and linux, but I am not sure how to convert an __int64 to unsigned long. Is it safe to cast the value like I did? getTimeInMilliseconds() { ...
1
vote
2answers
346 views

_int64 does not name a type

In my pch file I have the following definitions : #if (_MSC_VER < 1300) typedef signed char int8_t; typedef signed short int16_t; typedef signed int int32_t; ...
1
vote
3answers
144 views

How to set the lower or higher Value of a int64?

I know i can get the higher Value of a int 64 with: int32 higher = (int32)(iGUID >> 32); But how can i set it? I tried it with this, but it says "expression must be a modifiable value": ...
1
vote
4answers
239 views

Use of 64-bit types?

I am writing some hash functions for a compiler and I use the __int64 datatype frequently. The compiler is intended to be supported (and so far is) on different OS's. I know that __int64 is a type ...
1
vote
1answer
589 views

How to write INT64 to CString

I am coding in c++ windows. INT64 dirID = -1; CString querySQLStr = _T(""); querySQLStr.Format(L"select * from ImageInfo where FolderPath=%64d;", dirID); querySQLStr always like this: select * from ...
1
vote
3answers
3k views

Converting __int64 to long in Windows

How to convert __int64 to long in Windows (MSVC8 & MSVC6)? Will a normal typecasting work? Also, how about converting long to __int64? If the long is a negative value, will it work? Note - I ...
1
vote
4answers
2k views

I want to get the low 32 bit of a int64 as int32

I have an Int64 value, but I only need the lower 32 bits. Thus I want a quick way to get the Int32 value from the lower 32 bits of the Int64 value. Thanks
1
vote
2answers
507 views

Inaccurate division of doubles (Visual C++ 2008)

I have some code to convert a time value returned from QueryPerformanceCounter to a double value in milliseconds, as this is more convenient to count with. The function looks like this: double ...
1
vote
1answer
950 views

Converting int64 to NSData

I need to convert a long value from int64 to NSData, so I can later run a hash algorithm on it. I perform: int64_t longNumber = 9000000000000000000L; NSMutableData *buffer = [NSMutableData ...
0
votes
5answers
108 views

How do I emulate 256-bit integer math ops on a system with only a 32-bit int?

I'd like to write a deadsimple bignum class using a series of (unsigned) integers. I can loosely see how addition and subtraction would work, but division and multiplication is another story. I know ...
0
votes
1answer
28 views

Do I need to wrap accesses to Int64's with a critical section?

I have code that logs execution times of routines by accessing QueryPerformanceCounter. Roughly: var FStart, FStop : Int64 ; ... QueryPerformanceCounter (FStart) ; ... <code to be ...
0
votes
2answers
117 views

How do I convert a SQL Server datetime to a C# int64 in ADO.NET?

I would like to read from a datetime field in SQL Server and store it as a int64, as datetime is stored as 64 bits in SQL Server. Would I do something similar to this? DateTime dt = ...
0
votes
4answers
420 views

How to use Int64 in C#

The question is easy! How do you represent a 64 bit int in C#?
0
votes
2answers
588 views

How to retrieve a bigint from a database and place it into an Int64 in SSIS

I ran into this problem a couple years back and am hoping there has been a fix and I just don't know about it. I am using an 'Execute SQL Task' in the Control Flow of an SSIS package to retrieve a ...
0
votes
3answers
576 views

Converting an int64 value to a Number object in JavaScript

I have a COM object which has a method that returns an unsigned int64 (VT_UI8) value. We have an HTML page which contains some JavaScript which can load the COM object and make the call to that ...
0
votes
2answers
591 views

prototype of int64_t or offset64 both linux and windows 32bits system

I am developing a application which needs functions of int64 variables. and i was told offset64 or int64_t is viable for my need... But i just wanna what is the prototype of int64 under 32bit ...
0
votes
4answers
2k views

FILETIME to __int64

What is the proper way to convert a FILETIME structure into __int64? Can you please tell me?
0
votes
1answer
598 views

How can i serialize variable with type of Int64 in JavaScript without loss of accuracy?

How can i serialize variable with type of Int64 in JavaScript without loss of accuracy? My development platform is. NET.