1
vote
2answers
46 views
long long int in ObjC
Hi All,
I am using this NSURLConnection Delegate method
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
long long rdata = [response …
0
votes
4answers
53 views
DECIMAL vs INT what is the best optimized choice?
I'm sure this ask in incomplete without a precise context, so I'll try to explain it, and I'll try to be clear
I need to store a whole of data rapresented on the page with grams, milligrams, …
0
votes
2answers
19 views
matrix multiplication for integral types using BLAS
Is there an equivalent of dgemm (from BLAS) for integral types?
I only know of dgemm, sgemm for double precision / single precision matrices, but would like to have it for matrices that are of …
1
vote
2answers
15 views
Converting an Integer to Enum in PostgreSQL
I have created a custom data type enum like so:
create type "bnfunctionstype" as enum ( 'normal', 'library', 'import', 'thunk', 'adjustor_thunk' );
From an external data source I get integers in the …
-2
votes
3answers
53 views
c sharp initialzing an integer data type
how to initialize a variable of data type integer, in c sharp. the problem is the variable has to store an integer with values ranging from 1 to 4.
0
votes
0answers
14 views
Integer Relation (i.e. PSLQ) Implementation
Can anyone point me to a library or module with a decent integer relation implementation (most likely PSLQ)?
My target platform is .NET (C#), but if there's source code in C/C++, Java, whatever, even …
0
votes
8answers
108 views
Hashing function for four unsigned integers (C++)
I'm writing a program right now which produces four unsigned 32-bit integers as output from a certain function. I'm wanting to hash these four integers, so I can compare the output of this function to …
1
vote
1answer
45 views
How do I create a simple integer in Objective-C?
I am trying to create a simple integer variable and can't get it to accept a value.
Why does the NSLog print out i=(null)?
int i;
i = 0;
NSLog(@"i=%@", i);
How do I create a simple index for an …
0
votes
2answers
19 views
Axapta: force container integer to be stored as a string
Is there a way to force a container to store all values as strings? I am using str2con in order to split text strings into containers.
Any time a field with numbers only comes up, it is stored as an …
0
votes
1answer
12 views
Displaying the size of a file in CListCtrl
I am working in Windows MFC application..In my design am displaying the file details (type,name,size) in a CListCtrl control. I found those file details using FileStatus but when I try to display, I …
0
votes
2answers
50 views
How to display integers in messagebox in Visual C#?
I am trying to use a messagebox to debug a Visual C# program. When I click a button I want a simple messagebox to popup and display the values of several integer variables. This is what I have
…
0
votes
2answers
30 views
[iphone DEV] makes pointer from integer without a cast
Hello, i have a simply warning in my iphone dev code.
NSUInteger *startIndex = 20;
This code work, but i have a warning :
warning: passing argument 1 of 'setStartIndex:' makes pointer from integer …
1
vote
3answers
88 views
Python Class with integer emulation
Given is the following example:
class Foo(object):
def __init__(self, value=0):
self.value=value
def __int__(self):
return self.value
I want to have a class Foo, which acts …
15
votes
13answers
6k views
Best algorithm to count the number of set bits in a 32-bit integer?
8 bits representing the number 7 look like this:
00000111
Three bits are set. What is the best algorithm to determine the number of set bits in a 32-bit integer?
2
votes
1answer
44 views
Objective-C - Comparing integers not working as expected
Hi everyone. So my problem is this:
I am receiving a JSON string from across the network. When decoded (using SBJSON libraries), it becomes an NSDictionary that SHOULD contain a number of some sort …
