Lines Matching +full:indexed +full:- +full:array
1 // SPDX-License-Identifier: GPL-2.0-only
2 /// Use ARRAY_SIZE instead of dividing sizeof array with sizeof an element
5 //# where there is a division of sizeof the array by the sizeof its first
6 //# element or by any indexed element or the element type. It replaces the
12 // Options: --no-includes --include-headers
24 //----------------------------------------------------------
26 //----------------------------------------------------------
40 //----------------------------------------------------------
42 //----------------------------------------------------------
49 - (sizeof(E)/sizeof(*E))
52 - (sizeof(E)/sizeof(E[...]))
55 - (sizeof(E)/sizeof(T))
59 //----------------------------------------------------------
61 //----------------------------------------------------------