QP/C++ 6.9.3
qs_64bit.cpp
Go to the documentation of this file.
1 
39 #define QP_IMPL // this is QF/QK implementation
40 #include "qs_port.hpp" // QS port
41 #include "qs_pkg.hpp" // QS package-scope internal interface
42 
43 namespace QP {
44 
45 //****************************************************************************
49 void QS::u64_raw_(std::uint64_t d) noexcept {
50  std::uint8_t chksum_ = priv_.chksum;
51  std::uint8_t *buf_ = priv_.buf;
52  QSCtr head_ = priv_.head;
53  QSCtr end_ = priv_.end;
54 
55  priv_.used += 8U; // 8 bytes are about to be added
56  for (std::int_fast8_t i = 8U; i != 0U; --i) {
57  std::uint8_t b = static_cast<std::uint8_t>(d);
59  d >>= 8;
60  }
61 
62  priv_.head = head_; // save the head
63  priv_.chksum = chksum_; // save the checksum
64 }
65 
66 //****************************************************************************
70 void QS::u64_fmt_(std::uint8_t format, std::uint64_t d) noexcept {
71  std::uint8_t chksum_ = priv_.chksum;
72  std::uint8_t *buf_ = priv_.buf;
73  QSCtr head_ = priv_.head;
74  QSCtr end_ = priv_.end;
75 
76  priv_.used += static_cast<QSCtr>(9); // 9 bytes are about to be added
77  QS_INSERT_ESC_BYTE_(format) // insert the format byte
78 
79  for (std::int_fast8_t i = 8U; i != 0U; --i) {
80  format = static_cast<std::uint8_t>(d);
81  QS_INSERT_ESC_BYTE_(format)
82  d >>= 8;
83  }
84 
85  priv_.head = head_; // save the head
86  priv_.chksum = chksum_; // save the checksum
87 }
88 
89 } // namespace QP
90 
signed int int_fast8_t
fast at-least 8-bit signed int
Definition: 16bit/stdint.h:35
unsigned long long uint64_t
exact-width 64-bit unsigned int
Definition: 16bit/stdint.h:32
unsigned char uint8_t
exact-width 8-bit unsigned int
Definition: 16bit/stdint.h:29
static void u64_fmt_(std::uint8_t format, std::uint64_t d) noexcept
Output uint64_t data element with format information.
Definition: qs_64bit.cpp:70
static void u64_raw_(std::uint64_t d) noexcept
Output uint64_t data element without format information.
Definition: qs_64bit.cpp:49
namespace associated with the QP/C++ framework
Definition: struct.dox:1
std::uint_fast16_t QSCtr
QS ring buffer counter and offset type.
Definition: qs.hpp:292
Internal (package scope) QS/C++ interface.
#define QS_INSERT_ESC_BYTE_(b_)
Internal QS macro to insert an escaped byte into the QS buffer.
Definition: qs_pkg.hpp:51
QS/C++ port to a 32-bit CPU, generic compiler.