Lines Matching refs:ARRAYSIZE
24 // COMPILE_ASSERT(ARRAYSIZE(content_type_names) == CONTENT_NUM_TYPES,
114 // cases, you have to use the unsafe ARRAYSIZE() macro below. This is
134 // ARRAYSIZE performs essentially the same calculation as arraysize,
140 // The expression ARRAYSIZE(a) is a compile-time constant of type
143 // ARRAYSIZE catches a few type errors. If you see a compiler error
147 // when using ARRAYSIZE, you are (wrongfully) giving it a pointer.
148 // You should only use ARRAYSIZE on statically allocated arrays.
153 // ARRAYSIZE(arr) works by inspecting sizeof(arr) (the # of bytes in
175 // Starting with Visual C++ 2005, WinNT.h includes ARRAYSIZE.
177 #define ARRAYSIZE(a) \