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

1 2 3 4 5

  /external/bluetooth/bluedroid/test/suite/
base.h 29 #ifndef ARRAY_SIZE
30 # define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
  /external/chromium_org/third_party/webrtc/base/
basicdefs.h 18 #define ARRAY_SIZE(x) (static_cast<int>(sizeof(x) / sizeof(x[0])))
  /external/bluetooth/bluedroid/osi/include/
osi.h 7 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
  /external/chromium_org/third_party/mesa/src/src/egl/main/
egldefines.h 42 #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
  /external/mesa3d/src/egl/main/
egldefines.h 42 #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
  /device/samsung/manta/libsensors/
sensors.h 32 #define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
  /external/chromium_org/third_party/icu/source/samples/layout/
arraymem.h 12 #define ARRAY_SIZE(array) (sizeof array / sizeof array[0])
  /external/icu/icu4c/source/samples/layout/
arraymem.h 12 #define ARRAY_SIZE(array) (sizeof array / sizeof array[0])
  /external/libyuv/files/source/
video_common.cc 19 #define ARRAY_SIZE(x) (static_cast<int>((sizeof(x) / sizeof(x[0]))))
42 for (int i = 0; i < ARRAY_SIZE(kFourCCAliases); ++i) {
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
video_common.cc 19 #define ARRAY_SIZE(x) (int)(sizeof(x) / sizeof(x[0]))
51 for (i = 0; i < ARRAY_SIZE(kFourCCAliases); ++i) {
  /external/chromium_org/third_party/libyuv/source/
video_common.cc 19 #define ARRAY_SIZE(x) (int)(sizeof(x) / sizeof(x[0]))
51 for (i = 0; i < ARRAY_SIZE(kFourCCAliases); ++i) {
  /external/android-clat/
clatd.h 28 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
  /external/chromium_org/third_party/icu/source/test/letest/
letest.h 25 #define ARRAY_SIZE(array) (sizeof array / sizeof array[0])
  /external/chromium_org/third_party/mesa/src/include/pci_ids/
pci_id_driver_map.h 6 #ifndef ARRAY_SIZE
7 #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
66 { 0x8086, "i915", i915_chip_ids, ARRAY_SIZE(i915_chip_ids) },
67 { 0x8086, "i965", i965_chip_ids, ARRAY_SIZE(i965_chip_ids) },
69 { 0x1002, "radeon", r100_chip_ids, ARRAY_SIZE(r100_chip_ids) },
70 { 0x1002, "r200", r200_chip_ids, ARRAY_SIZE(r200_chip_ids) },
72 { 0x1002, "r300", r300_chip_ids, ARRAY_SIZE(r300_chip_ids) },
73 { 0x1002, "r600", r600_chip_ids, ARRAY_SIZE(r600_chip_ids) },
74 { 0x1002, "radeonsi", radeonsi_chip_ids, ARRAY_SIZE(radeonsi_chip_ids) },
76 { 0x15ad, "vmwgfx", vmwgfx_chip_ids, ARRAY_SIZE(vmwgfx_chip_ids) }
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gbm/main/
backend.c 37 #define ARRAY_SIZE(a) (sizeof(a)/sizeof((a)[0]))
94 for (i = 0; i < ARRAY_SIZE(backends); ++i) {
119 for (i = 0; i < ARRAY_SIZE(backends) && dev == NULL; ++i) {
  /external/icu/icu4c/source/test/letest/
letest.h 25 #define ARRAY_SIZE(array) (sizeof array / sizeof array[0])
  /external/libselinux/src/
label.c 17 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
72 if (backend >= ARRAY_SIZE(initfuncs)) {
  /external/libunwind/include/
compiler.h 72 #define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0]))
  /external/mesa3d/include/pci_ids/
pci_id_driver_map.h 6 #ifndef ARRAY_SIZE
7 #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
66 { 0x8086, "i915", i915_chip_ids, ARRAY_SIZE(i915_chip_ids) },
67 { 0x8086, "i965", i965_chip_ids, ARRAY_SIZE(i965_chip_ids) },
69 { 0x1002, "radeon", r100_chip_ids, ARRAY_SIZE(r100_chip_ids) },
70 { 0x1002, "r200", r200_chip_ids, ARRAY_SIZE(r200_chip_ids) },
72 { 0x1002, "r300", r300_chip_ids, ARRAY_SIZE(r300_chip_ids) },
73 { 0x1002, "r600", r600_chip_ids, ARRAY_SIZE(r600_chip_ids) },
74 { 0x1002, "radeonsi", radeonsi_chip_ids, ARRAY_SIZE(radeonsi_chip_ids) },
76 { 0x15ad, "vmwgfx", vmwgfx_chip_ids, ARRAY_SIZE(vmwgfx_chip_ids) }
    [all...]
  /external/mesa3d/src/gbm/main/
backend.c 37 #define ARRAY_SIZE(a) (sizeof(a)/sizeof((a)[0]))
94 for (i = 0; i < ARRAY_SIZE(backends); ++i) {
119 for (i = 0; i < ARRAY_SIZE(backends) && dev == NULL; ++i) {
  /art/test/011-array-copy/src/
Main.java 49 static final int ARRAY_SIZE = 8;
52 for (int i = 0; i < ARRAY_SIZE; i++) {
57 for (int i = 0; i < ARRAY_SIZE; i++) {
62 for (int i = 0; i < ARRAY_SIZE; i++) {
67 for (int i = 0; i < ARRAY_SIZE; i++) {
77 byte[] byteArray = new byte[ARRAY_SIZE];
78 short[] shortArray = new short[ARRAY_SIZE];
79 int[] intArray = new int[ARRAY_SIZE];
80 long[] longArray = new long[ARRAY_SIZE];
92 for (int i = 0; i < ARRAY_SIZE; i++)
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
inputext.cpp 23 #define ARRAY_SIZE(array) (sizeof array / sizeof array[0])
ucsdet.cpp 24 #define ARRAY_SIZE(array) (sizeof array / sizeof array[0])
  /external/icu/icu4c/source/i18n/
inputext.cpp 23 #define ARRAY_SIZE(array) (sizeof array / sizeof array[0])
ucsdet.cpp 24 #define ARRAY_SIZE(array) (sizeof array / sizeof array[0])

Completed in 348 milliseconds

1 2 3 4 5