HomeSort by relevance Sort by last modified time
    Searched defs:ARRAY_SIZE (Results 1 - 25 of 219) sorted by null

1 2 3 4 5 6 7 8 9

  /system/netd/netutils_wrappers/
NetUtilsWrapper.h 17 #define ARRAY_SIZE(x) (sizeof((x)) / (sizeof(((x)[0]))))
  /device/google/contexthub/firmware/os/algos/util/
array.h 4 #define ARRAY_SIZE(a) (sizeof((a)) / sizeof((a)[0]))
  /external/libdrm/tests/util/
common.h 29 #ifndef ARRAY_SIZE
30 #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
  /external/lzma/CPP/Common/
Common.h 11 #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[1]))
  /external/vulkan-validation-layers/layers/
vk_layer_extension_utils.h 26 #define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
vk_layer_extension_utils.cpp 24 #define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
macro.h 23 #define ARRAY_SIZE(A) (static_cast<uint32_t>(sizeof(A) / sizeof(A[0])))
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/layers/
vk_layer_extension_utils.h 26 #define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
vk_layer_extension_utils.cpp 24 #define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
  /system/vold/
VoldUtil.h 25 #define ARRAY_SIZE(a) (sizeof(a) / sizeof(*(a)))
  /external/deqp/external/openglcts/modules/gles31/
es31cProgramInterfaceQueryTests.hpp 29 #define ARRAY_SIZE(OBJ) (sizeof(OBJ) / sizeof(OBJ)[0])
  /external/selinux/libselinux/src/android/
android_common.h 42 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
  /external/vixl/test/
test-utils.h 32 #define ARRAY_SIZE(array) (sizeof(array) / sizeof((array)[0]))
  /frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
ABase.h 21 #ifndef ARRAY_SIZE
22 #define ARRAY_SIZE(a) (sizeof(a) / sizeof(*(a)))
  /system/extras/tests/pagingtest/
pagingtest.h 8 #define ARRAY_SIZE(a) (sizeof(a) / sizeof(*(a)))
  /external/icu/icu4c/source/samples/layout/
arraymem.h 15 #define ARRAY_SIZE(array) (sizeof array / sizeof array[0])
  /external/ltp/include/
tst_common.h 28 #ifndef ARRAY_SIZE
29 # define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
  /external/ltp/testcases/open_posix_testsuite/include/
posixtest.h 43 #ifndef ARRAY_SIZE
44 #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof(arr[0]))
  /external/vboot_reference/tests/
cgptlib_test.h 19 #define ARRAY_SIZE(array) (sizeof(array) / sizeof(array[0]))
  /system/chre/util/include/chre/util/
macros.h 23 #define ARRAY_SIZE(array) (sizeof(array) / sizeof((array)[0]))
24 #define ARRAY_END(array) (array + ARRAY_SIZE(array))
  /cts/hostsidetests/os/test-apps/StaticSharedNativeLibConsumer/jni/
version.cpp 27 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
59 gMethods, ARRAY_SIZE(gMethods));
  /external/clang/test/Analysis/
index-type.c 20 #define ARRAY_SIZE 0x100000000
23 char arr[ARRAY_SIZE];
  /external/libvpx/libvpx/third_party/libyuv/source/
video_common.cc 19 #define ARRAY_SIZE(x) (int)(sizeof(x) / sizeof(x[0]))
52 for (i = 0; i < ARRAY_SIZE(kFourCCAliases); ++i) {
  /external/libyuv/files/source/
video_common.cc 18 #define ARRAY_SIZE(x) (int)(sizeof(x) / sizeof(x[0]))
51 for (i = 0; i < ARRAY_SIZE(kFourCCAliases); ++i) {
  /external/strace/
macros.h 33 #define ARRAY_SIZE(a_) (sizeof(a_) / sizeof((a_)[0]) + MUST_BE_ARRAY(a_))

Completed in 1464 milliseconds

1 2 3 4 5 6 7 8 9