Changeset 170 for trunk/src/sh_tiger0.c
- Timestamp:
- Apr 30, 2008, 11:56:45 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/sh_tiger0.c
r167 r170 64 64 #if defined(TIGER_64_BIT) 65 65 66 void tiger_t( word64 *str, word64 length, word64 * res);67 void tiger( word64 *str, word64 length, word64 * res);66 void tiger_t(const word64 *str, word64 length, word64 * res); 67 void tiger(const word64 *str, word64 length, word64 * res); 68 68 69 69 #ifdef TIGER_DBG … … 75 75 #endif 76 76 #else 77 void tiger( sh_word32 *str, sh_word32 length, sh_word32 * res);78 void tiger_t( sh_word32 *str, sh_word32 length, sh_word32 * res);77 void tiger(const sh_word32 *str, sh_word32 length, sh_word32 * res); 78 void tiger_t(const sh_word32 *str, sh_word32 length, sh_word32 * res); 79 79 80 80 #ifdef TIGER_DBG … … 139 139 140 140 #if defined(TIGER_64_BIT) 141 #define TIGER_CAST ( word64*)141 #define TIGER_CAST (const word64*) 142 142 /* word64 res[3]; */ 143 143 res[0]= (word64) 0x0123456789ABCDEFLL; … … 145 145 res[2]= (word64) 0xF096A5B4C3B2E187LL; 146 146 #else 147 #define TIGER_CAST ( sh_word32*)147 #define TIGER_CAST (const sh_word32*) 148 148 /* sh_word32 res[6]; */ 149 149 res[0]= (sh_word32) 0x89ABCDEF;
Note:
See TracChangeset
for help on using the changeset viewer.