1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
/*
This file is a part of KMC software distributed under GNU GPL 3 licence.
The homepage of the KMC project is http://sun.aei.polsl.pl/kmc
Authors: Sebastian Deorowicz, Agnieszka Debudaj-Grabysz, Marek Kokot
Version: 3.1.1
Date : 2019-05-19
*/
#ifndef _BAM_UTILS_H
#define _BAM_UTILS_H
#include "defs.h"
#include <cinttypes>
static inline void read_int32_t(int32_t& out, uint8_t* in, uint64_t& pos)
{
out = 0;
for (int j = 0; j < 4; ++j)
out |= (uint32_t)in[pos++] << (j * 8);
}
static inline void read_uint32_t(uint32_t& out, uint8_t* in, uint64_t& pos)
{
out = 0;
for (int j = 0; j < 4; ++j)
out |= (uint32_t)in[pos++] << (j * 8);
}
static inline void read_uint16_t(uint16_t& out, uint8_t* in, uint64_t& pos)
{
out = 0;
for (int j = 0; j < 2; ++j)
out |= (uint16_t)in[pos++] << (j * 8);
}
#endif
// ***** EOF
|