Spdk/include/spdk/endian.h
Jim Harris 488570ebd4 Replace most BSD 3-clause license text with SPDX identifier.
Many open source projects have moved to using SPDX identifiers
to specify license information, reducing the amount of
boilerplate code in every source file.  This patch replaces
the bulk of SPDK .c, .cpp and Makefiles with the BSD-3-Clause
identifier.

Almost all of these files share the exact same license text,
and this patch only modifies the files that contain the
most common license text.  There can be slight variations
because the third clause contains company names - most say
"Intel Corporation", but there are instances for Nvidia,
Samsung, Eideticom and even "the copyright holder".

Used a bash script to automate replacement of the license text
with SPDX identifier which is checked into scripts/spdx.sh.

Signed-off-by: Jim Harris <james.r.harris@intel.com>
Change-Id: Iaa88ab5e92ea471691dc298cfe41ebfb5d169780
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/12904
Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com>
Community-CI: Mellanox Build Bot
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Aleksey Marchuk <alexeymar@nvidia.com>
Reviewed-by: Changpeng Liu <changpeng.liu@intel.com>
Reviewed-by: Dong Yi <dongx.yi@intel.com>
Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com>
Reviewed-by: Paul Luse <paul.e.luse@intel.com>
Reviewed-by: <qun.wan@intel.com>
2022-06-09 07:35:12 +00:00

151 lines
2.9 KiB
C

/* SPDX-License-Identifier: BSD-3-Clause
* Copyright (c) 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