blosc2-sys 0.4.0+2.15.2

Bindings to C Blosc2
1
2
3
4
5
6
7
8
9
10
11
/* inverse block-floating-point transform from signed integers */
static void
_t1(rev_inv_cast, Scalar)(const Int* iblock, Scalar* fblock, uint n, int emax)
{
  /* test for all-zero block, which needs special treatment */
  if (emax != -EBIAS)
    _t1(inv_cast, Scalar)(iblock, fblock, n, emax);
  else
    while (n--)
      *fblock++ = 0;
}