GCC Code Coverage Report


Directory: ./
File: kernels/volk/volk_32f_null_32f.h
Date: 2023-10-23 23:10:04
Exec Total Coverage
Lines: 0 6 0.0%
Functions: 0 1 0.0%
Branches: 0 2 0.0%

Line Branch Exec Source
1 /* -*- c++ -*- */
2 /*
3 * Copyright 2014 Free Software Foundation, Inc.
4 *
5 * This file is part of VOLK
6 *
7 * SPDX-License-Identifier: LGPL-3.0-or-later
8 */
9
10 #include <inttypes.h>
11 #include <math.h>
12 #include <stdio.h>
13
14 #ifndef INCLUDED_volk_32f_null_32f_a_H
15 #define INCLUDED_volk_32f_null_32f_a_H
16
17 #ifdef LV_HAVE_GENERIC
18
19 static inline void
20 volk_32f_null_32f_generic(float* bVector, const float* aVector, unsigned int num_points)
21 {
22 float* bPtr = bVector;
23 const float* aPtr = aVector;
24 unsigned int number;
25
26 for (number = 0; number < num_points; number++) {
27 *bPtr++ = *aPtr++;
28 }
29 }
30 #endif /* LV_HAVE_GENERIC */
31
32 #endif /* INCLUDED_volk_32f_null_32f_u_H */
33