XCORE SDK
XCORE Software Development Kit
xs3_vect_s8.h
1 // Copyright 2020-2021 XMOS LIMITED.
2 // This Software is subject to the terms of the XMOS Public Licence: Version 1.
3 
4 #pragma once
5 
6 #include "xs3_math_conf.h"
7 #include "xs3_math_types.h"
8 #include "xs3_util.h"
9 
10 #ifdef __XC__
11 extern "C" {
12 #endif
13 
53 C_API
55  int8_t a[],
56  const int8_t b[],
57  const unsigned length);
58 
59 
60 
61 
62 #ifdef __XC__
63 } //extern "C"
64 #endif
65 
void xs3_vect_s8_is_negative(int8_t a[], const int8_t b[], const unsigned length)
Determine whether each element of a signed 8-bit input vector are negative.
Definition: xs3_vect_s8_is_negative.c:13