Tagged Questions
The uint64 tag has no wiki summary.
4
votes
4answers
298 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
215 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
2answers
268 views
CLS-compliant alternative for ulong property
Background
I am writing a managed x64 assembler (which is also a library), so it has multiple classes which define an unsigned 64-bit integer property for use as addresses and offsets. Some are file ...
4
votes
6answers
920 views
How do you deal with numbers larger than UInt64 (C#)
In C#, how can one store and calculate with numbers that significantly exceed UInt64's max value (18,446,744,073,709,551,615)?
3
votes
4answers
121 views
Convert uint64 to GMP/MPIR number
I am using MPIR 2.4.0 on Windows (MSVC 2010) and I was trying to add an unsigned 64bit integer to a mpz_t number. However it seems that MPIR/GMP does not support direct conversion between 64bit ...
3
votes
3answers
385 views
How to define an unsigned 64-bit integer in Delphi7?
In Delphi 7, int64s are signed, if I try to declare a hex constant larger than $8000000000000000 (eg, what is really an uint64) I get an error. Can you advise some workarounds, please?
3
votes
1answer
154 views
How to get a flags enum to convert to UInt64 with a TypeConverter
I have a class which takes a generic class TState in its constructor, under the condition that TState can be converted to a UInt64using a TypeConverter. It will then be used as flags.
I want to use a ...
2
votes
6answers
1k views
uint64_t to int
I'm writing a java binding for a C code and I'm not really familiar with C.
I have a uint64_t and need to cast it to a int. Does anyone know how to do that?
(My binding returns then a jint...)
2
votes
6answers
1k views
Converting an uint64 to string in C++
What's the easiest way to convert an uint64 value into a standart C++ string? I checked out the assign methods from the string and could find no one that accepts an uint64 (8 bytes) as argument.
How ...
1
vote
3answers
52 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
1answer
149 views
difference between stdint.h and inttypes.h
What is the difference between stdint.h and inttypes.h?
If none of them is used, uint64_t is not recognized but with either of them it is a defined type.
1
vote
3answers
338 views
Convert uint64_t to std::string
How can I transfer uint64_t value to std::string?
I need to construct the std::string containing this value
For example something like this:
void genString(uint64_t val)
{
std::string str;
...
1
vote
3answers
1k views
sprintf for unsigned _int64
I am having following code. output of second %d in sprintf is always shown as zero. I think i am specifying wrong specifiers. Can any one help me in getting write string with right values. And this ...
1
vote
1answer
488 views
Converting (u)int64_t to NSNumbers
So essentially my question is this, I am creating an NSMutableDictionary using uint64_t objects as the key.
Is there any better way to create them than doing this?
uint64_t bob=7;
NSNumber ...
0
votes
4answers
99 views
Shortest way to represent UInt64 as a string
I get a possibly large number (UInt.MaxValue: 18446744073709551615) as a normal base10 number.
This number would eventually become a filename: 12345678945768.txt
Since filenames on Windows aren't ...
0
votes
1answer
89 views
UInt64 on a 32 bit system, need to generate from UInt32's or array of bytes, how?
To generate UInt64 the following results in "warning C4293: '<<' : shift count negative or too big, undefined behavior"
UInt64 byteArrayToUInt64(int %stI, array<Byte>^ byteArray) {
...
0
votes
3answers
470 views
C /C++ long long to Java long
I have a file on disk which I'm reading which has been written by c/c++ code. I know I have two 64-bit unsigned integers to read, but Java doesn't support unsigned integers, so the value I get when I ...
0
votes
3answers
1k views
how to convert hex string to unsigned 64bit (uint64_t) integer in a fast and safe way?
I tried
sscanf(str, "%016llX", &int64 );
but seems not safe. Is there a fast and safe way to do the type casting?
Thanks~
0
votes
1answer
572 views
convert u_int64_t to u_char on CUDA 2.3 nvopencc
CUDA 2.3 V0.2.1221 / 32bit linux
Hi, I have a problem with the following code:
__device__ void put_u64(void *vp, u_int64_t v) {
u_char *p = (u_char *) vp;
p[0] = (u_char) (v >> 56) & ...
0
votes
3answers
719 views
Weird dynamic linking problem on iPhone
The following code crashes in an Xcode created template project.
int main(int argc, char *argv[])
{
uint64_t t64 = 100000;
double s = (double)t64; // Crash!
...
The crash is ...