This repository has been archived on 2023-10-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blender-archive/source/blender/blenlib/intern/endian_switch.c
Campbell Barton 891949cbb4 Cleanup: use 'u' prefixed integer types for brevity & cast style
To use function style cast '(unsigned char)x' can't be replaced by
'unsigned char(x)'.
2022-09-25 18:26:27 +10:00

90 lines
1.5 KiB
C

/* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup bli
*/
#include "BLI_endian_switch.h"
#include "BLI_sys_types.h"
#include "BLI_utildefines.h"
void BLI_endian_switch_int16_array(short *val, const int size)
{
if (size > 0) {
int i = size;
while (i--) {
BLI_endian_switch_int16(val++);
}
}
}
void BLI_endian_switch_uint16_array(ushort *val, const int size)
{
if (size > 0) {
int i = size;
while (i--) {
BLI_endian_switch_uint16(val++);
}
}
}
void BLI_endian_switch_int32_array(int *val, const int size)
{
if (size > 0) {
int i = size;
while (i--) {
BLI_endian_switch_int32(val++);
}
}
}
void BLI_endian_switch_uint32_array(uint *val, const int size)
{
if (size > 0) {
int i = size;
while (i--) {
BLI_endian_switch_uint32(val++);
}
}
}
void BLI_endian_switch_float_array(float *val, const int size)
{
if (size > 0) {
int i = size;
while (i--) {
BLI_endian_switch_float(val++);
}
}
}
void BLI_endian_switch_int64_array(int64_t *val, const int size)
{
if (size > 0) {
int i = size;
while (i--) {
BLI_endian_switch_int64(val++);
}
}
}
void BLI_endian_switch_uint64_array(uint64_t *val, const int size)
{
if (size > 0) {
int i = size;
while (i--) {
BLI_endian_switch_uint64(val++);
}
}
}
void BLI_endian_switch_double_array(double *val, const int size)
{
if (size > 0) {
int i = size;
while (i--) {
BLI_endian_switch_double(val++);
}
}
}