aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CommonLibs/BitVector.cpp2
-rw-r--r--CommonLibs/Interthread.h2
-rw-r--r--CommonLibs/LinkedLists.h2
-rw-r--r--CommonLibs/Threads.h2
-rw-r--r--CommonLibs/Timeval.h2
-rw-r--r--CommonLibs/Vector.h2
-rw-r--r--CommonLibs/trx_rate_ctr.cpp2
-rw-r--r--CommonLibs/trx_vty.c2
-rw-r--r--Transceiver52M/Channelizer.cpp2
-rw-r--r--Transceiver52M/ChannelizerBase.cpp2
-rw-r--r--Transceiver52M/ChannelizerBase.h2
-rw-r--r--Transceiver52M/Complex.h2
-rw-r--r--Transceiver52M/Resampler.h4
-rw-r--r--Transceiver52M/Transceiver.cpp2
-rw-r--r--Transceiver52M/Transceiver.h2
-rw-r--r--Transceiver52M/arch/arm/convolve.c2
-rw-r--r--Transceiver52M/arch/common/fft.c2
-rw-r--r--Transceiver52M/arch/x86/convert.c2
-rw-r--r--Transceiver52M/arch/x86/convolve.c4
-rw-r--r--Transceiver52M/device/common/radioDevice.h2
-rw-r--r--Transceiver52M/device/common/smpl_buf.h2
-rw-r--r--Transceiver52M/device/lms/LMSDevice.cpp2
-rw-r--r--Transceiver52M/device/lms/LMSDevice.h2
-rw-r--r--Transceiver52M/device/usrp1/USRPDevice.h2
-rw-r--r--Transceiver52M/proto_trxd.c2
-rw-r--r--Transceiver52M/radioInterface.h4
-rw-r--r--Transceiver52M/sigProcLib.cpp4
-rw-r--r--Transceiver52M/sigProcLib.h2
-rw-r--r--configure.ac2
-rwxr-xr-xcontrib/jenkins.sh2
-rw-r--r--doc/manuals/chapters/device-usrp-inband-signaling-usb.adoc2
-rw-r--r--doc/manuals/chapters/trx-backends.adoc2
-rw-r--r--doc/manuals/vty/trx_vty_reference.xml2
-rw-r--r--tests/Transceiver52M/convolve_test.c6
34 files changed, 40 insertions, 40 deletions
diff --git a/CommonLibs/BitVector.cpp b/CommonLibs/BitVector.cpp
index 26b44ee..1bc8f43 100644
--- a/CommonLibs/BitVector.cpp
+++ b/CommonLibs/BitVector.cpp
@@ -37,7 +37,7 @@ using namespace std;
/**
- Apply a Galois polymonial to a binary seqeunce.
+ Apply a Galois polymonial to a binary sequence.
@param val The input sequence.
@param poly The polynomial.
@param order The order of the polynomial.
diff --git a/CommonLibs/Interthread.h b/CommonLibs/Interthread.h
index 8169985..881e1a8 100644
--- a/CommonLibs/Interthread.h
+++ b/CommonLibs/Interthread.h
@@ -47,7 +47,7 @@
// (pat) The elements in the queue are type T*, and
// the Fifo class implements the underlying queue.
// The default is class PointerFIFO, which does not place any restrictions on the type of T,
-// and is implemented by allocating auxilliary structures for the queue,
+// and is implemented by allocating auxiliary structures for the queue,
// or SingleLinkedList, which implements the queue using an internal pointer in type T,
// which must implement the functional interface of class SingleLinkListNode,
// namely: functions T*next() and void setNext(T*).
diff --git a/CommonLibs/LinkedLists.h b/CommonLibs/LinkedLists.h
index e98b41a..f5502e7 100644
--- a/CommonLibs/LinkedLists.h
+++ b/CommonLibs/LinkedLists.h
@@ -4,7 +4,7 @@
* SPDX-License-Identifier: AGPL-3.0+
*
* This software is distributed under multiple licenses; see the COPYING file in
-* the main directory for licensing information for this specific distribuion.
+* the main directory for licensing information for this specific distribution.
*
* This software is distributed under the terms of the GNU Affero Public License.
* See the COPYING file in the main directory for details.
diff --git a/CommonLibs/Threads.h b/CommonLibs/Threads.h
index df61c72..5ff137b 100644
--- a/CommonLibs/Threads.h
+++ b/CommonLibs/Threads.h
@@ -186,7 +186,7 @@ class Thread {
}
}
- /** Send cancelation to thread */
+ /** Send cancellation to thread */
void cancel() { pthread_cancel(mThread); }
};
diff --git a/CommonLibs/Timeval.h b/CommonLibs/Timeval.h
index 0826c12..18ea4b4 100644
--- a/CommonLibs/Timeval.h
+++ b/CommonLibs/Timeval.h
@@ -84,7 +84,7 @@ class Timeval {
uint32_t usec() const { return mTimespec.tv_nsec / 1000; }
uint32_t nsec() const { return mTimespec.tv_nsec; }
- /** Return differnce from other (other-self), in ms. */
+ /** Return difference from other (other-self), in ms. */
long delta(const Timeval& other) const;
/** Elapsed time in ms. */
diff --git a/CommonLibs/Vector.h b/CommonLibs/Vector.h
index 0970248..012a0fa 100644
--- a/CommonLibs/Vector.h
+++ b/CommonLibs/Vector.h
@@ -36,7 +36,7 @@
#include <assert.h>
#include <stdlib.h>
-// We cant use Logger.h in this file...
+// We can't use Logger.h in this file...
extern int gVectorDebug;
#define BVDEBUG(msg) if (gVectorDebug) {std::cout << msg;}
diff --git a/CommonLibs/trx_rate_ctr.cpp b/CommonLibs/trx_rate_ctr.cpp
index a9ef88c..1b44b13 100644
--- a/CommonLibs/trx_rate_ctr.cpp
+++ b/CommonLibs/trx_rate_ctr.cpp
@@ -38,7 +38,7 @@
* That signal is processed here in device_sig_cb, where a copy of the "struct
* device_counters" structure is held and the main thread is instructed through
* a timerfd to update rate_ctr APIs against this copy. All this is done inside
- * a mutex to avoid different race conditons (between Rx andTx threads, and
+ * a mutex to avoid different race conditions (between Rx andTx threads, and
* between Rx/Tx and main thread). For the same reason, callers of signal
* <SS_DEVICE,S_DEVICE_COUNTER_CHANGE> (device_sig_cb), that is Rx/Tx threads,
* must do so with PTHREAD_CANCEL_DISABLE, in order to avoid possible deadlocks
diff --git a/CommonLibs/trx_vty.c b/CommonLibs/trx_vty.c
index df0114a..2c7ecc2 100644
--- a/CommonLibs/trx_vty.c
+++ b/CommonLibs/trx_vty.c
@@ -222,7 +222,7 @@ DEFUN(cfg_test_rach_delay, cfg_test_rach_delay_cmd,
DEFUN(cfg_clock_ref, cfg_clock_ref_cmd,
"clock-ref (internal|external|gpsdo)",
"Set the Reference Clock\n"
- "Enable internal referece (default)\n"
+ "Enable internal reference (default)\n"
"Enable external 10 MHz reference\n"
"Enable GPSDO reference\n")
{
diff --git a/Transceiver52M/Channelizer.cpp b/Transceiver52M/Channelizer.cpp
index 341cd0a..0522f20 100644
--- a/Transceiver52M/Channelizer.cpp
+++ b/Transceiver52M/Channelizer.cpp
@@ -98,7 +98,7 @@ bool Channelizer::rotate(const float *in, size_t len)
return true;
}
-/* Setup channelizer paramaters */
+/* Setup channelizer parameters */
Channelizer::Channelizer(size_t m, size_t blockLen, size_t hLen)
: ChannelizerBase(m, blockLen, hLen)
{
diff --git a/Transceiver52M/ChannelizerBase.cpp b/Transceiver52M/ChannelizerBase.cpp
index f3f07c1..e6eeed2 100644
--- a/Transceiver52M/ChannelizerBase.cpp
+++ b/Transceiver52M/ChannelizerBase.cpp
@@ -225,7 +225,7 @@ bool ChannelizerBase::checkLen(size_t innerLen, size_t outerLen)
}
/*
- * Setup channelizer paramaters
+ * Setup channelizer parameters
*/
ChannelizerBase::ChannelizerBase(size_t m, size_t blockLen, size_t hLen)
: subFilters(NULL), hInputs(NULL), hOutputs(NULL), hist(NULL),
diff --git a/Transceiver52M/ChannelizerBase.h b/Transceiver52M/ChannelizerBase.h
index 7da506b..025ff25 100644
--- a/Transceiver52M/ChannelizerBase.h
+++ b/Transceiver52M/ChannelizerBase.h
@@ -32,7 +32,7 @@ protected:
/* Buffer length validity checking */
bool checkLen(size_t innerLen, size_t outerLen);
public:
- /* Initilize channelizer/synthesis filter internals */
+ /* Initialize channelizer/synthesis filter internals */
bool init();
};
diff --git a/Transceiver52M/Complex.h b/Transceiver52M/Complex.h
index d02944b..6e72346 100644
--- a/Transceiver52M/Complex.h
+++ b/Transceiver52M/Complex.h
@@ -5,7 +5,7 @@ unlike the built-in complex<> templates, these inline most operations for speed
/*
* Copyright 2008 Free Software Foundation, Inc.
*
-* This software is distributed under multiple licenses; see the COPYING file in the main directory for licensing information for this specific distribuion.
+* This software is distributed under multiple licenses; see the COPYING file in the main directory for licensing information for this specific distribution.
*
* This use of this software may be subject to additional restrictions.
* See the LEGAL file in the main directory for details.
diff --git a/Transceiver52M/Resampler.h b/Transceiver52M/Resampler.h
index 139b857..5af8d26 100644
--- a/Transceiver52M/Resampler.h
+++ b/Transceiver52M/Resampler.h
@@ -35,12 +35,12 @@ public:
Resampler(size_t p, size_t q, size_t filt_len = 16);
~Resampler();
- /* Initilize resampler filterbank.
+ /* Initialize resampler filterbank.
* @param bw bandwidth factor on filter generation (pre-window)
* @return false on error, zero otherwise
*
* Automatic setting is to compute the filter to prevent aliasing with
- * a Blackman-Harris window. Adjustment is made through a bandwith
+ * a Blackman-Harris window. Adjustment is made through a bandwidth
* factor to shift the cutoff and/or the constituent filter lengths.
* Calculation of specific rolloff factors or 3-dB cutoff points is
* left as an excersize for the reader.
diff --git a/Transceiver52M/Transceiver.cpp b/Transceiver52M/Transceiver.cpp
index 2f4018c..9697bb3 100644
--- a/Transceiver52M/Transceiver.cpp
+++ b/Transceiver52M/Transceiver.cpp
@@ -909,7 +909,7 @@ bool Transceiver::driveControl(size_t chan)
sprintf(response, "RSP SETFORMAT %u %u", version_recv, version_recv);
}
} else if (match_cmd(command, "_SETBURSTTODISKMASK", &params)) {
- // debug command! may change or disapear without notice
+ // debug command! may change or disappear without notice
// set a mask which bursts to dump to disk
int mask;
sscanf(params, "%d", &mask);
diff --git a/Transceiver52M/Transceiver.h b/Transceiver52M/Transceiver.h
index 30f6a60..ed063dd 100644
--- a/Transceiver52M/Transceiver.h
+++ b/Transceiver52M/Transceiver.h
@@ -216,7 +216,7 @@ private:
bool start();
void stop();
- /** Protect destructor accessable stop call */
+ /** Protect destructor accessible stop call */
Mutex mLock;
protected:
diff --git a/Transceiver52M/arch/arm/convolve.c b/Transceiver52M/arch/arm/convolve.c
index 63b1655..adb718d 100644
--- a/Transceiver52M/arch/arm/convolve.c
+++ b/Transceiver52M/arch/arm/convolve.c
@@ -58,7 +58,7 @@ static void neon_conv_cmplx_4n(float *x, float *h, float *y, int h_len, int len)
}
#endif
-/* API: Initalize convolve module */
+/* API: Initialize convolve module */
void convolve_init(void)
{
/* Stub */
diff --git a/Transceiver52M/arch/common/fft.c b/Transceiver52M/arch/common/fft.c
index ad096b1..2261672 100644
--- a/Transceiver52M/arch/common/fft.c
+++ b/Transceiver52M/arch/common/fft.c
@@ -103,7 +103,7 @@ void free_fft(struct fft_hdl *hdl)
}
/*! \brief Run multiple DFT operations with the initialized plan
- * \param[in] hdl handle to an intitialized fft struct
+ * \param[in] hdl handle to an initialized fft struct
*
* Input and output buffers are configured with init_fft().
*/
diff --git a/Transceiver52M/arch/x86/convert.c b/Transceiver52M/arch/x86/convert.c
index 07cdf59..bbcfd67 100644
--- a/Transceiver52M/arch/x86/convert.c
+++ b/Transceiver52M/arch/x86/convert.c
@@ -27,7 +27,7 @@
#include "config.h"
#endif
-/* Architecture dependant function pointers */
+/* Architecture dependent function pointers */
struct convert_cpu_context {
void (*convert_si16_ps_16n) (float *, const short *, int);
void (*convert_si16_ps) (float *, const short *, int);
diff --git a/Transceiver52M/arch/x86/convolve.c b/Transceiver52M/arch/x86/convolve.c
index 209d377..66fca74 100644
--- a/Transceiver52M/arch/x86/convolve.c
+++ b/Transceiver52M/arch/x86/convolve.c
@@ -27,7 +27,7 @@
#include "config.h"
#endif
-/* Architecture dependant function pointers */
+/* Architecture dependent function pointers */
struct convolve_cpu_context {
void (*conv_cmplx_4n) (const float *, int, const float *, int, float *,
int, int, int);
@@ -66,7 +66,7 @@ int _base_convolve_complex(const float *x, int x_len,
int bounds_check(int x_len, int h_len, int y_len,
int start, int len);
-/* API: Initalize convolve module */
+/* API: Initialize convolve module */
void convolve_init(void)
{
c.conv_cmplx_4n = (void *)_base_convolve_complex;
diff --git a/Transceiver52M/device/common/radioDevice.h b/Transceiver52M/device/common/radioDevice.h
index d27a52c..26903e8 100644
--- a/Transceiver52M/device/common/radioDevice.h
+++ b/Transceiver52M/device/common/radioDevice.h
@@ -1,7 +1,7 @@
/*
* Copyright 2008 Free Software Foundation, Inc.
*
-* This software is distributed under multiple licenses; see the COPYING file in the main directory for licensing information for this specific distribuion.
+* This software is distributed under multiple licenses; see the COPYING file in the main directory for licensing information for this specific distribution.
*
* This use of this software may be subject to additional restrictions.
* See the LEGAL file in the main directory for details.
diff --git a/Transceiver52M/device/common/smpl_buf.h b/Transceiver52M/device/common/smpl_buf.h
index 383c814..ab612de 100644
--- a/Transceiver52M/device/common/smpl_buf.h
+++ b/Transceiver52M/device/common/smpl_buf.h
@@ -33,7 +33,7 @@
/*
Sample Buffer - Allows reading and writing of timed samples using osmo-trx
timestamps. Time conversions are handled
- internally or accessable through the static convert calls.
+ internally or accessible through the static convert calls.
*/
class smpl_buf {
public:
diff --git a/Transceiver52M/device/lms/LMSDevice.cpp b/Transceiver52M/device/lms/LMSDevice.cpp
index feeb646..b5993b8 100644
--- a/Transceiver52M/device/lms/LMSDevice.cpp
+++ b/Transceiver52M/device/lms/LMSDevice.cpp
@@ -624,7 +624,7 @@ void LMSDevice::update_stream_stats_rx(size_t chan, bool *overrun)
m_ctr[chan].rx_overruns += status.overrun;
/* Dropped packets in Rx are counted when gaps in Rx timestamps are
- detected (likely because buffer oveflow in hardware). Value count
+ detected (likely because buffer overflow in hardware). Value count
since the last call to LMS_GetStreamStatus(stream). */
if (status.droppedPackets) {
changed = true;
diff --git a/Transceiver52M/device/lms/LMSDevice.h b/Transceiver52M/device/lms/LMSDevice.h
index 1464c53..003d064 100644
--- a/Transceiver52M/device/lms/LMSDevice.h
+++ b/Transceiver52M/device/lms/LMSDevice.h
@@ -4,7 +4,7 @@
* SPDX-License-Identifier: AGPL-3.0+
*
* This software is distributed under multiple licenses; see the COPYING file in
-* the main directory for licensing information for this specific distribuion.
+* the main directory for licensing information for this specific distribution.
*
* This use of this software may be subject to additional restrictions.
* See the LEGAL file in the main directory for details.
diff --git a/Transceiver52M/device/usrp1/USRPDevice.h b/Transceiver52M/device/usrp1/USRPDevice.h
index bb70648..6dfa5f0 100644
--- a/Transceiver52M/device/usrp1/USRPDevice.h
+++ b/Transceiver52M/device/usrp1/USRPDevice.h
@@ -4,7 +4,7 @@
* SPDX-License-Identifier: AGPL-3.0+
*
* This software is distributed under multiple licenses; see the COPYING file in
-* the main directory for licensing information for this specific distribuion.
+* the main directory for licensing information for this specific distribution.
*
* This use of this software may be subject to additional restrictions.
* See the LEGAL file in the main directory for details.
diff --git a/Transceiver52M/proto_trxd.c b/Transceiver52M/proto_trxd.c
index fbef77a..5a898b9 100644
--- a/Transceiver52M/proto_trxd.c
+++ b/Transceiver52M/proto_trxd.c
@@ -72,7 +72,7 @@ bool trxd_send_burst_ind_v0(size_t chan, int fd, const struct trx_ul_burst_ind *
if(bi->idle)
return true;
- /* +2: Historically (OpenBTS times), two extra non-used bytes are sent appeneded to each burst */
+ /* +2: Historically (OpenBTS times), two extra non-used bytes are sent appended to each burst */
char buf[sizeof(struct trxd_hdr_v0) + bi->nbits + 2];
struct trxd_hdr_v0* pkt = (struct trxd_hdr_v0*)buf;
diff --git a/Transceiver52M/radioInterface.h b/Transceiver52M/radioInterface.h
index d72fb69..d9fa414 100644
--- a/Transceiver52M/radioInterface.h
+++ b/Transceiver52M/radioInterface.h
@@ -1,7 +1,7 @@
/*
* Copyright 2008 Free Software Foundation, Inc.
*
-* This software is distributed under multiple licenses; see the COPYING file in the main directory for licensing information for this specific distribuion.
+* This software is distributed under multiple licenses; see the COPYING file in the main directory for licensing information for this specific distribution.
*
* This use of this software may be subject to additional restrictions.
* See the LEGAL file in the main directory for details.
@@ -79,7 +79,7 @@ public:
bool start();
bool stop();
- /** intialization */
+ /** initialization */
virtual bool init(int type);
virtual void close();
diff --git a/Transceiver52M/sigProcLib.cpp b/Transceiver52M/sigProcLib.cpp
index 011ddff..04f7e30 100644
--- a/Transceiver52M/sigProcLib.cpp
+++ b/Transceiver52M/sigProcLib.cpp
@@ -345,7 +345,7 @@ static signalVector *convolve(const signalVector *x, const signalVector *h,
_x = x;
/*
- * Four convovle types:
+ * Four convolve types:
* 1. Complex-Real (aligned)
* 2. Complex-Complex (aligned)
* 3. Complex-Real (!aligned)
@@ -723,7 +723,7 @@ static signalVector *mapEdgeSymbols(const BitVector &bits)
*
* Delay the EDGE downlink bursts by one symbol in order to match GMSK pulse
* shaping group delay. The difference in group delay arises from the dual
- * pulse filter combination of the GMSK Laurent represenation whereas 8-PSK
+ * pulse filter combination of the GMSK Laurent representation whereas 8-PSK
* uses a single pulse linear filter.
*/
static signalVector *shapeEdgeBurst(const signalVector &symbols)
diff --git a/Transceiver52M/sigProcLib.h b/Transceiver52M/sigProcLib.h
index fd9a5f0..dd03190 100644
--- a/Transceiver52M/sigProcLib.h
+++ b/Transceiver52M/sigProcLib.h
@@ -1,7 +1,7 @@
/*
* Copyright 2008 Free Software Foundation, Inc.
*
-* This software is distributed under multiple licenses; see the COPYING file in the main directory for licensing information for this specific distribuion.
+* This software is distributed under multiple licenses; see the COPYING file in the main directory for licensing information for this specific distribution.
*
* This use of this software may be subject to additional restrictions.
* See the LEGAL file in the main directory for details.
diff --git a/configure.ac b/configure.ac
index 350c77c..d5463e9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -65,7 +65,7 @@ AC_PROG_LIBTOOL
dnl Checks for header files.
AC_HEADER_STDC
-dnl This is required for GnuRadio includes to understand endianess correctly:
+dnl This is required for GnuRadio includes to understand endianness correctly:
AC_CHECK_HEADERS([byteswap.h])
dnl Checks for typedefs, structures, and compiler characteristics.
diff --git a/contrib/jenkins.sh b/contrib/jenkins.sh
index f3f5ed9..84e4ea7 100755
--- a/contrib/jenkins.sh
+++ b/contrib/jenkins.sh
@@ -15,7 +15,7 @@ substr() { [ -z "${2##*$1*}" ]; }
mychroot_nocwd() {
# LC_ALL + LANGUAGE set to avoid lots of print errors due to locale not being set inside container
# PATH is needed to be able to reach binaries like ldconfig without logging in to root, which adds the paths to PATH.
- # PROOT_NO_SECCOMP is requried due to proot bug #106
+ # PROOT_NO_SECCOMP is required due to proot bug #106
LC_ALL=C LANGUAGE=C PATH="$PATH:/usr/sbin:/sbin" PROOT_NO_SECCOMP=1 proot -r "$ROOTFS" -w / -b /proc --root-id -q qemu-arm-static "$@"
}
diff --git a/doc/manuals/chapters/device-usrp-inband-signaling-usb.adoc b/doc/manuals/chapters/device-usrp-inband-signaling-usb.adoc
index dac77e0..693bb60 100644
--- a/doc/manuals/chapters/device-usrp-inband-signaling-usb.adoc
+++ b/doc/manuals/chapters/device-usrp-inband-signaling-usb.adoc
@@ -3,7 +3,7 @@
This section specifies the format of USB packets used for in-band data
transmission and signaling on the USRP1. All packets are 512-byte long, and are
-transfered using USB "bulk" transfers.
+transferred using USB "bulk" transfers.
IN packets are sent towards the host. OUT packets are sent away from the host.
diff --git a/doc/manuals/chapters/trx-backends.adoc b/doc/manuals/chapters/trx-backends.adoc
index fb1e960..78bc45d 100644
--- a/doc/manuals/chapters/trx-backends.adoc
+++ b/doc/manuals/chapters/trx-backends.adoc
@@ -12,7 +12,7 @@ B200 family and Fairwaves UmTRX family, and used to be the default backend used
for legacy @osmo-trx@ binary when per-backend binaries didn't exist yet.
Any device providing generic support for UHD should theoretically be able to be
-run through this backend without much effort, but pracitcal experience showed
+run through this backend without much effort, but practical experience showed
that some devices don't play well with it, such as the LimeSDR family of
devices, which showed far better results when using its native interface.
diff --git a/doc/manuals/vty/trx_vty_reference.xml b/doc/manuals/vty/trx_vty_reference.xml
index 38d64c1..8738235 100644
--- a/doc/manuals/vty/trx_vty_reference.xml
+++ b/doc/manuals/vty/trx_vty_reference.xml
@@ -1196,7 +1196,7 @@
<command id='clock-ref (internal|external|gpsdo)'>
<params>
<param name='clock-ref' doc='Set the Reference Clock' />
- <param name='internal' doc='Enable internal referece (default)' />
+ <param name='internal' doc='Enable internal reference (default)' />
<param name='external' doc='Enable external 10 MHz reference' />
<param name='gpsdo' doc='Enable GPSDO reference' />
</params>
diff --git a/tests/Transceiver52M/convolve_test.c b/tests/Transceiver52M/convolve_test.c
index cda5385..168c847 100644
--- a/tests/Transceiver52M/convolve_test.c
+++ b/tests/Transceiver52M/convolve_test.c
@@ -146,9 +146,9 @@ struct test_vec
float *h;
float *y;
- int x_len; /* Theses are in # of _floats_ ! */
- int h_len; /* Theses are in # of _floats_ ! */
- int y_len; /* Theses are in # of _floats_ ! */
+ int x_len; /* These are in # of _floats_ ! */
+ int h_len; /* These are in # of _floats_ ! */
+ int y_len; /* These are in # of _floats_ ! */
};
/* Reset test vectors */