Skip to content

Commit

Permalink
reverse: Rename dword_shuffle to generic
Browse files Browse the repository at this point in the history
Signed-off-by: Clayton Smith <[email protected]>
  • Loading branch information
argilo committed Oct 24, 2023
1 parent 0dc32c8 commit 36a571a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions kernels/volk/volk_32u_reverse_32u.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,8 @@ static const unsigned char BitReverseTable256[] = {
0x3F, 0xBF, 0x7F, 0xFF
};
#ifdef LV_HAVE_GENERIC
static inline void volk_32u_reverse_32u_dword_shuffle(uint32_t* out,
const uint32_t* in,
unsigned int num_points)
static inline void
volk_32u_reverse_32u_generic(uint32_t* out, const uint32_t* in, unsigned int num_points)
{
const struct dword_split* in_ptr = (const struct dword_split*)in;
struct dword_split* out_ptr = (struct dword_split*)out;
Expand Down

0 comments on commit 36a571a

Please sign in to comment.