File Coverage

djbsort_src/uint64down_sort.c
Criterion Covered Total %
statement 0 5 0.0
branch 0 4 0.0
condition n/a
subroutine n/a
pod n/a
total 0 9 0.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 "uint64down_sort.h"
5              
6 0           void uint64down_sort(uint64_t *x,long long n)
7             {
8             long long j;
9 0 0         for (j = 0;j < n;++j) x[j] ^= 0x7fffffffffffffffULL;
10 0           djbsort_int64((int64_t *) x,n);
11 0 0         for (j = 0;j < n;++j) x[j] ^= 0x7fffffffffffffffULL;
12 0           }