IS_PWR_OF_2 is only used within OpenOCD.
 
Symbols
loading...
Files
loading...

IS_PWR_OF_2 macro

Syntax

#define IS_PWR_OF_2(x) \     ({ \     typeof(x) _x = (x); \     _x == 0 || (_x & (_x - 1)) == 0; \     })

Arguments

x

References

LocationText
align.h:24
#define IS_PWR_OF_2(x) \
mips32_pracc.c:681
if (!IS_PWR_OF_2(clsiz)) {
xtensa.c:2664
!IS_PWR_OF_2(watchpoint->length) ||