Cset exclude: msvensson@neptunus.(none)|ChangeSet|20050913150614|63378

parent 6d99d188
...@@ -568,13 +568,13 @@ public: ...@@ -568,13 +568,13 @@ public:
static word Add(word *C, const word *A, const word *B, unsigned int N); static word Add(word *C, const word *A, const word *B, unsigned int N);
static word Subtract(word *C, const word *A, const word*B, unsigned int N); static word Subtract(word *C, const word *A, const word*B, unsigned int N);
static void Multiply2(word *C, const word *A, const word *B); static inline void Multiply2(word *C, const word *A, const word *B);
static word Multiply2Add(word *C, const word *A, const word *B); static inline word Multiply2Add(word *C, const word *A, const word *B);
static void Multiply4(word *C, const word *A, const word *B); static void Multiply4(word *C, const word *A, const word *B);
static void Multiply8(word *C, const word *A, const word *B); static void Multiply8(word *C, const word *A, const word *B);
static inline unsigned int MultiplyRecursionLimit() {return 8;} static inline unsigned int MultiplyRecursionLimit() {return 8;}
static void Multiply2Bottom(word *C, const word *A, const word *B); static inline void Multiply2Bottom(word *C, const word *A, const word *B);
static void Multiply4Bottom(word *C, const word *A, const word *B); static void Multiply4Bottom(word *C, const word *A, const word *B);
static void Multiply8Bottom(word *C, const word *A, const word *B); static void Multiply8Bottom(word *C, const word *A, const word *B);
static inline unsigned int MultiplyBottomRecursionLimit() {return 8;} static inline unsigned int MultiplyBottomRecursionLimit() {return 8;}
...@@ -668,7 +668,7 @@ void Portable::Multiply2(word *C, const word *A, const word *B) ...@@ -668,7 +668,7 @@ void Portable::Multiply2(word *C, const word *A, const word *B)
C[3] = t.GetHighHalf(); C[3] = t.GetHighHalf();
} }
void Portable::Multiply2Bottom(word *C, const word *A, const word *B) inline void Portable::Multiply2Bottom(word *C, const word *A, const word *B)
{ {
DWord t = DWord::Multiply(A[0], B[0]); DWord t = DWord::Multiply(A[0], B[0]);
C[0] = t.GetLowHalf(); C[0] = t.GetLowHalf();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment