Symbol: HN_DIVISOR_1000
bin/dd/misc.c
114
HN_DECIMAL | HN_DIVISOR_1000);
bin/dd/misc.c
118
HN_AUTOSCALE, HN_DECIMAL | HN_DIVISOR_1000);
bin/df/df.c
420
flags |= HN_DIVISOR_1000;
bin/df/df.c
438
flags = HN_NOSPACE | HN_DECIMAL | HN_DIVISOR_1000;
lib/libdpv/dprompt.c
585
HN_AUTOSCALE, HN_NOSPACE | HN_DIVISOR_1000);
lib/libutil/humanize_number.c
69
if ((flags & HN_DIVISOR_1000) && (flags & HN_IEC_PREFIXES))
lib/libutil/humanize_number.c
94
if (flags & HN_DIVISOR_1000) {
lib/libutil/tests/humanize_number_test.c
100
{ 3, "1 M", (int64_t)500*1000L, HN_DIVISOR_1000, 2, 4 },
lib/libutil/tests/humanize_number_test.c
101
{ 3, "0 G", (int64_t)500*1000L, HN_DIVISOR_1000, 3, 4 },
lib/libutil/tests/humanize_number_test.c
102
{ 3, "1 G", (int64_t)500*1000*1000L, HN_DIVISOR_1000, 3, 4 },
lib/libutil/tests/humanize_number_test.c
103
{ 3, "0 T", (int64_t)500*1000*1000L, HN_DIVISOR_1000, 4, 4 },
lib/libutil/tests/humanize_number_test.c
104
{ 3, "1 T", (int64_t)500*1000*1000*1000L, HN_DIVISOR_1000, 4, 4 },
lib/libutil/tests/humanize_number_test.c
105
{ 3, "0 P", (int64_t)500*1000*1000*1000L, HN_DIVISOR_1000, 5, 4 },
lib/libutil/tests/humanize_number_test.c
106
{ 3, "1 P", (int64_t)500*1000*1000*1000*1000L, HN_DIVISOR_1000, 5, 4 },
lib/libutil/tests/humanize_number_test.c
107
{ 3, "0 E", (int64_t)500*1000*1000*1000*1000L, HN_DIVISOR_1000, 6, 4 },
lib/libutil/tests/humanize_number_test.c
108
{ 3, "1 E", (int64_t)500*1000*1000*1000*1000*1000L, HN_DIVISOR_1000, 6, 4 },
lib/libutil/tests/humanize_number_test.c
109
{ 3, "0 k", (int64_t)1L, HN_DIVISOR_1000, 1, 4 },
lib/libutil/tests/humanize_number_test.c
110
{ 3, "2 k", (int64_t)1500L, HN_DIVISOR_1000, 1, 4 },
lib/libutil/tests/humanize_number_test.c
111
{ 3, "0 M", (int64_t)1500L, HN_DIVISOR_1000, 2, 4 },
lib/libutil/tests/humanize_number_test.c
112
{ 3, "2 M", (int64_t)1500*1000L, HN_DIVISOR_1000, 2, 4 },
lib/libutil/tests/humanize_number_test.c
113
{ 3, "0 G", (int64_t)1500*1000L, HN_DIVISOR_1000, 3, 4 },
lib/libutil/tests/humanize_number_test.c
114
{ 3, "2 G", (int64_t)1500*1000*1000L, HN_DIVISOR_1000, 3, 4 },
lib/libutil/tests/humanize_number_test.c
115
{ 3, "0 T", (int64_t)1500*1000*1000L, HN_DIVISOR_1000, 4, 4 },
lib/libutil/tests/humanize_number_test.c
116
{ 3, "2 T", (int64_t)1500*1000*1000*1000L, HN_DIVISOR_1000, 4, 4 },
lib/libutil/tests/humanize_number_test.c
117
{ 3, "0 P", (int64_t)1500*1000*1000*1000L, HN_DIVISOR_1000, 5, 4 },
lib/libutil/tests/humanize_number_test.c
118
{ 3, "2 P", (int64_t)1500*1000*1000*1000*1000L, HN_DIVISOR_1000, 5, 4 },
lib/libutil/tests/humanize_number_test.c
119
{ 3, "0 E", (int64_t)1500*1000*1000*1000*1000L, HN_DIVISOR_1000, 6, 4 },
lib/libutil/tests/humanize_number_test.c
120
{ 3, "2 E", (int64_t)1500*1000*1000*1000*1000*1000L, HN_DIVISOR_1000, 6, 4 },
lib/libutil/tests/humanize_number_test.c
153
{ -1, "", (int64_t)1L, HN_DIVISOR_1000, 7, 4 },
lib/libutil/tests/humanize_number_test.c
155
{ -1, "", (int64_t)1L, HN_DIVISOR_1000, 1000, 4 },
lib/libutil/tests/humanize_number_test.c
157
{ -1, "", (int64_t)0L, HN_DIVISOR_1000, 1000*1000, 4 },
lib/libutil/tests/humanize_number_test.c
159
{ -1, "", (int64_t)0L, HN_DIVISOR_1000, INT_MAX, 4 },
lib/libutil/tests/humanize_number_test.c
166
{ -1, "", (int64_t)1L, HN_DIVISOR_1000, -1, 4 },
lib/libutil/tests/humanize_number_test.c
168
{ -1, "", (int64_t)1L, HN_DIVISOR_1000, -1000, 4 },
lib/libutil/tests/humanize_number_test.c
173
{ -1, "", (int64_t)1L, HN_DIVISOR_1000, -__INT_MAX, 4 },
lib/libutil/tests/humanize_number_test.c
178
{ 2, "0 ", (int64_t)0L, HN_DIVISOR_1000, 0, 4 },
lib/libutil/tests/humanize_number_test.c
179
{ 2, "1 ", (int64_t)1L, HN_DIVISOR_1000, 0, 4 },
lib/libutil/tests/humanize_number_test.c
180
{ 3, "10 ", (int64_t)10L, HN_DIVISOR_1000, 0, 4 },
lib/libutil/tests/humanize_number_test.c
181
{ 3, "0 M", (int64_t)150L, HN_DIVISOR_1000, HN_NOSPACE, 4 },
lib/libutil/tests/humanize_number_test.c
182
{ 3, "0 M", (int64_t)500L, HN_DIVISOR_1000, HN_NOSPACE, 4 },
lib/libutil/tests/humanize_number_test.c
183
{ 3, "0 M", (int64_t)999L, HN_DIVISOR_1000, HN_NOSPACE, 4 },
lib/libutil/tests/humanize_number_test.c
184
{ 4, "150", (int64_t)150L, HN_DIVISOR_1000, 0, 4 },
lib/libutil/tests/humanize_number_test.c
185
{ 4, "500", (int64_t)500L, HN_DIVISOR_1000, 0, 4 },
lib/libutil/tests/humanize_number_test.c
186
{ 4, "999", (int64_t)999L, HN_DIVISOR_1000, 0, 4 },
lib/libutil/tests/humanize_number_test.c
187
{ 5, "100", (int64_t)1000L, HN_DIVISOR_1000, 0, 4 },
lib/libutil/tests/humanize_number_test.c
188
{ 5, "150", (int64_t)1500L, HN_DIVISOR_1000, 0, 4 },
lib/libutil/tests/humanize_number_test.c
189
{ 7, "500", (int64_t)500*1000L, HN_DIVISOR_1000, 0, 4 },
lib/libutil/tests/humanize_number_test.c
190
{ 8, "150", (int64_t)1500*1000L, HN_DIVISOR_1000, 0, 4 },
lib/libutil/tests/humanize_number_test.c
191
{ 10, "500", (int64_t)500*1000*1000L, HN_DIVISOR_1000, 0, 4 },
lib/libutil/tests/humanize_number_test.c
192
{ 11, "150", (int64_t)1500*1000*1000L, HN_DIVISOR_1000, 0, 4 },
lib/libutil/tests/humanize_number_test.c
232
{ 3, "9 E", INT64_MAX, HN_DIVISOR_1000, 6, 6 },
lib/libutil/tests/humanize_number_test.c
233
{ 4, "-9 E", -INT64_MAX, HN_DIVISOR_1000, 6, 6 },
lib/libutil/tests/humanize_number_test.c
234
{ 3, "0 E", (int64_t)82*1024*1024*1024*1024*1024L, HN_DIVISOR_1000, 6, 6 },
lib/libutil/tests/humanize_number_test.c
235
{ 3, "0 E", -(int64_t)82*1024*1024*1024*1024*1024L, HN_DIVISOR_1000, 6, 6 },
lib/libutil/tests/humanize_number_test.c
236
{ 3, "0 E", (int64_t)82*1024*1024*1024*1024*1024L, HN_DIVISOR_1000, 6, 6 },
lib/libutil/tests/humanize_number_test.c
237
{ 3, "0 E", -(int64_t)82*1024*1024*1024*1024*1024L, HN_DIVISOR_1000, 6, 6 },
lib/libutil/tests/humanize_number_test.c
238
{ 4, "92 P", (int64_t)82*1024*1024*1024*1024*1024L, HN_DIVISOR_1000, 5, 6 },
lib/libutil/tests/humanize_number_test.c
239
{ 5, "-92 P", -(int64_t)82*1024*1024*1024*1024*1024L, HN_DIVISOR_1000, 5, 6 },
lib/libutil/tests/humanize_number_test.c
240
{ 4, "91 P", (int64_t)81*1024*1024*1024*1024*1024L, HN_DIVISOR_1000, 5, 6 },
lib/libutil/tests/humanize_number_test.c
241
{ 5, "-91 P", -(int64_t)81*1024*1024*1024*1024*1024L, HN_DIVISOR_1000, 5, 6 },
lib/libutil/tests/humanize_number_test.c
253
{ 3, "9 E", INT64_MAX, HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
254
{ 4, "-9 E", -INT64_MAX, HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
255
{ 4, "92 P", (int64_t)82*1024*1024*1024*1024*1024L, HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
256
{ 5, "-92 P", -(int64_t)82*1024*1024*1024*1024*1024L, HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
257
{ 4, "91 P", (int64_t)81*1024*1024*1024*1024*1024L, HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
258
{ 5, "-91 P", -(int64_t)81*1024*1024*1024*1024*1024L, HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
272
{ -1, "", INT64_MAX, HN_DIVISOR_1000, 0, 6 },
lib/libutil/tests/humanize_number_test.c
273
{ 21, "-9223", -INT64_MAX, HN_DIVISOR_1000, 0, 6 },
lib/libutil/tests/humanize_number_test.c
274
{ 19, "10358", (int64_t)92*1024*1024*1024*1024*1024L, HN_DIVISOR_1000, 0, 6 },
lib/libutil/tests/humanize_number_test.c
275
{ 20, "-1035", -(int64_t)92*1024*1024*1024*1024*1024L, HN_DIVISOR_1000, 0, 6 },
lib/libutil/tests/humanize_number_test.c
276
{ 18, "92323", (int64_t)82*1024*1024*1024*1024*1024L, HN_DIVISOR_1000, 0, 6 },
lib/libutil/tests/humanize_number_test.c
277
{ 19, "-9232", -(int64_t)82*1024*1024*1024*1024*1024L, HN_DIVISOR_1000, 0, 6 },
lib/libutil/tests/humanize_number_test.c
279
{ 18, "91197", (int64_t)81*1024*1024*1024*1024*1024L, HN_DIVISOR_1000, 0, 6 },
lib/libutil/tests/humanize_number_test.c
280
{ 19, "-9119", -(int64_t)81*1024*1024*1024*1024*1024L, HN_DIVISOR_1000, 0, 6 },
lib/libutil/tests/humanize_number_test.c
290
{ 5, "500 k", (int64_t)500*1000L, HN_DECIMAL|HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
291
{ 5, "994 k", (int64_t)994*1000L, HN_DECIMAL|HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
292
{ 5, "995 k", (int64_t)995*1000L, HN_DECIMAL|HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
293
{ 5, "999 k", (int64_t)999*1000L, HN_DECIMAL|HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
294
{ 5, "1.0 M", (int64_t)1000*1000L, HN_DECIMAL|HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
295
{ 5, "1.5 M", (int64_t)1500*1000L, HN_DECIMAL|HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
296
{ 5, "1.9 M", (int64_t)1949*1000L, HN_DECIMAL|HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
297
{ 5, "2.0 M", (int64_t)1950*1000L, HN_DECIMAL|HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
298
{ 5, "9.9 M", (int64_t)9949*1000L, HN_DECIMAL|HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
299
{ 4, "10 M", (int64_t)9950*1000L, HN_DECIMAL|HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
300
{ 5, "500 M", (int64_t)500*1000*1000L, HN_DECIMAL|HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
301
{ 5, "994 M", (int64_t)994*1000*1000L, HN_DECIMAL|HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
302
{ 5, "995 M", (int64_t)995*1000*1000L, HN_DECIMAL|HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
303
{ 5, "999 M", (int64_t)999*1000*1000L, HN_DECIMAL|HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
331
{ 6, "-1.5 ", -(int64_t)1500*1000L, HN_DECIMAL|HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
332
{ 6, "-1.9 ", -(int64_t)1949*1000L, HN_DECIMAL|HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
333
{ 6, "-9.9 ", -(int64_t)9949*1000L, HN_DECIMAL|HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
340
{ 5, "500 P", (int64_t)500*1000*1000*1000*1000*1000L, HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
341
{ 5, "1.9 E", (int64_t)1949*1000*1000*1000*1000*1000L, HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
342
{ 5, "8.9 E", (int64_t)8949*1000*1000*1000*1000*1000L, HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
343
{ 5, "9.2 E", INT64_MAX, HN_DECIMAL|HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
345
{ 6, "-9.2 ", -INT64_MAX, HN_DECIMAL|HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
346
{ 6, "-8.9 ", -(int64_t)8949*1000*1000*1000*1000*1000L, HN_DECIMAL|HN_DIVISOR_1000, HN_AUTOSCALE, 6 },
lib/libutil/tests/humanize_number_test.c
354
{ 5, "500 k", (int64_t)500*1000L, HN_DECIMAL|HN_DIVISOR_1000, 1, 6 },
lib/libutil/tests/humanize_number_test.c
355
{ 5, "0.5 M", (int64_t)500*1000L, HN_DECIMAL|HN_DIVISOR_1000, 2, 6 },
lib/libutil/tests/humanize_number_test.c
356
{ 5, "949 k", (int64_t)949*1000L, HN_DECIMAL|HN_DIVISOR_1000, 1, 6 },
lib/libutil/tests/humanize_number_test.c
357
{ 5, "0.9 M", (int64_t)949*1000L, HN_DECIMAL|HN_DIVISOR_1000, 2, 6 },
lib/libutil/tests/humanize_number_test.c
358
{ 5, "950 k", (int64_t)950*1000L, HN_DECIMAL|HN_DIVISOR_1000, 1, 6 },
lib/libutil/tests/humanize_number_test.c
359
{ 5, "1.0 M", (int64_t)950*1000L, HN_DECIMAL|HN_DIVISOR_1000, 2, 6 },
lib/libutil/tests/humanize_number_test.c
360
{ 5, "999 k", (int64_t)999*1000L, HN_DECIMAL|HN_DIVISOR_1000, 1, 6 },
lib/libutil/tests/humanize_number_test.c
361
{ 5, "1.0 M", (int64_t)999*1000L, HN_DECIMAL|HN_DIVISOR_1000, 2, 6 },
lib/libutil/tests/humanize_number_test.c
362
{ 5, "1.5 M", (int64_t)1500*1000L, HN_DECIMAL|HN_DIVISOR_1000, 2, 6 },
lib/libutil/tests/humanize_number_test.c
363
{ 5, "1.9 M", (int64_t)1949*1000L, HN_DECIMAL|HN_DIVISOR_1000, 2, 6 },
lib/libutil/tests/humanize_number_test.c
364
{ 5, "2.0 M", (int64_t)1950*1000L, HN_DECIMAL|HN_DIVISOR_1000, 2, 6 },
lib/libutil/tests/humanize_number_test.c
365
{ 5, "9.9 M", (int64_t)9949*1000L, HN_DECIMAL|HN_DIVISOR_1000, 2, 6 },
lib/libutil/tests/humanize_number_test.c
366
{ 4, "10 M", (int64_t)9950*1000L, HN_DECIMAL|HN_DIVISOR_1000, 2, 6 },
lib/libutil/tests/humanize_number_test.c
367
{ 5, "500 M", (int64_t)500*1000*1000L, HN_DECIMAL|HN_DIVISOR_1000, 2, 6 },
lib/libutil/tests/humanize_number_test.c
368
{ 5, "0.5 G", (int64_t)500*1000*1000L, HN_DECIMAL|HN_DIVISOR_1000, 3, 6 },
lib/libutil/tests/humanize_number_test.c
369
{ 5, "999 M", (int64_t)999*1000*1000L, HN_DECIMAL|HN_DIVISOR_1000, 2, 6 },
lib/libutil/tests/humanize_number_test.c
370
{ 5, "1.0 G", (int64_t)999*1000*1000L, HN_DECIMAL|HN_DIVISOR_1000, 3, 6 },
lib/libutil/tests/humanize_number_test.c
372
{ 5, "500 P", (int64_t)500*1000*1000*1000*1000*1000L, HN_DIVISOR_1000, 5, 6 },
lib/libutil/tests/humanize_number_test.c
373
{ 5, "1.0 E", (int64_t)500*1000*1000*1000*1000*1000L, HN_DIVISOR_1000, 6, 6 },
lib/libutil/tests/humanize_number_test.c
374
{ 5, "1.9 E", (int64_t)1949*1000*1000*1000*1000*1000L, HN_DIVISOR_1000, 6, 6 },
lib/libutil/tests/humanize_number_test.c
375
{ 5, "8.9 E", (int64_t)8949*1000*1000*1000*1000*1000L, HN_DIVISOR_1000, 6, 6 },
lib/libutil/tests/humanize_number_test.c
376
{ 5, "9.2 E", INT64_MAX, HN_DECIMAL|HN_DIVISOR_1000, 6, 6 },
lib/libutil/tests/humanize_number_test.c
444
{ HN_DIVISOR_1000, "HN_DIVISOR_1000" },
lib/libutil/tests/humanize_number_test.c
53
{ 2, "0 ", (int64_t)0L, HN_DIVISOR_1000, HN_AUTOSCALE, 4 },
lib/libutil/tests/humanize_number_test.c
54
{ 3, "1 k", (int64_t)500L, HN_DIVISOR_1000, HN_AUTOSCALE, 4 },
lib/libutil/tests/humanize_number_test.c
55
{ 3, "1 M", (int64_t)500*1000L, HN_DIVISOR_1000, HN_AUTOSCALE, 4 },
lib/libutil/tests/humanize_number_test.c
56
{ 3, "1 G", (int64_t)500*1000*1000L, HN_DIVISOR_1000, HN_AUTOSCALE, 4 },
lib/libutil/tests/humanize_number_test.c
57
{ 3, "1 T", (int64_t)500*1000*1000*1000L, HN_DIVISOR_1000, HN_AUTOSCALE, 4 },
lib/libutil/tests/humanize_number_test.c
58
{ 3, "1 P", (int64_t)500*1000*1000*1000*1000L, HN_DIVISOR_1000, HN_AUTOSCALE, 4 },
lib/libutil/tests/humanize_number_test.c
59
{ 3, "1 E", (int64_t)500*1000*1000*1000*1000*1000L, HN_DIVISOR_1000, HN_AUTOSCALE, 4 },
lib/libutil/tests/humanize_number_test.c
60
{ 2, "1 ", (int64_t)1L, HN_DIVISOR_1000, HN_AUTOSCALE, 4 },
lib/libutil/tests/humanize_number_test.c
61
{ 3, "2 k", (int64_t)1500L, HN_DIVISOR_1000, HN_AUTOSCALE, 4 },
lib/libutil/tests/humanize_number_test.c
62
{ 3, "2 M", (int64_t)1500*1000L, HN_DIVISOR_1000, HN_AUTOSCALE, 4 },
lib/libutil/tests/humanize_number_test.c
63
{ 3, "2 G", (int64_t)1500*1000*1000L, HN_DIVISOR_1000, HN_AUTOSCALE, 4 },
lib/libutil/tests/humanize_number_test.c
64
{ 3, "2 T", (int64_t)1500*1000*1000*1000L, HN_DIVISOR_1000, HN_AUTOSCALE, 4 },
lib/libutil/tests/humanize_number_test.c
65
{ 3, "2 P", (int64_t)1500*1000*1000*1000*1000L, HN_DIVISOR_1000, HN_AUTOSCALE, 4 },
lib/libutil/tests/humanize_number_test.c
66
{ 3, "2 E", (int64_t)1500*1000*1000*1000*1000*1000L, HN_DIVISOR_1000, HN_AUTOSCALE, 4 },
lib/libutil/tests/humanize_number_test.c
85
{ 3, "0 M", (int64_t)500*1000L-1, HN_DIVISOR_1000, HN_AUTOSCALE, 4 },
lib/libutil/tests/humanize_number_test.c
86
{ 3, "1 M", (int64_t)500*1000L, HN_DIVISOR_1000, HN_AUTOSCALE, 4 },
lib/libutil/tests/humanize_number_test.c
87
{ 3, "1 M", (int64_t)1000*1000L + 500*1000L-1, HN_DIVISOR_1000, HN_AUTOSCALE, 4 },
lib/libutil/tests/humanize_number_test.c
88
{ 3, "2 M", (int64_t)1000*1000L + 500*1000L, HN_DIVISOR_1000, HN_AUTOSCALE, 4 },
lib/libutil/tests/humanize_number_test.c
97
{ 3, "0 k", (int64_t)0L, HN_DIVISOR_1000, 1, 4 },
lib/libutil/tests/humanize_number_test.c
98
{ 3, "1 k", (int64_t)500L, HN_DIVISOR_1000, 1, 4 },
lib/libutil/tests/humanize_number_test.c
99
{ 3, "0 M", (int64_t)500L, HN_DIVISOR_1000, 2, 4 },
sbin/camcontrol/camcontrol.c
7729
HN_DIVISOR_1000 : 0));
usr.bin/du/du.c
479
flags |= HN_DIVISOR_1000;
usr.bin/netstat/if.c
258
((div1000) ? HN_DIVISOR_1000 : 0));
usr.bin/systat/vmstat.c
126
enum divisor { IEC = 0, SI = HN_DIVISOR_1000 };
usr.bin/systat/zarc.c
146
sysputuint64(wnd, row, col, width, stat, HN_DIVISOR_1000)
usr.sbin/edquota/edquota.c
510
inos, "", HN_AUTOSCALE, HN_NOSPACE | HN_DIVISOR_1000);