Tagged Questions
The size-t tag has no wiki summary.
51
votes
6answers
19k views
unsigned int vs. size_t
I notice that modern C and C++ code seems to use size_t instead of int/unsigned int pretty much everywhere - from parameters for C string functions to the STL. I am curious as to the reason for this ...
41
votes
7answers
6k views
size_t vs. intptr_t
The C standard guarantees that size_t is a type that can hold any array index. This means that, logically, size_t should be able to hold any pointer type. I've read on some sites that I found on the ...
20
votes
6answers
8k views
Clean code to printf size_t in C++ (or: Nearest equivalent of C99's %z in C++)
I have some C++ code that prints a size_t:
size_t a;
printf("%lu", a);
I'd like this to compile without warnings on both 32- and 64-bit architectures.
If this were C99, I could use printf("%z", ...
17
votes
3answers
617 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?
17
votes
11answers
4k views
When to use std::size_t?
I'm just wondering should I use std::size_t for loops and stuff instead of int?
For instance:
#include <cstdint>
int main()
{
for (std::size_t i = 0; i < 10; ++i)
// std::size_t OK ...
15
votes
8answers
9k views
Does “std::size_t” make sense in C++?
In some code I've inherited, I see frequent use of size_t with the std namespace qualifier. For example:
std::size_t n = sizeof( long );
It compiles and runs fine, of course. But it seems like ...
11
votes
3answers
255 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 ...
11
votes
6answers
2k views
What is size_t in C?
I am getting confused with size_t in C.
I know that it is returned by the sizeof operator.
But what exactly it is? Is it a datatype?
Let's say I have a for loop
int i; or size_t i; //which one ...
10
votes
4answers
245 views
What is a portable method to find the maximum value of size_t?
I'd like to know the maximum value of size_t on the system my program is running.
My first instinct was to use negative 1, like so:
size_t max_size = (size_t)-1;
But I'm guessing there's a better ...
10
votes
9answers
3k views
Cross platform format string for variables of type size_t?
On a cross platform c/c++ project (Win32, Linux, OSX), I need to use the *printf functions to print some variables of type size_t. In some environments size_t's are 8 bytes and on others they are 4. ...
8
votes
6answers
165 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 ...
7
votes
7answers
199 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 ...
6
votes
5answers
382 views
Making size_t and wchar_t portable?
To my understanding the representation of size_t and wchar_t are completely platform/compiler specific. For instance I have read that wchar_t on Linux is now usually 32bit, but on Windows it is 16bit. ...
6
votes
2answers
391 views
How to avoid problems with size_t and int types in 64bit C++ builds?
Today I made a 64bit build of my project for the first time. Basically it compiled, linked and ran ok, except for warnings complaining about incompatibility between the new, 64bit size_t type and the ...
6
votes
5answers
410 views
What should happen to the negation of a size_t (i.e. `-sizeof(struct foo)`))?
I'm dealing with some code at work that includes an expression of the form
-(sizeof(struct foo))
i.e. the negation of a size_t, and I'm unclear on what the C and C++ standards require of compilers ...
5
votes
6answers
441 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 ...
5
votes
1answer
2k views
Platform independent size_t Format specifiers in c?
I want to print out a variable for type size_t in c but it appears that size_t is aliased to different variable types on different architextures. For example on one machine (64-bit) the following code ...
4
votes
1answer
197 views
printf for size_t
Is there any way to give printf a size_t without either casting it first or generating a compiler warning? (I always compile with -Wall.)
4
votes
6answers
919 views
overflows in size_t additions
I like to have my code warning free for VS.NET and GCC, and I like to have my code 64-bit ready.
Today I wrote a little module that deals with in memory buffers and provides access to the data via a ...
3
votes
3answers
119 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 ...
3
votes
4answers
351 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 ...
3
votes
5answers
607 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 ...
3
votes
4answers
325 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 ...
3
votes
2answers
1k views
casting size_t to int to declare size of char array
I am trying to declare a size of a char array and I need to use the value of the variable that is declared as a size_t to declare that size. Is there anyway I can cast the size_t variable to an int ...
3
votes
1answer
446 views
Why does converting from a size_t to an unsigned int give me a warning?
I have the code:
unsigned int length = strlen(somestring);
I'm compiling with the warning level on 4, and it's telling me that "conversion from size_t to unsigned int, possible loss of data" when a ...
3
votes
4answers
9k views
What's sizeof(size_t) on 32-bit vs the various 64-bit data models?
On a 64-bit system, sizeof(unsigned long) depends on the data model implemented by the system, for example, it is 4 bytes on LLP64 (Windows), 8 bytes on LP64 (Linux, etc.). What's sizeof(size_t) ...
2
votes
1answer
32 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 ...
2
votes
5answers
244 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 ...
2
votes
2answers
128 views
Forcing VS2008 to issue a GCC warning similar to “warning: comparison between signed and unsigned integer expressions”
Along the same lines as to what was described in conversion to ‘size_t’ from ‘int’ may change the sign of the result - GCC , C, I would instead like to insure that the warning I receive under GCC ...
2
votes
5answers
287 views
Is size_t only in C++ standard or C standard as well?
Is size_t only in C++ standard or C standard as well?
I cannot find a C header in the "/usr/include" tree that defines size_t.
If it is not in the C std, is GCC just doing some magic to make things ...
2
votes
6answers
6k views
size_t can not be found by g++-4.1 or others on Ubuntu 8.1
This has happened before to me, but I can't remember how I fixed it.
I can't compile some programs here on a new Ubuntu install... Something is awry with my headers.
I have tried g++-4.1 and 4.3 to ...
1
vote
5answers
70 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 ...
1
vote
5answers
291 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 ...
1
vote
2answers
1k 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 ...
1
vote
1answer
158 views
Point of size_t [closed]
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, ...
1
vote
2answers
155 views
Strange behaviour with for loop and size_t
size_t size = sizeof(int);
printf("%d\n", size);
int i;
for (i = 0; i < size; i++) {
printf("%d ", i);
}
The above code (using gcc) outptus
4
0 1 2 3
size_t size = sizeof(int);
...
1
vote
5answers
1k views
declaring the largest array using size_t
i wanted to declare a very large array. i found that the max size of an array is size_t, which is defined as UINT_MAX
so i wrote the code like this
int arr[UINT_MAX];
when i compile this, it says ...
1
vote
3answers
534 views
Should I always include stddef.h if I use sizeof and size_t
if I'm using the sizeof operator and making use of size_t in my code, do I have necessarily have to include stddef.h? I haven't included stddef.h, and my code compiles without warning with both ...
1
vote
4answers
257 views
Pimpl idiom: What size_type to use if implementation is unknown?
I have a class that holds an array of elements, and I want to give it a GetSize member function. But what return type should I give that function?
I'm using the pimpl idiom, and so in the header ...
1
vote
3answers
756 views
1
vote
5answers
758 views
64 bit portability issues
All this originated from me poking at a compiler warning message (C4267) when attempting the following line:
const unsigned int nSize = m_vecSomeVec.size();
size() returns a size_t which although ...
0
votes
0answers
45 views
Iterating in reverse using size_t [closed]
Possible Duplicate:
What's the best way to do a reverse 'for' loop with an unsigned index?
In C (and C++), how can you iterate in reverse with using size_t? Doing
for (z = ...
0
votes
2answers
91 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
90 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 ...
0
votes
3answers
105 views
Casting/converting rom 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 ...
0
votes
8answers
560 views
Is size_t portable?
gcc 4.4.1
C99
I am using size_t and size_t is a unsigned int. However, that depends if you are running 32 bit or 64 bit.
I will be using size_t to store the size of a buffer.
So I don't think this ...
0
votes
2answers
304 views
Issue regarding size_t
If you go in my post history you'll see that i'm trying to develop an interpreter for a language that i'm working on. I want to use *size_t* using two different codes, but they all return nothing.
...