Lines Matching refs:Array
32 // Disable warning when last field of data structure is a zero sized array.
40 This macro generates a divide by zero error or a zero size array declaration in
597 /// implementation and could be an array or structure.
632 /// implementation and could be an array or structure.
651 /// implementation and could be an array or structure.
668 /// implementation and could be an array or structure.
1243 Return the number of elements in an array.
1245 @param Array An object of array type. Array is only used as an argument to
1246 the sizeof operator, therefore Array is never evaluated. The
1247 caller is responsible for ensuring that Array's type is not
1248 incomplete; that is, Array must have known constant size.
1250 @return The number of elements in Array. The result has type UINTN.
1253 #define ARRAY_SIZE(Array) (sizeof (Array) / sizeof ((Array)[0]))