The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
55 views

For any string “char name[10]=”test“”,is strlen(name)+1 always guaranteed to be same as sizeof(name)?

For a string name[],can we use strlen(name)+1 and sizeof(name) interchangeably in our code without second thought?Aren't they same?I checked about it and found out even the return type for both is ...
0
votes
2answers
95 views

Cast ssize_t or size_t

In source files which I am using in my project, there is a comparison between ssize_t and size_t variables: ssize_t sst; size_t st; if(sst == st){...} I would like to get rid of the warning: ...
0
votes
2answers
134 views

should use size_t or ssize_t [duplicate]

At my code, I do not use int or unsigned int. I only use size_t or ssize_t for portable. for example: typedef size_t intc;(instead of unsigned int) typedef ssize_t uintc;(instead of int) Because ...
10
votes
1answer
144 views

How to detect negative number assigned to size_t?

This declaration compiles without warnings in g++ -pedantic -Wall (version 4.6.3): std::size_t foo = -42; Less visibly bogus is declaring a function with a size_t argument, and calling it with a ...
-1
votes
1answer
31 views

Some man pages not found [closed]

Ubuntu 12.04... I had fedora a couple of years back and I saw the man pages for the following there... unistd.h, sys/types.h, standard typedefs (suffixed by "_t") etc. I tried this... man unistd ...
0
votes
3answers
58 views

Error: Expression must have class type for size()

The code tries to figure out if two strings have the same pattern. #include <iostream> #include <vector> #include <string> #include <map> #include <sstream> bool ...
1
vote
4answers
93 views

Is converting int to size-t avoiding number overflow?

I have read the following vulnerability report in grep and the associated commit in which all the integer and unsigned integer are replaced by size_t. I have a simple question: is replacing unsigned ...
2
votes
3answers
156 views

size of size_t preprocessor value

I am creating an implementation of a hash table in C for educational purposes. The hash function should return a size_t hash. Since the size of size_t is different in different platforms (and I ...
24
votes
6answers
701 views

Is size_t the word size?

Is size_t the word size of the machine that compiled the code? Parsing with g++, my compiler views size_t as an long unsigned int. Does the compiler internally choose the size of size_t, or is ...
10
votes
3answers
196 views

What type for subtracting 2 size_t's?

Which type in C should be used to represent the difference between two objects' sizes? As size_t is unsigned, something like size_t diff = sizeof (small_struct) - sizeof (big_struct); obviously ...
3
votes
4answers
121 views

How to free size_t from struct

I am trying to free the elements of a struct, which has size_t variables and char. How do free the size_t ones, because I keep getting warnings like [Warning] passing arg 1 of `free' makes pointer ...
1
vote
2answers
113 views

Adding pointers with size_t type value

class CheckPointer { public: CheckPointer(int * mbeg, int * mend) : beg(mbeg), end(mend), curr(mbeg) {} // subscript operator int & operator[] (const size_t pos) { if ...
-2
votes
3answers
200 views

What is size_t? [duplicate]

Possible Duplicate: What is size_t in C? Why does some library functions in C have the return type or their arguments as of size_t data type? If I am not wrong size_t is unsigned int? I ...
0
votes
4answers
155 views

Why is this loop infinite?

I have some code for drawing polygons edges that is supposed to draw, for example, in a triangle with vertices 0, 1, and 2, the edges (0, 1), (1, 2), and (2, 0). I thought I could accomplish this like ...
4
votes
5answers
195 views

Signed vs. unsigned values for counting in a loop

So I have within a program an ordinary for loop through a vector of objects (objects that are of a type I defined, if that is relevant): for(int k = 0; k < objects.size(); k++){ ... } ...and ...
0
votes
3answers
171 views

problems understanding the size_t type and the sizeof operator

void sizeof_test2(); void sizeof_test2() { int array[5]; size_t arr_size = sizeof(array); printf( "sizeof:\n" "array = %d\n" "arr_size = %d\n", sizeof(array), ...
32
votes
7answers
861 views

Can a size_type ever be larger than std::size_t?

Standard containers with an std::allocator have their size_type defined as std::size_t. However, is it possible to have an allocator that allocates objects whose size cannot be represented by a ...
0
votes
5answers
153 views

size_t used as a value in a formula

Here is a short snippet of a function reading lines. How is that possible that it compares bufsize with ((size_t)-1)/2 ? I imagined comparing a variable to eg. int - that is just impossible; to ...
1
vote
1answer
829 views

C size_t and ssize_t negative value

size_t is declared as unsigned int so it can't represent negative value.So there is ssize_t which is the signed type of size_t right? Here's my problem: #include <stdio.h> #include ...
0
votes
2answers
493 views

Conflicting declaration

I have a typedef defined in my code as typdef unsigned int size_t; it is conflicting with stddef's typedef __SIZE_TYPE__ size_t; I'm unsure how to get around this but would still like to keep ...
0
votes
1answer
42 views

size_t Loss of sign (return) (int to unsigned int))

This program counts the length of a string by subtraca warning message -\ My stringLength function returns a size_t that is Is my mistake in the format specifier or how I return my value? ...
0
votes
2answers
350 views

Low and High DWORD => size_t

Programming language: C I have two DWORDs: A low and a high one. I want to convert them both into one variable of type size_t. I have the following code: size_t fileSize = fileSizeHigh; size_t ...
0
votes
2answers
83 views

using size_t difference to copy a portion of a string

I am trying to iterate through a string and copy chunks of information based off of an initial key value and a key value that identifies the end of the chunk of info. However when I try to subtract my ...
-3
votes
2answers
1k views

c printf size_t

My code compiles, though the printf doesn't display anything? If I take out the formatter part of the printf then it works just fine. #include <stdio.h> size_t MyStrlen(const char *s1) { ...
2
votes
2answers
157 views

It there an equivalent to size_t in llvm

Some system libraries like malloc strlen want or return size_t as parameter. What is the right choice in LLVM IR to interact with these functions? Is the selection the task for the compiler? Does ...
0
votes
2answers
2k views

CUDA 2.1 “error: unknown type name 'size_t'”

System: Ubuntu 11.10 x86_64 CUDA: v 2.1 When trying to make an example program like matrixMul I get an extensive amount of errors, most of which are "unknown type name 'size_t'." I've made sure to ...
1
vote
3answers
271 views

Can I allocate more than 65535 bytes according C standards?

malloc defined like below: void *malloc(size_t size); http://pubs.opengroup.org/onlinepubs/009695399/functions/malloc.html size_t definition (stddef.h): size_t: Unsigned integer type of the ...
1
vote
3answers
372 views

converting size_t into long, Is there any disadvantage?

Is there any disadvantage of converting size_t to long? Because, I am writing an program that maintains linked_list in a file. So I traverse to another node based on size_t and I also keep track of ...
3
votes
1answer
238 views

“size_t” as type parameter, cast warning not reproduced

I've been trying to get rid of warnings in some older code (must use MSVC 2005, currently working with a 32 bit build), but have been struggling to get rid of a size_t to unsigned int conversion ...
2
votes
2answers
204 views

Truncation the size of linked list from '__int64' to 'size_t

I successfully wrote a C++ code for radix sort by creating 10 buckets. For the 10 buckets, I created them in this way: struct node{ struct node* next; long value; }; struct node*bucket[10]; ...
1
vote
2answers
242 views

How create a size_t and how count the size?

I create a NSData and use the function - (const void *)bytes; So, it return the bytes in a const void * variable. If I read the memory manually I will find this: 98 F3 00 76 84 //Then a lot of ...
1
vote
2answers
1k views

What is the limit on malloc parameter of type size_t in C? Docs say it has an upper limit of UINT_MAX but I can't go beyond INT_MAX

I want to allocate a 2.9GB char array with database = (char*) malloc((2900 * 1000000 * sizeof(char))); This gives an integer overflow warning and the malloc returns NULL. The malloc parameter is ...
1
vote
1answer
531 views

How can I operate on a size_t and end up with a CGFloat?

To determine the ratio at which to scale an image, I'm using the following code (borrowed from Trevor Harmon's UIImage+Resize): CGFloat horizontalRatio = 600 / CGImageGetWidth(imageRef); CGFloat ...
1
vote
5answers
89 views

Iterating Through All Values from N to 0 inclusive for an Unsigned Value

I have this code that works fine for regular signed integers that I am trying to write an equivalent version that will work with size_t (as in that as of now start and count are ints and i need them ...
7
votes
7answers
291 views

What is the largest value sizeof(T) can yield?

At first one might think std::numeric_limits<size_t>::max(), but if there was an object that huge, could it still offer a one-past-the-end pointer? I guess not. Does that imply the largest value ...
15
votes
3answers
1k views

variables of type size_t and ptrdiff_t

By reading on the posts online related to size_t and ptrdiff_t, I want to confirm the following: if the max size of an array is less than 1/2*(max number represent-able by size_t), I can safely use ...
0
votes
2answers
594 views

Objective-C Runtime: What to put for size & alignment for class_addIvar?

The Objective-C Runtime provides the class_addIvar C function: BOOL class_addIvar(Class cls, const char *name, size_t size, uint8_t alignment, const char *types) What do I put ...
0
votes
2answers
275 views

What determines how much memory can be allocated?

This is a follow-up to my previous question about why size_t is necessary. Given that size_t is guaranteed to be the smallest integer big enough to represent the largest size of a block of memory you ...
9
votes
6answers
503 views

Why is size_t better?

The title is actually a bit misleading, but I wanted to keep it short. I've read about why I should use size_t and I often found statements like this: size_t is guaranteed to be able to express ...
0
votes
3answers
720 views

Casting/converting from size_t to uint8_t in C++?

I'm trying to write some code that uses boost::asio's sockets to send a message from one end (the client) to another (the server). My particular goal right now is to prepend every message being sent ...
3
votes
3answers
292 views

Allocating large amount of memory and usage of size_t?

In my application ,I am allocating memory to store "volume data" which read from stack of bitmap images. I stored the data in a "unsigned char" and ,during allocation, first I try to allocate ...
4
votes
4answers
1k views

Why size_t when int would suffice?

The C standard guarantees that an int is able to store every possible array size. At least, that's what I understand from reading ยง6.5.2.1, subsection 1 (Array subscripting constraints): One of ...
27
votes
3answers
3k views

Difference between size_t and std::size_t

What are the differences between size_t and std::size_t in terms of where they are declared, when they should be used and any other differentiating features?
1
vote
5answers
1k views

size_t to unsigned int (from API function)

I am using the Oracle API to access a database and this API has a function readBuffer(char * buffer, unsigned int size); to which I cannot make any changes. I have a class that uses this API and the ...
3
votes
3answers
5k views

C: cast int to size_t

What is the proper way to convert/cast an int to a size_t in C99 on both 32bit and 64bit linux platforms? Example: int hash(void * key) { //... } int main (int argc, char * argv[]) { size_t ...
6
votes
5answers
2k views

Should I include stddef.h or cstddef?

When I want to use size_t in C++, should I include <stddef.h> or <cstddef>? I have heard several people saying that <cstddef> was a bad idea, and it should be deprecated. Why is ...
2
votes
5answers
437 views

“Efficiency” of passing size_t as an argument

Since size_t can be 32-bit or 64-bit depending on the current system, would it be best to always pass size_t to a function as a reference or const reference so it is always 4 bytes? (if it is 8 bytes ...
5
votes
6answers
2k views

Converting a size_t into an integer (c++)

I've been trying to make a for loop that will iterate based off of the length of a network packet. In the API there exists a variable (size_t) by event.packet->dataLength. I want to iterate from 0 to ...
1
vote
1answer
273 views

Point of size_t [duplicate]

Possible Duplicate: unsigned int vs. size_t When I need to store the size of something (usually stuff allocated with new), I always store it in an unsigned int. Browsing through some code, ...
3
votes
4answers
755 views

Compare with size_t, return int?

I'm writing some code examples from "How to Think Like a Computer Scientist in C++", and this one is about handling playing-card type objects and decks. I'm facing this situation: int ...

1 2