/src/c-blosc2/plugins/codecs/zfp/src/template/revencode2.c
Line | Count | Source |
1 | | /* private functions ------------------------------------------------------- */ |
2 | | |
3 | | /* reversible forward decorrelating 2D transform */ |
4 | | static void |
5 | | _t2(rev_fwd_xform, Int, 2)(Int* p) |
6 | 0 | { |
7 | 0 | uint x, y; |
8 | | /* transform along x */ |
9 | 0 | for (y = 0; y < 4; y++) |
10 | 0 | _t1(rev_fwd_lift, Int)(p + 4 * y, 1); |
11 | | /* transform along y */ |
12 | 0 | for (x = 0; x < 4; x++) |
13 | 0 | _t1(rev_fwd_lift, Int)(p + 1 * x, 4); |
14 | 0 | } Unexecuted instantiation: encode2d.c:rev_fwd_xform_int64_2 Unexecuted instantiation: encode2f.c:rev_fwd_xform_int32_2 Unexecuted instantiation: encode2i.c:rev_fwd_xform_int32_2 Unexecuted instantiation: encode2l.c:rev_fwd_xform_int64_2 |