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
33
34
35
36
37
38
39
40
41
42
43
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
72
74
75
76
77
78
79
81
82
85
86
87
90
91
92
98
106
107
114
123
124
125
126
127
128
129
130
131
132
138
139
140
141
142
143
144
145
146
147
154
155
156
157
158
159
160
161
162
163
164
165
/* ... */
/* ... */
#ifndef CODE_UTILS_HPP_
#define CODE_UTILS_HPP_
#include <stdbool.h>
#include <openthread/error.h>
#include "common/arg_macros.hpp"
/* ... */
#define OT_ARRAY_LENGTH(aArray) (sizeof(aArray) / sizeof(aArray[0]))
/* ... */
#define OT_ARRAY_END(aArray) (&aArray[OT_ARRAY_LENGTH(aArray)])
/* ... */
#define OT_ALIGN(aPointer, aAlignment) \
((void *)(((uintptr_t)(aPointer) + (aAlignment)-1UL) & ~((uintptr_t)(aAlignment)-1UL)))...
#define OT_ALIGNED_VAR_SIZE(size, align_type) (((size) + (sizeof(align_type) - 1)) / sizeof(align_type))
#define OT_DEFINE_ALIGNED_VAR(name, size, align_type) \
align_type name[(((size) + (sizeof(align_type) - 1)) / sizeof(align_type))]...
/* ... */
#define OT_MIN(a, b) ((b) < (a) ? (b) : (a))
/* ... */
#define OT_MAX(a, b) ((a) < (b) ? (b) : (a))
/* ... */
#define SuccessOrExit(aStatus) \
do \
{ \
if ((aStatus) != 0) \
{ \
goto exit; \
}{...} \
}{...} while (false)...
/* ... */
#define VerifyOrExit(...) \
do \
{ \
if (!(OT_FIRST_ARG(__VA_ARGS__))) \
{ \
OT_SECOND_ARG(__VA_ARGS__); \
goto exit; \
}{...} \
}{...} while (false)...
/* ... */
#define ExitNow(...) \
do \
{ \
__VA_ARGS__; \
goto exit; \
}{...} while (false)...
/* ... */
#define IgnoreReturnValue(aStatement) \
do \
{ \
if (aStatement) \
{ \
}{...} \
}{...} while (false)...
11 defines
/* ... */
static inline void IgnoreError(otError aError) { OT_UNUSED_VARIABLE(aError); }
/* ... */
#endif