Lines Matching refs:a
6 designed for small-embedded devices, it needs to have a very small memory
22 MISRA C:2012 Dir 4.7: If a function returns error information, then that error
36 from the assembly code in the port files. Therefore, adding a declaration in
43 and therefore, not declared in a header file.
56 MISRA C:2012 Rule 11.1: Conversions shall not be performed between a pointer to
66 MISRA C:2012 Rule 11.3: A cast shall not be performed between a pointer to
67 object type and a pointer to a different object type.
70 - This rule prohibits casting a pointer to object into a pointer to a
72 leading to undefined behavior. Even if the casting produces a correctly
86 This rule prohibits conversion of a pointer to void into a pointer to
97 - The conversion from a pointer to void into a pointer to EventGroup_t is
98 safe because it is a pointer to EventGroup_t, which is returned to the
103 - The conversion from a pointer to void in list macros for list item owner
108 - The conversion from a pointer to void into a pointer to EventGroup_t is
109 safe because it is a pointer to EventGroup_t, which is passed as a
114 - The conversion from a pointer to void into a pointer to uint8_t is safe