本文整理汇总了C++中reader::read_2_bytes_little_endian方法的典型用法代码示例。如果您正苦于以下问题:C++ reader::read_2_bytes_little_endian方法的具体用法?C++ reader::read_2_bytes_little_endian怎么用?C++ reader::read_2_bytes_little_endian使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类reader
的用法示例。
在下文中一共展示了reader::read_2_bytes_little_endian方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: from_data
bool point::from_data(reader& source, bool wire)
{
reset();
valid_ = true;
hash_ = source.read_hash();
if (wire)
{
index_ = source.read_4_bytes_little_endian();
}
else
{
index_ = source.read_2_bytes_little_endian();
// Convert 16 bit sentinel to 32 bit sentinel.
if (index_ == max_uint16)
index_ = null_index;
}
if (!source)
reset();
return source;
}
示例2: from_data
// Avoid point reuse due to affect on store tx serialization.
bool payment_record::from_data(reader& source, bool wire)
{
valid_ = true;
output_ = (source.read_byte() == 1);
if (wire)
{
height_ = source.read_4_bytes_little_endian();
link_ = unlinked;
hash_ = source.read_hash();
index_ = source.read_4_bytes_little_endian();
}
else
{
height_ = 0;
link_ = source.read_8_bytes_little_endian();
hash_ = null_hash;
index_ = source.read_2_bytes_little_endian();
// Convert 16 bit sentinel to 32 bit sentinel.
if (index_ == max_uint16)
index_ = point::null_index;
}
data_ = source.read_8_bytes_little_endian();
if (!source)
reset();
return source;
}
示例3: read_opcode_data_size
bool operation::read_opcode_data_size(uint32_t& count, opcode code,
uint8_t raw_byte, reader& source)
{
switch (code)
{
case opcode::special:
count = raw_byte;
return true;
case opcode::pushdata1:
count = source.read_byte();
return true;
case opcode::pushdata2:
count = source.read_2_bytes_little_endian();
return true;
case opcode::pushdata4:
count = source.read_4_bytes_little_endian();
return true;
default:
return false;
}
}