TF-M Reference Manual  1.2.0
TrustedFirmware-M
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
s_test_helpers.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017-2020, Arm Limited. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  *
6  */
7 
8 #ifndef __S_TEST_HELPERS_H__
9 #define __S_TEST_HELPERS_H__
10 
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14 
27 #define BUFFER_SIZE 24
28 #define PADDING_SIZE 8
29 #define HALF_PADDING_SIZE 4
30 
31 #define BUFFER_PLUS_PADDING_SIZE (BUFFER_SIZE + PADDING_SIZE)
32 #define BUFFER_PLUS_HALF_PADDING_SIZE (BUFFER_SIZE + HALF_PADDING_SIZE)
33 
34 #ifdef __cplusplus
35 }
36 #endif
37 
38 #endif /* __S_TEST_HELPERS_H__ */