Displaying 3 results from an estimated 3 matches for "__alpha".
Did you mean:
r_alpha
2001 Aug 17
1
Win32 ASM vs. Alpha CPU
In \Vorbis\Lib\os.h
On line 126
#if defined(_WIN32) && !defined(__GNUC__) && !defined(__alpha)
I had to add the && !defined(__alpha) in order for it to compile correctly
on VC++ 6.0 on WinNT4 on my Alpha CPU machine.
The reason is that the code inside the #ifdef is using X86 ASM, which is a
no no. Once I added the check for the Alpha constant, things compile just
fine.
Laters,
M...
2001 Feb 27
1
Bad packet length in 2.5.1 with rijndael (fwd)
I think we are not detecting and setting endianness properly for
rijndael.c.
Can someone on a big endian machine do a "ssh -2 -oCiphers=rijndael128-cbc
littleendianmachine" and vice versa?
-d
--
| Damien Miller <djm at mindrot.org> \ ``E-mail attachments are the poor man's
| http://www.mindrot.org / distributed filesystem'' - Dan Geer
----------
2020 Feb 09
2
[RFC PATCH] Add SHA1 support
...dif
+ p -= HASH_CBLOCK;
+ HASH_BLOCK_DATA_ORDER(c, p, 1);
+ c->num = 0;
+ memset(p, 0, HASH_CBLOCK);
+
+#ifndef HASH_MAKE_STRING
+# error "HASH_MAKE_STRING must be defined!"
+#else
+ HASH_MAKE_STRING(c, md);
+#endif
+
+ return 1;
+}
+
+#ifndef MD32_REG_T
+# if defined(__alpha) || defined(__sparcv9) || defined(__mips)
+# define MD32_REG_T long
+/*
+ * This comment was originally written for MD5, which is why it
+ * discusses A-D. But it basically applies to all 32-bit digests,
+ * which is why it was moved to common header file.
+ *
+ * In case you wonder why A-D are de...