aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32/STM32F4xx/FSMC_SRAM/membench.h
blob: 76ef46c43713944a10fae09ac820eae9dc859359 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef MEMBENCH_H_
#define MEMBENCH_H_

/*
 *
 */
typedef struct {
  void    *start;
  size_t  size;
} membench_t;

/*
 *
 */
typedef struct {
  double  memset_spd;
  double  memcpy_spd;
  double  memcmp_spd;
} membench_result_t;

/*
 *
 */
#ifdef __cplusplus
extern "C" {
#endif
  void membench_run(membench_t *dest, const membench_t *src, membench_result_t *ret);
#ifdef __cplusplus
}
#endif

#endif /* MEMBENCH_H_ */