Lines Matching full:packing
2 Generic bitfield packing and unpacking functions
34 - Packing a CPU-usable number into a memory buffer (with hardware
159 concept of groups of 4 bytes is intrinsic to the packing API (not to be
164 accessible through the buffer. The packing API assumes discontinuities were not
234 packing()
239 The packing() function returns an int-encoded error code, which protects the
241 during runtime, therefore it is reasonable to wrap packing() into a custom
253 err = packing(buf, val, startbit, endbit, len, op, QUIRK_LSW32_IS_FIRST);
274 These are const-correct variants of packing(), and eliminate the last "enum
277 Calling pack(...) is equivalent, and preferred, to calling packing(..., PACK).
279 Calling unpack(...) is equivalent, and preferred, to calling packing(..., UNPACK).