blosc2-sys 0.4.0+2.15.2

Bindings to C Blosc2
/* private functions ------------------------------------------------------- */

/* gather 4-value block from strided array */
static void
_t2(gather, Scalar, 1)(Scalar* q, const Scalar* p, ptrdiff_t sx)
{
  uint x;
  for (x = 0; x < 4; x++, p += sx)
    *q++ = *p;
}

/* gather nx-value block from strided array */
static void
_t2(gather_partial, Scalar, 1)(Scalar* q, const Scalar* p, size_t nx, ptrdiff_t sx)
{
  size_t x;
  for (x = 0; x < nx; x++, p += sx)
    q[x] = *p;
  _t1(pad_block, Scalar)(q, nx, 1);
}

/* forward decorrelating 1D transform */
static void
_t2(fwd_xform, Int, 1)(Int* p)
{
  /* transform along x */
  _t1(fwd_lift, Int)(p, 1);
}

/* public functions -------------------------------------------------------- */

/* encode 4-value block stored at p using stride sx */
size_t
_t2(zfp_encode_block_strided, Scalar, 1)(zfp_stream* stream, const Scalar* p, ptrdiff_t sx)
{
  /* gather block from strided array */
  cache_align_(Scalar block[4]);
  _t2(gather, Scalar, 1)(block, p, sx);
  /* encode block */
  return _t2(zfp_encode_block, Scalar, 1)(stream, block);
}

/* encode nx-value block stored at p using stride sx */
size_t
_t2(zfp_encode_partial_block_strided, Scalar, 1)(zfp_stream* stream, const Scalar* p, size_t nx, ptrdiff_t sx)
{
  /* gather block from strided array */
  cache_align_(Scalar block[4]);
  _t2(gather_partial, Scalar, 1)(block, p, nx, sx);
  /* encode block */
  return _t2(zfp_encode_block, Scalar, 1)(stream, block);
}