-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbitfield.3.in
494 lines (494 loc) · 5.77 KB
/
bitfield.3.in
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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
.TH bitfield 3 "%RELEASE_DATE%" "bitfield %VERSION%" "Bit array manipulation library"
.SH NAME
bitfield \- API for manipulating bit arrays.
.SH DESCRIPTION
A library of functions for creating, modifying and destroying bit arrays, i.e.
series of zeroes and ones spread across an array of storage units.
.SH DATA TYPES
.B struct bitfield
is a data structure for storing bit arrays. It has two elements: an array of
unsigned long integers \fIfield\fR for storing the values of bits and an
unsigned integer \fIsize\fR for storing the number of bits in the array.
.SH EXPORTS
For details of each function, refer to its manual page.
.LP
.LP
Creating and deleting bit arrays:
.LP
.B
bfnew()
.br
.RS
creates an empty bitfield structure, and returns a pointer to it
.RE
.LP
.B
bfnew_ones()
.br
.RS
creates a bitfield structure, sets all its bits and returns a pointer to it
.RE
.LP
.B
bfnew_quick()
.br
.RS
creates a bitfield structure and returns a pointer to it
.RE
.LP
.B
bfdel()
.br
.RS
destroys a bitfield structure and frees memory
.RE
.LP
Operations with bit arrays:
.LP
.B
bfresize()
.br
.RS
resizes an existing bitfield
.RE
.LP
.B
bfcat()
.br
.RS
concatenates several bitfields into one
.RE
.LP
.B
bfclearall()
.br
.RS
clears all bits in a bitfield (i.e. fills it with zeroes)
.RE
.LP
.B
bfclone()
.br
.RS
creates a copy of an existing bitfield
.RE
.LP
.B
bfcpy()
.br
.RS
copies the contents of a bitfield into another pre-existing bitfield
.RE
.LP
.B
bfhamming()
.br
.RS
counts the Hamming distance between two bitfields
.RE
.LP
.B
bfisempty()
.br
.RS
checks whether all bit of an array are unset
.RE
.LP
.B
bfnormalize()
.br
.RS
represents a bitfield as a smallest value of a closed ring
.RE
.LP
.B
bfpopcount()
.br
.RS
counts the set bits in a bitfield
.RE
.LP
.B
bfpos()
.br
.RS
checks whether an array of bits contains a sub-array
.RE
.LP
.B
bfrev()
.br
.RS
reverses the order of bits in a bitfield and returns result in new bitfield
.RE
.LP
.B
bfrev_ip()
.br
.RS
reverses the order of bits in an existing bitfield
.RE
.LP
.B
bfsetall()
.br
.RS
sets all bits in a bitfield (i.e. fills it with ones)
.RE
.LP
.B
bfshift()
.br
.RS
circular-shifts the contents of a bitfield and returns the result in new
bitfield
.RE
.LP
.B
bfshift_ip()
.br
.RS
circular-shifts the contents of an existing bitfield
.RE
.LP
.B
bfsub()
.br
.RS
extracts a sub-bitfield in a new bitfield
.RE
.LP
Operations with individual bits:
.LP
.B
bfgetbit()
.br
.RS
checks the state of a bit in a bitfield
.RE
.LP
.B
bfsetbit()
.br
.RS
sets one bit in a bitfield
.RE
.LP
.B
bfclearbit()
.br
.RS
clears one bit in a bitfield
.RE
.LP
.B
bftogglebit()
.br
.RS
toggles (i.e. reverses the state of) a bit in a bitfield
.RE
.LP
Printing bit arrays:
.LP
.B
bfprint_lsb()
.br
.RS
prints a bitfield as a series of ones and zeroes, left to right, the least
significant bit first
.RE
.LP
.B
bfprint_msb()
.br
.RS
prints a bitfield as a series of ones and zeroes, left to right, the most
significant bit first
.RE
.LP
Logical operations with bit arrays:
.LP
.B
bfand()
.br
.RS
performs bitwise AND over a pair of bitfields
.RE
.LP
.B
bfnot()
.br
.RS
reverses all bits in a bitfield and return the result in a new bitfield
.RE
.LP
.B
bfnot_ip()
.br
.RS
reverses all bits in an existing bitfield
.RE
.LP
.B
bfor()
.br
.RS
performs bitwise inclusive OR over a pair of bitfields
.RE
.LP
.B
bfxor()
.br
.RS
performs bitwise exclusive OR over a pair of bitfields
.RE
.LP
.B
bfcmp()
.br
.RS
compares two bitfields and returns 0 if same or non-zero and error
message if different
.RE
.LP
Bitfield-to-something converters:
.LP
.B
bf2char()
.br
.RS
converts a bitfield structure into an array of unsigned chars
.RE
.LP
.B
bf2str()
.br
.RS
converts into a character string of '1's and '0's
.RE
.LP
.B
bf2short()
.br
.RS
converts into an array of short integers
.RE
.LP
.B
bf2int()
.br
.RS
converts into an array of integers
.RE
.LP
.B
bf2long()
.br
.RS
converts into an array of long integers
.RE
.LP
.B
bf2ll()
.br
.RS
converts into an array of long long integers
.RE
.LP
.B
bftouint8()
.br
.RS
converts into an array of uint8_t
.RE
.LP
.B
bftouint16()
.br
.RS
converts into an array of uint16_t
.RE
.LP
.B
bftouint32()
.br
.RS
converts into an array of uint32_t
.RE
.LP
.B
bftouint64()
.br
.RS
converts into an array of uin64_t
.RE
.LP
"In-place" bitfield-to-something converters are same as above, except that
instead of creating a new array, these functions fill an existing one:
.LP
.B
bf2char_ip()
.RE
.LP
.B
bf2str_ip()
.RE
.LP
.B
bf2short_ip()
.RE
.LP
.B
bf2int_ip()
.RE
.LP
.B
bf2long_ip()
.RE
.LP
.B
bf2ll_ip()
.RE
.LP
.B
bftouint8_ip()
.RE
.LP
.B
bftouint16_ip()
.RE
.LP
.B
bftouint32_ip()
.RE
.LP
.B
bftouint64_ip()
.RE
.LP
Something-to-bitfield converters:
.LP
.B
char2bf()
.br
.RS
converts an array of unsigned chars into a bitfield structure
.RE
.LP
.B
str2bf()
.br
.RS
converts a character string of '1's and '0's
.RE
.LP
.B
short2bf()
.br
.RS
converts an array of short integers
.RE
.LP
.B
int2bf()
.br
.RS
converts an array of integers
.RE
.LP
.B
long2bf()
.br
.RS
converts an array of long integers
.RE
.LP
.B
ll2bf()
.br
.RS
converts an array of long long integers
.RE
.LP
.B
uint8tobf()
.br
.RS
converts an array of uint8_t
.RE
.LP
.B
uint16tobf()
.br
.RS
converts an array of uint16_t
.RE
.LP
.B
uint32tobf()
.br
.RS
converts an array of uint32_t
.RE
.LP
.B
uint64tobf()
.br
.RS
converts an array of uint64_t
.RE
.LP
"In-place" something-to-bitfield converters are same as above, except that
instead of creating a new bitfield, these functions fill an existing one:
.LP
.B
char2bf_ip()
.RE
.LP
.B
str2bf_ip()
.RE
.LP
.B
short2bf_ip()
.RE
.LP
.B
int2bf_ip()
.RE
.LP
.B
long2bf_ip()
.RE
.LP
.B
ll2bf_ip()
.RE
.LP
.B
uint8tobf_ip()
.RE
.LP
.B
uint16tobf_ip()
.RE
.LP
.B
uint32tobf_ip()
.RE
.LP
.B
uint64tobf_ip()
.RE
.LP
Miscellaneous:
.LP
.B
bfsize()
.br
.RS
.LP
obtains the number of bits of a bitfield
.RE
.SH AUTHOR
Vitalie CIUBOTARU