Go to the documentation of this file.
3 #ifndef __ZMQ_WIRE_HPP_INCLUDED__
4 #define __ZMQ_WIRE_HPP_INCLUDED__
25 buffer_[0] =
static_cast<unsigned char> (((
value_) >> 8) & 0xff);
31 return ((
static_cast<uint16_t
> (
buffer_[0])) << 8)
32 | (
static_cast<uint16_t
> (
buffer_[1]));
37 buffer_[0] =
static_cast<unsigned char> (((
value_) >> 24) & 0xff);
38 buffer_[1] =
static_cast<unsigned char> (((
value_) >> 16) & 0xff);
39 buffer_[2] =
static_cast<unsigned char> (((
value_) >> 8) & 0xff);
45 return ((
static_cast<uint32_t
> (
buffer_[0])) << 24)
46 | ((
static_cast<uint32_t
> (
buffer_[1])) << 16)
47 | ((
static_cast<uint32_t
> (
buffer_[2])) << 8)
48 | (
static_cast<uint32_t
> (
buffer_[3]));
53 buffer_[0] =
static_cast<unsigned char> (((
value_) >> 56) & 0xff);
54 buffer_[1] =
static_cast<unsigned char> (((
value_) >> 48) & 0xff);
55 buffer_[2] =
static_cast<unsigned char> (((
value_) >> 40) & 0xff);
56 buffer_[3] =
static_cast<unsigned char> (((
value_) >> 32) & 0xff);
57 buffer_[4] =
static_cast<unsigned char> (((
value_) >> 24) & 0xff);
58 buffer_[5] =
static_cast<unsigned char> (((
value_) >> 16) & 0xff);
59 buffer_[6] =
static_cast<unsigned char> (((
value_) >> 8) & 0xff);
65 return ((
static_cast<uint64_t
> (
buffer_[0])) << 56)
66 | ((
static_cast<uint64_t
> (
buffer_[1])) << 48)
67 | ((
static_cast<uint64_t
> (
buffer_[2])) << 40)
68 | ((
static_cast<uint64_t
> (
buffer_[3])) << 32)
69 | ((
static_cast<uint64_t
> (
buffer_[4])) << 24)
70 | ((
static_cast<uint64_t
> (
buffer_[5])) << 16)
71 | ((
static_cast<uint64_t
> (
buffer_[6])) << 8)
72 | (
static_cast<uint64_t
> (
buffer_[7]));
uint8_t get_uint8(const unsigned char *buffer_)
void put_uint32(unsigned char *buffer_, uint32_t value_)
uint16_t get_uint16(const unsigned char *buffer_)
void put_uint8(unsigned char *buffer_, uint8_t value_)
void put_uint16(unsigned char *buffer_, uint16_t value_)
void put_uint64(unsigned char *buffer_, uint64_t value_)
uint64_t get_uint64(const unsigned char *buffer_)
static uint8 buffer_[kBufferSize]
uint32_t get_uint32(const unsigned char *buffer_)
libaditof
Author(s):
autogenerated on Wed May 21 2025 02:07:01