LMMS
Loading...
Searching...
No Matches
buffer.h
Go to the documentation of this file.
1#ifndef _BUFFER_H
2#define _BUFFER_H
3
4/* subtract buffer b from a, save in c
5 *
6 * this could be sped up by vector operations
7 */
8
9static inline void buffer_sub(const float* a, const float *b, float *c, int cnt) {
10 int i;
11 for(i=0;i<cnt;++i)
12 *c++ = *a++ - *b++;
13}
14
15#endif
uint8_t a
Definition Spc_Cpu.h:141
register unsigned i
Definition inflate.c:1575
static void buffer_sub(const float *a, const float *b, float *c, int cnt)
Definition buffer.h:9
return c
Definition crypt.c:175
b
Definition crypt.c:628