OLD | NEW |
---|---|
(Empty) | |
1 /* simd_stub.c -- stub implementations | |
2 * Copyright (C) 2014 Intel Corporation | |
3 * For conditions of distribution and use, see copyright notice in zlib.h | |
4 */ | |
5 | |
6 #include "x86.h" | |
7 #include <assert.h> | |
8 | |
9 int x86_cpu_enable_simd; | |
10 | |
11 void ZLIB_INTERNAL crc_fold_init(deflate_state *const s) { | |
12 assert(0); | |
agl
2014/10/17 00:45:34
other files have had 4 space indent.
robert.bradford
2014/10/20 16:45:54
Done.
| |
13 } | |
14 | |
15 void ZLIB_INTERNAL crc_fold_copy(deflate_state *const s, | |
16 unsigned char *dst, const unsigned char *src, long len) { | |
agl
2014/10/17 00:45:34
indentation.
robert.bradford
2014/10/20 16:45:54
Done.
| |
17 assert(0); | |
18 } | |
19 | |
20 unsigned ZLIB_INTERNAL crc_fold_512to32(deflate_state *const s) { | |
21 assert(0); | |
22 return 0; | |
23 } | |
24 | |
25 Pos ZLIB_INTERNAL insert_string_sse(deflate_state *const s, const Pos str) | |
26 { | |
27 assert(0); | |
28 return 0; | |
29 } | |
30 | |
31 void ZLIB_INTERNAL fill_window_sse(deflate_state *s) | |
32 { | |
33 assert(0); | |
34 } | |
35 | |
36 void x86_check_features(void) | |
37 { | |
38 } | |
OLD | NEW |