| 388 | } |
| 389 | |
| 390 | static void Swap4(char* d, S32 n) |
| 391 | { |
| 392 | char t; |
| 393 | |
| 394 | while (n--) |
| 395 | { |
| 396 | t = d[0]; |
| 397 | d[0] = d[3]; |
| 398 | d[3] = t; |
| 399 | |
| 400 | t = d[1]; |
| 401 | d[1] = d[2]; |
| 402 | d[2] = t; |
| 403 | |
| 404 | d += 4; |
| 405 | } |
| 406 | } |
| 407 | |
| 408 | static void Swap8(char* d, S32 n) |
| 409 | { |
no outgoing calls
no test coverage detected