asm.h 2.4 KB

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