Lines Matching refs:shape

5   static void encode_block_1(zfp_stream* zfp, const float* block, uint shape)
7 if (shape) {
8 uint nx = 4 - (shape & 3u); shape >>= 2;
16 static void encode_block_strided_1(zfp_stream* zfp, const float* p, uint shape, int sx)
18 if (shape) {
19 uint nx = 4 - (shape & 3u); shape >>= 2;
27 static void encode_block_2(zfp_stream* zfp, const float* block, uint shape)
29 if (shape) {
30 uint nx = 4 - (shape & 3u); shape >>= 2;
31 uint ny = 4 - (shape & 3u); shape >>= 2;
39 static void encode_block_strided_2(zfp_stream* zfp, const float* p, uint shape, int sx, int sy)
41 if (shape) {
42 uint nx = 4 - (shape & 3u); shape >>= 2;
43 uint ny = 4 - (shape & 3u); shape >>= 2;
51 static void encode_block_3(zfp_stream* zfp, const float* block, uint shape)
53 if (shape) {
54 uint nx = 4 - (shape & 3u); shape >>= 2;
55 uint ny = 4 - (shape & 3u); shape >>= 2;
56 uint nz = 4 - (shape & 3u); shape >>= 2;
64 …static void encode_block_strided_3(zfp_stream* zfp, const float* p, uint shape, int sx, int sy, in…
66 if (shape) {
67 uint nx = 4 - (shape & 3u); shape >>= 2;
68 uint ny = 4 - (shape & 3u); shape >>= 2;
69 uint nz = 4 - (shape & 3u); shape >>= 2;
77 static void decode_block_1(zfp_stream* zfp, float* block, uint shape)
79 if (shape) {
80 uint nx = 4 - (shape & 3u); shape >>= 2;
88 static void decode_block_strided_1(zfp_stream* zfp, float* p, uint shape, int sx)
90 if (shape) {
91 uint nx = 4 - (shape & 3u); shape >>= 2;
99 static void decode_block_2(zfp_stream* zfp, float* block, uint shape)
101 if (shape) {
102 uint nx = 4 - (shape & 3u); shape >>= 2;
103 uint ny = 4 - (shape & 3u); shape >>= 2;
111 static void decode_block_strided_2(zfp_stream* zfp, float* p, uint shape, int sx, int sy)
113 if (shape) {
114 uint nx = 4 - (shape & 3u); shape >>= 2;
115 uint ny = 4 - (shape & 3u); shape >>= 2;
123 static void decode_block_3(zfp_stream* zfp, float* block, uint shape)
125 if (shape) {
126 uint nx = 4 - (shape & 3u); shape >>= 2;
127 uint ny = 4 - (shape & 3u); shape >>= 2;
128 uint nz = 4 - (shape & 3u); shape >>= 2;
136 static void decode_block_strided_3(zfp_stream* zfp, float* p, uint shape, int sx, int sy, int sz)
138 if (shape) {
139 uint nx = 4 - (shape & 3u); shape >>= 2;
140 uint ny = 4 - (shape & 3u); shape >>= 2;
141 uint nz = 4 - (shape & 3u); shape >>= 2;