lzo: update to 2.09
[tomato.git] / release / src / router / lzo / lzotest / asm.h
blob72b82893d827a1ba8d56c7257a6d4765dcb68d4c
1 /* asm.h -- library assembler function prototypes
3 This file is part of the LZO real-time data compression library.
5 Copyright (C) 1996-2015 Markus Franz Xaver Johannes Oberhumer
6 All Rights Reserved.
8 The LZO library is free software; you can redistribute it and/or
9 modify it under the terms of the GNU General Public License as
10 published by the Free Software Foundation; either version 2 of
11 the License, or (at your option) any later version.
13 The LZO library is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with the LZO library; see the file COPYING.
20 If not, write to the Free Software Foundation, Inc.,
21 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 Markus F.X.J. Oberhumer
24 <markus@oberhumer.com>
25 http://www.oberhumer.com/opensource/lzo/
29 /*************************************************************************
31 **************************************************************************/
33 #if defined(LZO_USE_ASM)
34 # include <lzo/lzo_asm.h>
35 #else
36 # define lzo1c_decompress_asm 0
37 # define lzo1c_decompress_asm_safe 0
38 # define lzo1f_decompress_asm_fast 0
39 # define lzo1f_decompress_asm_fast_safe 0
40 # define lzo1x_decompress_asm 0
41 # define lzo1x_decompress_asm_safe 0
42 # define lzo1x_decompress_asm_fast 0
43 # define lzo1x_decompress_asm_fast_safe 0
44 # define lzo1y_decompress_asm 0
45 # define lzo1y_decompress_asm_safe 0
46 # define lzo1y_decompress_asm_fast 0
47 # define lzo1y_decompress_asm_fast_safe 0
48 #endif
51 /*************************************************************************
52 // these are not yet implemented
53 **************************************************************************/
55 #define lzo1b_decompress_asm 0
56 #define lzo1b_decompress_asm_safe 0
57 #define lzo1b_decompress_asm_fast 0
58 #define lzo1b_decompress_asm_fast_safe 0
60 #define lzo1c_decompress_asm_fast 0
61 #define lzo1c_decompress_asm_fast_safe 0
63 #define lzo1f_decompress_asm 0
64 #define lzo1f_decompress_asm_safe 0
67 /* vim:set ts=4 sw=4 et: */