| djbsort_src/uint32_sort.c | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 5 | 5 | 100.0 |
| branch | 4 | 4 | 100.0 |
| condition | n/a | ||
| subroutine | n/a | ||
| pod | n/a | ||
| total | 9 | 9 | 100.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | /* WARNING: auto-generated (by autogen/useint); do not edit */ | ||||||
| 2 | |||||||
| 3 | #include "djbsort.h" | ||||||
| 4 | #include "uint32_sort.h" | ||||||
| 5 | |||||||
| 6 | 2 | void uint32_sort(uint32_t *x,long long n) | |||||
| 7 | { | ||||||
| 8 | long long j; | ||||||
| 9 | 11 | 100 | for (j = 0;j < n;++j) x[j] ^= 0x80000000; | ||||
| 10 | 2 | djbsort_int32((int32_t *) x,n); | |||||
| 11 | 11 | 100 | for (j = 0;j < n;++j) x[j] ^= 0x80000000; | ||||
| 12 | 2 | } |