| 341 | } |
| 342 | |
| 343 | static inline void AtomicMultiplyBottom(word *C, word A0, word A1, word B0, word B1) |
| 344 | { |
| 345 | dword_union t; |
| 346 | t.dw = (dword)A0*B0; |
| 347 | C[0] = t.low; |
| 348 | C[1] = t.high + A0*B1 + A1*B0; |
| 349 | } |
| 350 | |
| 351 | static inline void AtomicMultiplyBottomAdd(word *C, word A0, word A1, word B0, word B1) |
| 352 | { |
no outgoing calls
no test coverage detected