LCOV - code coverage report
Current view: top level - include/spdk - endian.h (source / functions) Hit Total Coverage
Test: ut_cov_unit.info Lines: 79 79 100.0 %
Date: 2024-11-05 10:06:02 Functions: 11 11 100.0 %

          Line data    Source code
       1             : /*   SPDX-License-Identifier: BSD-3-Clause
       2             :  *   Copyright (C) 2016 Intel Corporation.
       3             :  *   All rights reserved.
       4             :  */
       5             : 
       6             : /**
       7             :  * \file
       8             :  * Endian conversion functions
       9             :  */
      10             : 
      11             : #ifndef SPDK_ENDIAN_H
      12             : #define SPDK_ENDIAN_H
      13             : 
      14             : #include "spdk/stdinc.h"
      15             : 
      16             : #ifdef __cplusplus
      17             : extern "C" {
      18             : #endif
      19             : 
      20             : static inline uint16_t
      21        6377 : from_be16(const void *ptr)
      22             : {
      23        6377 :         const uint8_t *tmp = (const uint8_t *)ptr;
      24        6377 :         return (((uint16_t)tmp[0] << 8) | tmp[1]);
      25             : }
      26             : 
      27             : static inline void
      28        4262 : to_be16(void *out, uint16_t in)
      29             : {
      30        4262 :         uint8_t *tmp = (uint8_t *)out;
      31        4262 :         tmp[0] = (in >> 8) & 0xFF;
      32        4262 :         tmp[1] = in & 0xFF;
      33        4262 : }
      34             : 
      35             : static inline uint32_t
      36        2442 : from_be32(const void *ptr)
      37             : {
      38        2442 :         const uint8_t *tmp = (const uint8_t *)ptr;
      39        2442 :         return (((uint32_t)tmp[0] << 24) |
      40        2442 :                 ((uint32_t)tmp[1] << 16) |
      41        2442 :                 ((uint32_t)tmp[2] << 8) |
      42        2442 :                 ((uint32_t)tmp[3]));
      43             : }
      44             : 
      45             : static inline void
      46        2496 : to_be32(void *out, uint32_t in)
      47             : {
      48        2496 :         uint8_t *tmp = (uint8_t *)out;
      49        2496 :         tmp[0] = (in >> 24) & 0xFF;
      50        2496 :         tmp[1] = (in >> 16) & 0xFF;
      51        2496 :         tmp[2] = (in >> 8) & 0xFF;
      52        2496 :         tmp[3] = in & 0xFF;
      53        2496 : }
      54             : 
      55             : static inline uint64_t
      56        1100 : from_be64(const void *ptr)
      57             : {
      58        1100 :         const uint8_t *tmp = (const uint8_t *)ptr;
      59        1100 :         return (((uint64_t)tmp[0] << 56) |
      60        1100 :                 ((uint64_t)tmp[1] << 48) |
      61        1100 :                 ((uint64_t)tmp[2] << 40) |
      62        1100 :                 ((uint64_t)tmp[3] << 32) |
      63        1100 :                 ((uint64_t)tmp[4] << 24) |
      64        1100 :                 ((uint64_t)tmp[5] << 16) |
      65        1100 :                 ((uint64_t)tmp[6] << 8) |
      66        1100 :                 ((uint64_t)tmp[7]));
      67             : }
      68             : 
      69             : static inline void
      70        1135 : to_be64(void *out, uint64_t in)
      71             : {
      72        1135 :         uint8_t *tmp = (uint8_t *)out;
      73        1135 :         tmp[0] = (in >> 56) & 0xFF;
      74        1135 :         tmp[1] = (in >> 48) & 0xFF;
      75        1135 :         tmp[2] = (in >> 40) & 0xFF;
      76        1135 :         tmp[3] = (in >> 32) & 0xFF;
      77        1135 :         tmp[4] = (in >> 24) & 0xFF;
      78        1135 :         tmp[5] = (in >> 16) & 0xFF;
      79        1135 :         tmp[6] = (in >> 8) & 0xFF;
      80        1135 :         tmp[7] = in & 0xFF;
      81        1135 : }
      82             : 
      83             : static inline uint16_t
      84          33 : from_le16(const void *ptr)
      85             : {
      86          33 :         const uint8_t *tmp = (const uint8_t *)ptr;
      87          33 :         return (((uint16_t)tmp[1] << 8) | tmp[0]);
      88             : }
      89             : 
      90             : static inline void
      91             : to_le16(void *out, uint16_t in)
      92             : {
      93             :         uint8_t *tmp = (uint8_t *)out;
      94             :         tmp[1] = (in >> 8) & 0xFF;
      95             :         tmp[0] = in & 0xFF;
      96             : }
      97             : 
      98             : static inline uint32_t
      99          90 : from_le32(const void *ptr)
     100             : {
     101          90 :         const uint8_t *tmp = (const uint8_t *)ptr;
     102          90 :         return (((uint32_t)tmp[3] << 24) |
     103          90 :                 ((uint32_t)tmp[2] << 16) |
     104          90 :                 ((uint32_t)tmp[1] << 8) |
     105          90 :                 ((uint32_t)tmp[0]));
     106             : }
     107             : 
     108             : static inline void
     109          39 : to_le32(void *out, uint32_t in)
     110             : {
     111          39 :         uint8_t *tmp = (uint8_t *)out;
     112          39 :         tmp[3] = (in >> 24) & 0xFF;
     113          39 :         tmp[2] = (in >> 16) & 0xFF;
     114          39 :         tmp[1] = (in >> 8) & 0xFF;
     115          39 :         tmp[0] = in & 0xFF;
     116          39 : }
     117             : 
     118             : static inline uint64_t
     119          51 : from_le64(const void *ptr)
     120             : {
     121          51 :         const uint8_t *tmp = (const uint8_t *)ptr;
     122          51 :         return (((uint64_t)tmp[7] << 56) |
     123          51 :                 ((uint64_t)tmp[6] << 48) |
     124          51 :                 ((uint64_t)tmp[5] << 40) |
     125          51 :                 ((uint64_t)tmp[4] << 32) |
     126          51 :                 ((uint64_t)tmp[3] << 24) |
     127          51 :                 ((uint64_t)tmp[2] << 16) |
     128          51 :                 ((uint64_t)tmp[1] << 8) |
     129          51 :                 ((uint64_t)tmp[0]));
     130             : }
     131             : 
     132             : static inline void
     133          22 : to_le64(void *out, uint64_t in)
     134             : {
     135          22 :         uint8_t *tmp = (uint8_t *)out;
     136          22 :         tmp[7] = (in >> 56) & 0xFF;
     137          22 :         tmp[6] = (in >> 48) & 0xFF;
     138          22 :         tmp[5] = (in >> 40) & 0xFF;
     139          22 :         tmp[4] = (in >> 32) & 0xFF;
     140          22 :         tmp[3] = (in >> 24) & 0xFF;
     141          22 :         tmp[2] = (in >> 16) & 0xFF;
     142          22 :         tmp[1] = (in >> 8) & 0xFF;
     143          22 :         tmp[0] = in & 0xFF;
     144          22 : }
     145             : 
     146             : #ifdef __cplusplus
     147             : }
     148             : #endif
     149             : 
     150             : #endif

Generated by: LCOV version 1.15