Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

68 lines
2.6 KiB
C

/*********************************************************************
Blosc - Blocked Shuffling and Compression Library
Author: Francesc Alted <francesc@blosc.org>
See LICENSES/BLOSC.txt for details about copyright and rights to use.
**********************************************************************/
/* Shuffle/unshuffle routines which dynamically dispatch to hardware-
accelerated routines based on the processor's architecture.
Consumers should almost always prefer to call these routines instead
of directly calling one of the hardware-accelerated routines, since
these are cross-platform and future-proof. */
#ifndef SHUFFLE_H
#define SHUFFLE_H
#include "blosc-common.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
Primary shuffle and bitshuffle routines.
This function dynamically dispatches to the appropriate hardware-accelerated
routine based on the host processor's architecture. If the host processor is
not supported by any of the hardware-accelerated routines, the generic
(non-accelerated) implementation is used instead.
Consumers should almost always prefer to call this routine instead of directly
calling the hardware-accelerated routines because this method is both cross-
platform and future-proof.
*/
BLOSC_NO_EXPORT void
blosc_internal_shuffle(const size_t bytesoftype, const size_t blocksize,
const uint8_t* _src, const uint8_t* _dest);
BLOSC_NO_EXPORT int
blosc_internal_bitshuffle(const size_t bytesoftype, const size_t blocksize,
const uint8_t* const _src, const uint8_t* _dest,
const uint8_t* _tmp);
/**
Primary unshuffle and bitunshuffle routine.
This function dynamically dispatches to the appropriate hardware-accelerated
routine based on the host processor's architecture. If the host processor is
not supported by any of the hardware-accelerated routines, the generic
(non-accelerated) implementation is used instead.
Consumers should almost always prefer to call this routine instead of directly
calling the hardware-accelerated routines because this method is both cross-
platform and future-proof.
*/
BLOSC_NO_EXPORT void
blosc_internal_unshuffle(const size_t bytesoftype, const size_t blocksize,
const uint8_t* _src, const uint8_t* _dest);
BLOSC_NO_EXPORT int
blosc_internal_bitunshuffle(const size_t bytesoftype, const size_t blocksize,
const uint8_t* const _src, const uint8_t* _dest,
const uint8_t* _tmp);
#ifdef __cplusplus
}
#endif
#endif /* SHUFFLE_H */