| 657 | } |
| 658 | |
| 659 | static inline int _not_align(void *start, rt_size_t length, rt_size_t mask) |
| 660 | { |
| 661 | return (start != RT_NULL) && |
| 662 | (((uintptr_t)start & mask) || (length & mask)); |
| 663 | } |
| 664 | |
| 665 | /** if the flag is currently supported */ |
| 666 | static inline int _not_support(rt_size_t flags) |
no outgoing calls
no test coverage detected