summaryrefslogtreecommitdiff
path: root/static/freebsd/man7/sizeof.7 3.html
blob: 5083f3cb2b93c545d06d105129cf3846090329a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
<table class="head">
  <tr>
    <td class="head-ltitle">sizeof(7)</td>
    <td class="head-vol">Miscellaneous Information Manual</td>
    <td class="head-rtitle">sizeof(7)</td>
  </tr>
</table>
<div class="manual-text">
<section class="Sh">
<h1 class="Sh" id="NAME"><a class="permalink" href="#NAME">NAME</a></h1>
<p class="Pp"><code class="Nm">sizeof</code> operator &#x2014;
    <span class="Nd">yield the storage size of the given operand</span></p>
</section>
<section class="Sh">
<h1 class="Sh" id="SYNTAX"><a class="permalink" href="#SYNTAX">SYNTAX</a></h1>
<p class="Pp"><code class="Nm">sizeof</code> (<var class="Vt">type</var>)
  <br/>
  <code class="Nm">sizeof</code> <var class="Vt">expression</var></p>
</section>
<section class="Sh">
<h1 class="Sh" id="DESCRIPTION"><a class="permalink" href="#DESCRIPTION">DESCRIPTION</a></h1>
<p class="Pp">The <code class="Nm">sizeof</code> operator yields the size of its
    operand. The <code class="Nm">sizeof</code> operator cannot be applied to
    incomplete types and expressions with incomplete types (e.g.
    <var class="Vt">void</var>, or forward-defined <var class="Vt">struct foo
    ),</var> and function types.</p>
<p class="Pp">The size of primitive (non-derived) data types in C may differ
    across hardware platforms and implementations. They are defined by
    corresponding Application Binary Interface (ABI) specifications, see
    <a class="Xr">arch(7)</a> for details about ABI used by
    <span class="Ux">FreeBSD</span>. It may be necessary or useful for a program
    to be able to determine the storage size of a data type or object to account
    for the platform specifics.</p>
<p class="Pp" id="char">The unary <code class="Nm">sizeof</code> operator yields
    the storage size of an expression or data type in
    <a class="permalink" href="#char"><i class="Em">char sized units</i></a> (C
    language bytes). As a result,
    &#x2018;<code class="Li">sizeof(char)</code>&#x2019; is always guaranteed to
    be 1. (The number of bits per <var class="Vt">char</var> is given by the
    <code class="Dv">CHAR_BIT</code> definition in the
    <code class="In">&lt;<a class="In">limits.h</a>&gt;</code> header; many
    systems also provide the &quot;number of bits per byte&quot; definition as
    <code class="Dv">NBBY</code> in the
    <code class="In">&lt;<a class="In">sys/param.h</a>&gt;</code> header.)</p>
</section>
<section class="Sh">
<h1 class="Sh" id="EXAMPLES"><a class="permalink" href="#EXAMPLES">EXAMPLES</a></h1>
<p class="Pp">Different platforms may use different data models. For example,
    systems on which integers, longs, and pointers are using 32 bits (e.g.,
    i386) are referred to as using the &quot;ILP32&quot; data model, systems
    using 64 bit longs and pointers (e.g., amd64 / x86_64) as the
    &quot;LP64&quot; data model.</p>
<p class="Pp">The following examples illustrate the possible results of calling
    <code class="Nm">sizeof</code> on an ILP32 vs. an LP64 system:</p>
<p class="Pp">When applied to a simple variable or data type,
    <code class="Nm">sizeof</code> returns the storage size of the data type of
    the object:</p>
<table class="Bl-column Bd-indent">
  <tr id="Object">
    <td><a class="permalink" href="#Object"><b class="Sy">Object or
      type</b></a></td>
    <td><b class="Sy">Result (ILP32)</b></td>
    <td><b class="Sy">Result (LP64)</b></td>
  </tr>
  <tr id="sizeof(char)">
    <td><a class="permalink" href="#sizeof(char)"><code class="Li">sizeof(char)</code></a></td>
    <td>1</td>
    <td>1</td>
  </tr>
  <tr id="sizeof(int)">
    <td><a class="permalink" href="#sizeof(int)"><code class="Li">sizeof(int)</code></a></td>
    <td>4</td>
    <td>4</td>
  </tr>
  <tr id="sizeof(long)">
    <td><a class="permalink" href="#sizeof(long)"><code class="Li">sizeof(long)</code></a></td>
    <td>4</td>
    <td>8</td>
  </tr>
  <tr id="sizeof(float)">
    <td><a class="permalink" href="#sizeof(float)"><code class="Li">sizeof(float)</code></a></td>
    <td>4</td>
    <td>4</td>
  </tr>
  <tr id="sizeof(double)">
    <td><a class="permalink" href="#sizeof(double)"><code class="Li">sizeof(double)</code></a></td>
    <td>8</td>
    <td>8</td>
  </tr>
  <tr id="sizeof(char">
    <td><a class="permalink" href="#sizeof(char"><code class="Li">sizeof(char
      *)</code></a></td>
    <td>4</td>
    <td>8</td>
  </tr>
</table>
<p class="Pp">For initialized data or uninitialized arrays of a fixed size known
    at compile time, <code class="Nm">sizeof</code> will return the correct
    storage size:</p>
<div class="Bd Pp Bd-indent Li">
<pre>#define DATA &quot;1234567890&quot;
char buf1[] = &quot;abc&quot;;
char buf2[1024];
char buf3[1024] = { 'a', 'b', 'c' };</pre>
</div>
<table class="Bl-column Bd-indent">
  <tr id="Object~2">
    <td><a class="permalink" href="#Object~2"><b class="Sy">Object or
      type</b></a></td>
    <td><a class="permalink" href="#Result"><b class="Sy" id="Result">Result</b></a></td>
  </tr>
  <tr id="sizeof(DATA)">
    <td><a class="permalink" href="#sizeof(DATA)"><code class="Li">sizeof(DATA)</code></a></td>
    <td>11</td>
  </tr>
  <tr id="sizeof(buf1)">
    <td><a class="permalink" href="#sizeof(buf1)"><code class="Li">sizeof(buf1)</code></a></td>
    <td>4</td>
  </tr>
  <tr id="sizeof(buf2)">
    <td><a class="permalink" href="#sizeof(buf2)"><code class="Li">sizeof(buf2)</code></a></td>
    <td>1024</td>
  </tr>
  <tr id="sizeof(buf3)">
    <td><a class="permalink" href="#sizeof(buf3)"><code class="Li">sizeof(buf3)</code></a></td>
    <td>1024</td>
  </tr>
</table>
<p class="Pp">The examples above are the same for ILP32 and LP64 platforms, as
    they are based on character units.</p>
<p class="Pp">When applied to a struct or union, <code class="Nm">sizeof</code>
    returns the total number of bytes in the object, including any internal or
    trailing padding used to align the object in memory. This result may thus be
    larger than if the storage size of each individual member had been
  added:</p>
<div class="Bd Pp Bd-indent Li">
<pre>struct s1 {
        char c;
};

struct s2 {
        char *s;
        int i;
};

struct s3 {
        char *s;
        int i;
        int j;
};

struct s4 {
	int i;
	uint64_t i64;
};

struct s5 {
        struct s1 a;
        struct s2 b;
        struct s3 c;
        struct s4 d;
};</pre>
</div>
<table class="Bl-column Bd-indent">
  <tr id="Object~3">
    <td><a class="permalink" href="#Object~3"><b class="Sy">Object or
      type</b></a></td>
    <td><b class="Sy">Result (ILP32)</b></td>
    <td><b class="Sy">Result (LP64)</b></td>
  </tr>
  <tr id="sizeof(struct">
    <td><a class="permalink" href="#sizeof(struct"><code class="Li">sizeof(struct
      s1)</code></a></td>
    <td>1</td>
    <td>1</td>
  </tr>
  <tr id="sizeof(struct~2">
    <td><a class="permalink" href="#sizeof(struct~2"><code class="Li">sizeof(struct
      s2)</code></a></td>
    <td>8</td>
    <td>16</td>
  </tr>
  <tr id="sizeof(struct~3">
    <td><a class="permalink" href="#sizeof(struct~3"><code class="Li">sizeof(struct
      s3)</code></a></td>
    <td>12</td>
    <td>16</td>
  </tr>
  <tr id="sizeof(struct~4">
    <td><a class="permalink" href="#sizeof(struct~4"><code class="Li">sizeof(struct
      s4)</code></a></td>
    <td>12</td>
    <td>16</td>
  </tr>
  <tr id="sizeof(struct~5">
    <td><a class="permalink" href="#sizeof(struct~5"><code class="Li">sizeof(struct
      s5)</code></a></td>
    <td>36</td>
    <td>56</td>
  </tr>
</table>
<p class="Pp" id="without">When applied to a struct containing a flexible array
    member, <code class="Nm">sizeof</code> returns the size of the struct
    <a class="permalink" href="#without"><i class="Em">without</i></a> the
    array, although again possibly including any padding the compiler deemed
    appropriate:</p>
<div class="Bd Pp Bd-indent Li">
<pre>struct flex {
        char c;
        long b;
        char array[];
}</pre>
</div>
<table class="Bl-column Bd-indent">
  <tr id="Object~4">
    <td><a class="permalink" href="#Object~4"><b class="Sy">Object or
      type</b></a></td>
    <td><b class="Sy">Result (ILP32)</b></td>
    <td><b class="Sy">Result (LP64)</b></td>
  </tr>
  <tr id="sizeof(struct~6">
    <td><a class="permalink" href="#sizeof(struct~6"><code class="Li">sizeof(struct
      flex)</code></a></td>
    <td>8</td>
    <td>16</td>
  </tr>
</table>
<p class="Pp">One of the more common uses of the <code class="Nm">sizeof</code>
    operator is to determine the correct amount of memory to allocate:</p>
<div class="Bd Pp Bd-indent Li">
<pre>int *nums = calloc(512, sizeof(int));</pre>
</div>
<p class="Pp">The <code class="Nm">sizeof</code> operator can be used to
    calculate the number of elements in an array by dividing the size of the
    array by the size of one of its elements:</p>
<div class="Bd Pp Bd-indent Li">
<pre>int nums[] = { 1, 2, 3, 4, 5 };
const int howmany = sizeof(nums) / sizeof(nums[0]);</pre>
</div>
<p class="Pp">Many systems provide this shortcut as the macro
    <code class="Dv">ntimes()</code> via the
    <code class="In">&lt;<a class="In">sys/param.h</a>&gt;</code> header
  file.</p>
</section>
<section class="Sh">
<h1 class="Sh" id="RESULT"><a class="permalink" href="#RESULT">RESULT</a></h1>
<p class="Pp">The result of the <code class="Nm">sizeof</code> operator is an
    unsigned integer type, defined in the <code class="Dv">stddef.h</code>
    header as a <var class="Vt">size_t</var>.</p>
</section>
<section class="Sh">
<h1 class="Sh" id="NOTES"><a class="permalink" href="#NOTES">NOTES</a></h1>
<p class="Pp">It is a common mistake to apply <code class="Nm">sizeof</code> to
    a dynamically allocated array:</p>
<div class="Bd Pp Bd-indent Li">
<pre>char *buf;
if ((buf = malloc(BUFSIZ)) == NULL) {
        perror(&quot;malloc&quot;);
}
/* Warning: wrong! */
(void)strncat(buf, input, sizeof(buf) - 1);</pre>
</div>
<p class="Pp">In that case, the operator will return the storage size of the
    pointer ( &#x2018;<code class="Li">sizeof(char *)</code>&#x2019; ), not the
    allocated memory.</p>
<p class="Pp" id="does"><code class="Nm">sizeof</code> determines the
    <code class="Ev">size</code> of the result of the expression given, but
    <a class="permalink" href="#does"><i class="Em">does not</i></a> evaluate
    the expression:</p>
<div class="Bd Pp Bd-indent Li">
<pre>int a = 42;
printf(&quot;%ld - %d\n&quot;, sizeof(a = 10), a); /* Result: &quot;4 - 42&quot; */</pre>
</div>
<p class="Pp">Since it is evaluated by the compiler and not the preprocessor,
    the <code class="Nm">sizeof</code> operator cannot be used in a preprocessor
    expression.</p>
</section>
<section class="Sh">
<h1 class="Sh" id="SEE_ALSO"><a class="permalink" href="#SEE_ALSO">SEE
  ALSO</a></h1>
<p class="Pp"><a class="Xr">arch(7)</a>, <a class="Xr">operator(7)</a></p>
</section>
<section class="Sh">
<h1 class="Sh" id="STANDARDS"><a class="permalink" href="#STANDARDS">STANDARDS</a></h1>
<p class="Pp">The <code class="Nm">sizeof</code> operator conforms to
    <span class="St">ANSI X3.159-1989
  (&#x201C;ANSI&#x00A0;C89&#x201D;)</span>.</p>
<p class="Pp">Handling of flexible array members in structures conforms to
    <span class="St">ISO/IEC 9899:1999
  (&#x201C;ISO&#x00A0;C99&#x201D;)</span>.</p>
</section>
<section class="Sh">
<h1 class="Sh" id="AUTHORS"><a class="permalink" href="#AUTHORS">AUTHORS</a></h1>
<p class="Pp">This manual page was written by <span class="An">Jan
    Schaumann</span>
    &lt;<a class="Mt" href="mailto:jschauma@netmeister.org">jschauma@netmeister.org</a>&gt;.</p>
</section>
</div>
<table class="foot">
  <tr>
    <td class="foot-date">December 12, 2022</td>
    <td class="foot-os">FreeBSD 15.0</td>
  </tr>
</table>