The int64 tag has no wiki summary.
1
vote
1answer
76 views
How can I print out an constant uint64 in Go using fmt?
I tried:
fmt.Printf("%d", math.MaxUint64)
but I got the following error message:
constant 18446744073709551615 overflows int
How can I fix this? Thanks!
0
votes
1answer
34 views
How to calculate the result of the multiplication of two int64 numbers modulus another int64 number?
Let a, b, and c be long long (int64) numbers, how to calculate (a*b)%c? The problem here is that you can't multiply (a%c)*(b%c) because it won't fit on an int64 variable. So, what can it be done?
...
3
votes
3answers
118 views
Setting all bits in int64_t
From following code I expect to set all bits in x to 1, but somehow only first 32 bits are set:
int64_t x = 0xFFFFFFFF;
x<<32;
x|=0xFFFFFFFF;
Note: printing x after each line results in ...
1
vote
2answers
54 views
.NET method to parse String with Long type qualifier
I get a string from a 3rd party SW with a long type qualifier, e.g. "1L".
I want to parse this to an Int64, but Int64.TryParse does not recognize this as an Int64.
Is there a .NET method that does ...
3
votes
2answers
97 views
Cross platform definition of 64 bit integers in C++ for Windows and Linux
I am trying to write cross-platform code in C++ for Windows(MinGW) and Linux(g++). I was used to define 64 bit integers in Linux as "long", but when I moved to MinGW, the sizeof(long) returned 4 ...
0
votes
1answer
99 views
C# convert one's complement bits to a two's complement long?
In C#, how can I convert a 64 bit ones complement number (represented as a long or ulong) to a signed two's complement long?
For reference, I'm trying to implement ULP-based double comparison using ...
7
votes
1answer
188 views
Best way to load a 64-bit integer to a double precision SSE2 register?
What is the best/fastest way to load a 64-bit integer value in an xmm SSE2 register in 32-bit mode?
In 64-bit mode, cvtsi2sd can be used, but in 32-bit mode, it supports only 32-bit integers.
So far ...
0
votes
1answer
20 views
Choosing correct datatypes for script language
I am writing a script language interpreter which is very similar to "C", with the difference that there are fewer data types for the numeric variables, only int (representing an int data type) and ...
1
vote
1answer
91 views
Should I use static_cast or INT64_C to assign 64-bit constant portably?
Assigning a 64-bit constant as
int64_t foo = 0x1234LL;
is not portable, because long long isn't necessarily int64_t. This post Which initializer is appropriate for an int64_t? discusses use of ...
0
votes
0answers
92 views
Does the DataView Table.Select() statement treat Int32 and Int64 types differently by design?
I have a question about an issue for which I have already found a resolution. I am working with the C# 4.0 framework. In the line of code below, _bo.Data["VT_VENUE_MEETING_ADJUSTMENT"].Table is a ...
0
votes
2answers
207 views
Read int64 from node.js buffer with precision loss
What would be the best way to read an Int64BE from a node.js buffer into a Number primitive, like readInt32BE reads an Int32?
I know that I'll lose precision with numbers +/- 9'007'199'254'740'992, ...
-1
votes
2answers
211 views
Random long long generator C++ [closed]
What is a solution to generate random long long with cryptographic strength С++? (boost is allowed)
7
votes
3answers
224 views
Which initializer is appropriate for an int64_t?
I like to initialize my variables to some "dummy" value and have started to use int64_t and uint64_t. So far, it looks like there are at least three ways I could initialize an int64_t to a particular ...
1
vote
2answers
79 views
What is a tinytext in php and what´s the difference between tinytext and string?
I got a debug report on a site written in php (debug information of an easydutyplan parser) and I saw
[rowParam] => Array
(
[0] => BIGINT
...
9
votes
2answers
698 views
Should I use long long or int64_t for portable code?
I have an open-source codebase that is written in both C and C++. I'm looking for an integer type that is guaranteed to be at least 64 bits wide, which can be reliably compiled on most OS X (Intel, ...
1
vote
1answer
204 views
strconv.Itoa64(1234) gives undefined in golang
Here is the code:
package main
import (
"strconv"
"fmt"
)
func main() {
t := strconv.Itoa64(1234)
fmt.Println(t)
}
Here is the error message:
command-line-arguments
.\test.go:7: ...
0
votes
1answer
824 views
How to use Int64(long) in php but not string?
How to user Int64 in php like dotnet、java、c++?
For example:
The datatype is bigint(20) in mysql,I want to save value from php.I know one solution is using string in mysql procedures.
table case:
...
1
vote
2answers
239 views
64 bit integer initialization error in Visual Studio 2010 SP1
I have a weird bug/error/self stupidity concern. I'm developing a small application in C, and I'm using Visual Studio 2010 SP1. The offending code:
uint64_t sum_squared_X = 65535*65535*64;
int64_t ...
1
vote
1answer
128 views
JSON Int64 data flipped/changed randomely
I'm using jquery to get json data from my webserver. When I check with Fiddler data returned, everything looks normal. However, when I start debug in Chrome/IE/ or Safari, I notice that some values ...
2
votes
2answers
381 views
Bit-shifting with Int64
An Int64 variable needs to be shifted. I am parsing pseudo mathematical functions from a database file. The Variables are uint32 or int32 so i did put them into an Int64 to handle them equally without ...
0
votes
2answers
317 views
Translating C++ to python - memcpy uchar into int64
Alright, I'm copying some code (C++) that needs to run on my server (Python), everything was going well until the bit below.
In a nutshell here is what I have in the C++ program:
int main() {
...
...
3
votes
2answers
201 views
C++: how to check, that enum has only unique values
we use VS 2008
there is a big enum, which is populated by many developers
this enum has a type __int64 (a Microsoft extension), and I want to make compiler complain about non unique values in enum.
...
4
votes
1answer
245 views
json parsing of int64 in go; null values
I'm trying to parse a json stream in Go. I've created a simplified example:
package main
import (
"encoding/json"
"fmt"
)
var d = []byte(`{ "world":[{"data": 2251799813685312}, {"data": ...
2
votes
3answers
891 views
How to declare an Int64 constant?
i'm trying to define a constant in Delphi:
const
FNV_offset_basis = 14695981039346656037;
And i get the error: Integer constant too large
Note: 14,695,981,039,346,656,037 decimal is equal to ...
3
votes
3answers
747 views
C# Convert a number larger than Int64 to HexaDecimal
I am trying to convert a big number(ex: 9407524828459565063) to Hexadecimal(ex: 828E3DFD00000000) in C#.
The problem is that the number is larger than Int64's max value.
i looked up everywhere and ...
1
vote
3answers
693 views
Combine Two Int32 Into An Int64
Have Dictionary <Int64, byte> that gets used a lot. I mean in a loop that runs for days in a big data load. The Int64 comess from two Int32. The byte happens to be the distance (count) ...
0
votes
2answers
545 views
Sending a long (Int64) via JSON to a WCF Data Service
I'm having trouble performing a PUT Request over HTTP to a WCF Data Service (OData). The problem is the ID. It isn't autogenerated and I can't change the DB Settings (not allowed in this case). So ...
0
votes
3answers
345 views
_int64 bit field
I need to use a 6 bytes (48 bit) bit field in a structure that I can use as unsigned integer for comparison etc. something along the following:
pack (1)
struct my_struct {
_int64 var1:48;
} s;
if ...
4
votes
6answers
229 views
Why does var get resolved as a Double and not Long?
In the following code, I would expect var to get resolved to an Int64, but it gets resolved to a double. Why is it so?
string a = "1234";
bool asInt = true;
var b = (asInt) ? Int64.Parse(a) : ...
1
vote
3answers
371 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 ...
0
votes
5answers
646 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 ...
2
votes
4answers
87 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
...
3
votes
1answer
426 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 << ...
0
votes
1answer
84 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 ...
1
vote
2answers
1k 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
2answers
802 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()
{
...
0
votes
2answers
385 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 = ...
4
votes
2answers
3k 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;
...
5
votes
4answers
2k 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 ...
2
votes
4answers
691 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() ...
4
votes
1answer
582 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.
1
vote
3answers
433 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":
...
7
votes
4answers
953 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 ...
10
votes
2answers
11k 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 ...
5
votes
3answers
544 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 ...
1
vote
4answers
435 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 ...
0
votes
4answers
3k views
0
votes
3answers
239 views
How to fit a structure in an int64?
I need to fit the following structure into int64.
day 9 bit (0 to 372)
year 8 bit (2266-2010 = 256 y)
seconds 17 bit (24*60*60=86400 s)
hostname 12 bit (2^12=4096)
random 18 bit (2^18=262144)
How ...
2
votes
3answers
433 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 ...
1
vote
1answer
2k 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 ...
