Lines Matching refs:a
6 small-embedded devices, it needs to have a very small memory footprint and
28 from the assembly code in the port files. Therefore, adding a declaration in
35 and therefore, not declared in a header file.
48 MISRA C:2012 Rule 11.1: Conversions shall not be performed between a pointer to
58 MISRA C:2012 Rule 11.3: A cast shall not be performed between a pointer to
59 object type and a pointer to a different object type.
62 - This rule prohibits casting a pointer to object into a pointer to a
64 leading to undefined behavior. Even if the casting produces a correctly
78 This rule prohibits conversion of a pointer to void into a pointer to
89 - The conversion from a pointer to void into a pointer to EventGroup_t is
90 safe because it is a pointer to EventGroup_t, which is returned to the
95 - The conversion from a pointer to void in list macros for list item owner
100 - The conversion from a pointer to void into a pointer to EventGroup_t is
101 safe because it is a pointer to EventGroup_t, which is passed as a
106 - The conversion from a pointer to void into a pointer to uint8_t is safe