| 44 | |
| 45 | |
| 46 | inline void Copy128(byte *dest,const byte *src) |
| 47 | { |
| 48 | #ifdef ALLOW_MISALIGNED |
| 49 | ((uint32*)dest)[0]=((uint32*)src)[0]; |
| 50 | ((uint32*)dest)[1]=((uint32*)src)[1]; |
| 51 | ((uint32*)dest)[2]=((uint32*)src)[2]; |
| 52 | ((uint32*)dest)[3]=((uint32*)src)[3]; |
| 53 | #else |
| 54 | for (int I=0;I<16;I++) |
| 55 | dest[I]=src[I]; |
| 56 | #endif |
| 57 | } |
| 58 | |
| 59 | |
| 60 | ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
no outgoing calls
no test coverage detected