File Coverage

djbsort_src/uint32down_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 "uint32down_sort.h"
5              
6 1           void uint32down_sort(uint32_t *x,long long n)
7             {
8             long long j;
9 6 100         for (j = 0;j < n;++j) x[j] ^= 0x7fffffff;
10 1           djbsort_int32((int32_t *) x,n);
11 6 100         for (j = 0;j < n;++j) x[j] ^= 0x7fffffff;
12 1           }