Lines Matching defs:bits
19 /// Convert a number in bits into a number in bytes.
21 /// @param bits the number in bits to convert.
23 /// @return the number @p bits converted into bytes.
25 convert_bits_to_bytes(size_t bits)
26 {return bits / 8;}
48 /// Convert a bits value into a byte value if the current diff context
51 /// @param bits the bits value to convert.
55 /// @return the resulting bits or bytes value, depending on what the
58 maybe_convert_bits_to_bytes(uint64_t bits, const diff_context& ctxt)
61 return bits;
62 return convert_bits_to_bytes(bits);
70 /// "XXX changes from old_bits to new_bits (in bits)"
77 /// change in bits or bytes. XXX is the string content of the @p what
83 /// @param old_bits the initial value (which changed) in bits.
86 /// old_bits) in bits.
93 /// going to precise if the changed value is in bits or bytes.
112 ? "bits"
129 /// by a part which says if the value is in bits or bytes.
150 ? "bits"
161 /// the value is in bits or bytes.
265 /// bits then the string emitted is going to be "by +32 bits".
268 /// 64 bits then the string emitted is going to be "by -64 bits".
311 ? "bits"
323 /// For instance, if the size of the variable increased by 32 bits
324 /// then the string emitted is going to be "by +32 bits".
327 /// bits then the string emitted is going to be "by -64 bits".
370 ? "bits"