Spdk/include/spdk/endian.h
paul luse a6dbe3721e update Intel copyright notices
per Intel policy to include file commit date using git cmd
below.  The policy does not apply to non-Intel (C) notices.

git log --follow -C90% --format=%ad --date default <file> | tail -1

and then pull just the 4 digit year from the result.

Intel copyrights were not added to files where Intel either had
no contribution ot the contribution lacked substance (ie license
header updates, formatting changes, etc).  Contribution date used
"--follow -C95%" to get the most accurate date.

Note that several files in this patch didn't end the license/(c)
block with a blank comment line so these were added as the vast
majority of files do have this last blank line.  Simply there for
consistency.

Signed-off-by: paul luse <paul.e.luse@intel.com>
Change-Id: Id5b7ce4f658fe87132f14139ead58d6e285c04d4
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/15192
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
Community-CI: Mellanox Build Bot
2022-11-10 08:28:53 +00:00

151 lines
2.9 KiB
C

/* SPDX-License-Identifier: BSD-3-Clause
* Copyright (C) 2016 Intel Corporation.
* All rights reserved.
*/
/**
* \file
* Endian conversion functions
*/
#ifndef SPDK_ENDIAN_H
#define SPDK_ENDIAN_H
#include "spdk/stdinc.h"
#ifdef __cplusplus
extern "C" {
#endif
static inline uint16_t
from_be16(const void *ptr)
{
const uint8_t *tmp = (const uint8_t *)ptr;
return (((uint16_t)tmp[0] << 8) | tmp[1]);
}
static inline void
to_be16(void *out, uint16_t in)
{
uint8_t *tmp = (uint8_t *)out;
tmp[0] = (in >> 8) & 0xFF;
tmp[1] = in & 0xFF;
}
static inline uint32_t
from_be32(const void *ptr)
{
const uint8_t *tmp = (const uint8_t *)ptr;
return (((uint32_t)tmp[0] << 24) |
((uint32_t)tmp[1] << 16) |
((uint32_t)tmp[2] << 8) |
((uint32_t)tmp[3]));
}
static inline void
to_be32(void *out, uint32_t in)
{
uint8_t *tmp = (uint8_t *)out;
tmp[0] = (in >> 24) & 0xFF;
tmp[1] = (in >> 16) & 0xFF;
tmp[2] = (in >> 8) & 0xFF;
tmp[3] = in & 0xFF;
}
static inline uint64_t
from_be64(const void *ptr)
{
const uint8_t *tmp = (const uint8_t *)ptr;
return (((uint64_t)tmp[0] << 56) |
((uint64_t)tmp[1] << 48) |
((uint64_t)tmp[2] << 40) |
((uint64_t)tmp[3] << 32) |
((uint64_t)tmp[4] << 24) |
((uint64_t)tmp[5] << 16) |
((uint64_t)tmp[6] << 8) |
((uint64_t)tmp[7]));
}
static inline void
to_be64(void *out, uint64_t in)
{
uint8_t *tmp = (uint8_t *)out;
tmp[0] = (in >> 56) & 0xFF;
tmp[1] = (in >> 48) & 0xFF;
tmp[2] = (in >> 40) & 0xFF;
tmp[3] = (in >> 32) & 0xFF;
tmp[4] = (in >> 24) & 0xFF;
tmp[5] = (in >> 16) & 0xFF;
tmp[6] = (in >> 8) & 0xFF;
tmp[7] = in & 0xFF;
}
static inline uint16_t
from_le16(const void *ptr)
{
const uint8_t *tmp = (const uint8_t *)ptr;
return (((uint16_t)tmp[1] << 8) | tmp[0]);
}
static inline void
to_le16(void *out, uint16_t in)
{
uint8_t *tmp = (uint8_t *)out;
tmp[1] = (in >> 8) & 0xFF;
tmp[0] = in & 0xFF;
}
static inline uint32_t
from_le32(const void *ptr)
{
const uint8_t *tmp = (const uint8_t *)ptr;
return (((uint32_t)tmp[3] << 24) |
((uint32_t)tmp[2] << 16) |
((uint32_t)tmp[1] << 8) |
((uint32_t)tmp[0]));
}
static inline void
to_le32(void *out, uint32_t in)
{
uint8_t *tmp = (uint8_t *)out;
tmp[3] = (in >> 24) & 0xFF;
tmp[2] = (in >> 16) & 0xFF;
tmp[1] = (in >> 8) & 0xFF;
tmp[0] = in & 0xFF;
}
static inline uint64_t
from_le64(const void *ptr)
{
const uint8_t *tmp = (const uint8_t *)ptr;
return (((uint64_t)tmp[7] << 56) |
((uint64_t)tmp[6] << 48) |
((uint64_t)tmp[5] << 40) |
((uint64_t)tmp[4] << 32) |
((uint64_t)tmp[3] << 24) |
((uint64_t)tmp[2] << 16) |
((uint64_t)tmp[1] << 8) |
((uint64_t)tmp[0]));
}
static inline void
to_le64(void *out, uint64_t in)
{
uint8_t *tmp = (uint8_t *)out;
tmp[7] = (in >> 56) & 0xFF;
tmp[6] = (in >> 48) & 0xFF;
tmp[5] = (in >> 40) & 0xFF;
tmp[4] = (in >> 32) & 0xFF;
tmp[3] = (in >> 24) & 0xFF;
tmp[2] = (in >> 16) & 0xFF;
tmp[1] = (in >> 8) & 0xFF;
tmp[0] = in & 0xFF;
}
#ifdef __cplusplus
}
#endif
#endif