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 #include <assert.h> |
| 6 |
| 7 #include "deflate.h" |
| 8 #include "x86.h" |
| 9 |
| 10 int x86_cpu_enable_simd; |
| 11 |
| 12 void ZLIB_INTERNAL crc_fold_init(deflate_state *const s) { |
| 13 assert(0); |
| 14 } |
| 15 |
| 16 void ZLIB_INTERNAL crc_fold_copy(deflate_state *const s, |
| 17 unsigned char *dst, |
| 18 const unsigned char *src, |
| 19 long len) { |
| 20 assert(0); |
| 21 } |
| 22 |
| 23 unsigned ZLIB_INTERNAL crc_fold_512to32(deflate_state *const s) { |
| 24 assert(0); |
| 25 return 0; |
| 26 } |
| 27 |
| 28 Pos ZLIB_INTERNAL insert_string_sse(deflate_state *const s, const Pos str) |
| 29 { |
| 30 assert(0); |
| 31 return 0; |
| 32 } |
| 33 |
| 34 void ZLIB_INTERNAL fill_window_sse(deflate_state *s) |
| 35 { |
| 36 assert(0); |
| 37 } |
| 38 |
| 39 void x86_check_features(void) |
| 40 { |
| 41 } |
OLD | NEW |