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

1 2 3 4

  /external/chromium/third_party/libjingle/source/talk/base/
basicdefs.h 35 #define ARRAY_SIZE(x) (static_cast<int>((sizeof(x)/sizeof(x[0]))))
common.h 63 #define ARRAY_SIZE(x) (static_cast<int>((sizeof(x)/sizeof(x[0]))))
  /system/vold/
VoldUtil.h 20 #define ARRAY_SIZE(a) (sizeof(a) / sizeof(*(a)))
  /system/core/init/
util.h 23 #define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0]))
  /device/samsung/manta/libsensors/
sensors.h 32 #define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
  /device/samsung/tuna/libsensors/
sensors.h 34 #define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
  /external/icu4c/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) {
  /system/netd/
NetdConstants.h 38 #define ARRAY_SIZE(a) (sizeof(a) / sizeof(*(a)))
  /hardware/invensense/libsensors/
sensors.h 34 #define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
  /external/harfbuzz_ng/src/hb-icu-le/
letest.h 37 #define ARRAY_SIZE(array) (sizeof array / sizeof array[0])
  /external/icu4c/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)) {
  /frameworks/av/media/libmedia/
autodetect.cpp 24 #define ARRAY_SIZE(x) (sizeof(x) / sizeof(*x))
875 if (charMatchesEncoding(ch, kShiftJISRanges, ARRAY_SIZE(kShiftJISRanges)))
877 if (charMatchesEncoding(ch, kGBKRanges, ARRAY_SIZE(kGBKRanges)))
879 if (charMatchesEncoding(ch, kBig5Ranges, ARRAY_SIZE(kBig5Ranges)))
881 if (charMatchesEncoding(ch, kEUCKRRanges, ARRAY_SIZE(kEUCKRRanges)))
  /hardware/ti/omap4xxx/camera/inc/OMXCameraAdapter/
OMXSceneModeTables.h 31 #ifndef ARRAY_SIZE
32 #define ARRAY_SIZE(array) (sizeof((array)) / sizeof((array)[0]))
243 { "S5K4E1GA", S5K4E1GA_SceneModesLUT, ARRAY_SIZE(S5K4E1GA_SceneModesLUT)},
244 { "S5K6A1GX03", S5K6A1GX03_SceneModesLUT, ARRAY_SIZE(S5K6A1GX03_SceneModesLUT)},
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
CoordinateUtils.java 22 private static final int ARRAY_SIZE = INDEX_Y + 1;
29 return new int[ARRAY_SIZE];
  /dalvik/tests/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/icu4c/i18n/
inputext.cpp 23 #define ARRAY_SIZE(array) (sizeof array / sizeof array[0])
ucsdet.cpp 19 #define ARRAY_SIZE(array) (sizeof array / sizeof array[0])
csr2022.cpp 19 #define ARRAY_SIZE(array) (sizeof array / sizeof array[0])
150 ARRAY_SIZE(escapeSequences_2022JP));
165 ARRAY_SIZE(escapeSequences_2022KR));
180 ARRAY_SIZE(escapeSequences_2022CN));
  /external/libsepol/src/
private.h 46 #define ARRAY_SIZE(x) (sizeof(x)/sizeof((x)[0]))
  /external/icu4c/extra/scrptrun/
scrptrun.cpp 19 #define ARRAY_SIZE(array) (sizeof array / sizeof array[0])
43 const int32_t ScriptRun::pairedCharCount = ARRAY_SIZE(pairedChars);
  /external/icu4c/test/cintltst/
stdnmtst.c 21 #define ARRAY_SIZE(array) (int32_t)(sizeof array / sizeof array[0])
292 doTestNames("ASCII", "IANA", asciiIANA, ARRAY_SIZE(asciiIANA));
293 doTestNames("US-ASCII", "IANA", asciiIANA, ARRAY_SIZE(asciiIANA));
294 doTestNames("ASCII", "MIME", asciiMIME, ARRAY_SIZE(asciiMIME));
295 doTestNames("ascii", "mime", asciiMIME, ARRAY_SIZE(asciiMIME));
302 doTestNames("ISO_2022,locale=ko,version=0", "MIME", iso2022MIME, ARRAY_SIZE(iso2022MIME));
303 doTestNames("csiso2022kr", "MIME", iso2022MIME, ARRAY_SIZE(iso2022MIME));
306 doTestUCharNames("ASCII", "IANA", asciiIANA, ARRAY_SIZE(asciiIANA));
  /external/libnl-headers/
netlink-local.h 116 #define ARRAY_SIZE(X) (sizeof(X) / sizeof((X)[0]))
  /external/qemu/
osdep.h 62 #ifndef ARRAY_SIZE
63 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))

Completed in 3001 milliseconds

1 2 3 4