ARRAY_SIZE 33 arch/x86/boot/boot.h #define ARRAY_SIZE(x) (sizeof(x) / sizeof(*(x))) ARRAY_SIZE 13 arch/x86/boot/compressed/relocs.c #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0])) ARRAY_SIZE 45 include/linux/kernel.h #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr)) ARRAY_SIZE 506 scripts/mod/file2alias.c #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))