| 131 | |
| 132 | #ifndef rt_ilog2 |
| 133 | rt_inline int rt_ilog2(rt_ubase_t v) |
| 134 | { |
| 135 | int l = 0; |
| 136 | |
| 137 | while ((1UL << l) < v) |
| 138 | { |
| 139 | l++; |
| 140 | } |
| 141 | |
| 142 | return l; |
| 143 | } |
| 144 | #endif /* !rt_ilog2 */ |
| 145 | |
| 146 | #endif /* __MISC_H__ */ |
no outgoing calls
no test coverage detected