HomeSort by relevance Sort by last modified time
    Searched refs:ARRAYSIZE (Results 1 - 25 of 39) sorted by null

1 2

  /external/webrtc/webrtc/examples/peerconnection/server/
utils.h 18 #ifndef ARRAYSIZE
19 #define ARRAYSIZE(x) (sizeof(x) / sizeof(x[0]))
data_socket.cc 199 for (size_t i = 0; i < ARRAYSIZE(supported_methods); ++i) {
233 if ((headers + ARRAYSIZE(kContentLength)) < end &&
235 ARRAYSIZE(kContentLength) - 1) == 0) {
236 headers += ARRAYSIZE(kContentLength) - 1;
240 } else if ((headers + ARRAYSIZE(kContentType)) < end &&
242 ARRAYSIZE(kContentType) - 1) == 0) {
243 headers += ARRAYSIZE(kContentType) - 1;
peer_channel.cc 186 for (; i < ARRAYSIZE(kRequestPaths); ++i) {
191 if (i == ARRAYSIZE(kRequestPaths))
200 int id = atoi(&args[found + ARRAYSIZE(kPeerId) - 1]);
230 found += ARRAYSIZE(kTargetPeerIdParam) - 1;
233 args = found + ARRAYSIZE(kTargetPeerIdParam) - 1;
  /external/nos/host/android/hals/keymaster/
macros.h 4 #define ARRAYSIZE(a) \
  /external/nos/test/system-test-harness/src/
macros.h 4 #define ARRAYSIZE(a) \
aes-cmac-tests.cc 77 for (size_t i = 0; i < ARRAYSIZE(RFC4493_AES_CMAC_DATA); i++) {
cavptests.cc 85 size_t test_input_count = ARRAYSIZE(NIST_GCM_DATA);
  /external/libusb/libusb/
strerror.c 64 static const char* usbi_localized_errors[ARRAYSIZE(usbi_locale_supported)][LIBUSB_ERROR_COUNT] = {
166 for (i=0; i<ARRAYSIZE(usbi_locale_supported); i++) {
170 if (i >= ARRAYSIZE(usbi_locale_supported)) {
libusbi.h 73 #if !defined(ARRAYSIZE)
74 #define ARRAYSIZE(array) (sizeof(array) / sizeof(array[0]))
    [all...]
  /external/honggfuzz/libcommon/
common.h 42 #define ARRAYSIZE(x) (sizeof(x) / sizeof(*x))
  /external/tensorflow/tensorflow/stream_executor/platform/
port.h 43 #define ARRAYSIZE(a) \
  /external/honggfuzz/examples/terminal-emulators/
terminal-test.c 18 #define ARRAYSIZE(x) (sizeof(x) / sizeof(*x))
117 writev(fd_log, iov, ARRAYSIZE(iov));
  /external/libusb/examples/
fxload.c 46 #ifndef ARRAYSIZE
47 #define ARRAYSIZE(A) (sizeof(A)/sizeof((A)[0]))
91 int fx_type = FX_TYPE_UNDEFINED, img_type[ARRAYSIZE(path)];
203 for (j=0; j<ARRAYSIZE(known_device); j++) {
223 if (j < ARRAYSIZE(known_device)) {
264 for (i=0; i<ARRAYSIZE(path); i++) {
  /frameworks/minikin/include/minikin/
Hyphenator.h 125 constexpr size_t ARRAYSIZE(T const (&)[size]) {
135 #define MAKE_HYPHEN_STR(chars) std::make_pair((chars), ARRAYSIZE(chars))
  /cts/tests/tests/media/libndkaudio/
AudioRecorder.cpp 33 #define ARRAYSIZE(a) sizeof((a))/sizeof((a)[0])
150 ARRAYSIZE(iidArray), iidArray, required);
  /external/libusb/libusb/os/
windows_common.h 65 #ifndef ARRAYSIZE
66 #define ARRAYSIZE(A) (sizeof(A)/sizeof((A)[0]))
  /development/host/windows/usb/adb_winapi_test/
adb_winapi_test.cpp 668 const DWORD* end = g_expected_errors + ARRAYSIZE(g_expected_errors);
680 const DWORD* end = g_expected_errors + ARRAYSIZE(g_expected_errors);
785 for (size_t i = 0; i < ARRAYSIZE(g_expected_errors); ++i) {
809 for (size_t i = 0; i < ARRAYSIZE(g_expected_errors); ++i) {
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmdefs.h 84 #define BCMROMDAT_ARYSIZ(data) ARRAYSIZE(data)
  /external/webrtc/webrtc/examples/peerconnection/client/
main_wnd.cc 16 #include "webrtc/base/arraysize.h"
56 ::GetWindowTextA(wnd, &text[0], ARRAYSIZE(text));
245 for (int i = 0; i < arraysize(all_dc); ++i) {
495 size_t total_width = (ARRAYSIZE(windows) - 1) * kSeparator;
497 for (size_t i = 0; i < ARRAYSIZE(windows); ++i) {
507 for (size_t i = 0; i < ARRAYSIZE(windows); ++i) {
519 for (size_t i = 0; i < ARRAYSIZE(windows); ++i) {
  /external/honggfuzz/
cmdline.c 401 struct option opts[ARRAYSIZE(custom_opts)];
402 for (unsigned i = 0; i < ARRAYSIZE(custom_opts); i++) {
549 for (size_t i = 0; i < ARRAYSIZE(hfuzz->exe.envs); i++) {
mangle.c 382 uint64_t choice = util_rndGet(0, ARRAYSIZE(mangleMagicVals) - 1);
575 uint64_t choice = util_rndGet(0, ARRAYSIZE(mangleFuncs) - 1);
subproc.c 207 for (size_t i = 0; i < ARRAYSIZE(run->global->exe.envs) && run->global->exe.envs[i]; i++) {
  /external/android-clat/
clatd_test.cpp 36 #define ARRAYSIZE(x) sizeof((x)) / sizeof((x)[0])
776 reassemble_packet(kIPv4Fragments, kIPv4FragLengths, ARRAYSIZE(kIPv4Fragments),
785 reassemble_packet(kIPv6Fragments, kIPv6FragLengths, ARRAYSIZE(kIPv6Fragments),
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
pathcch.h 18 #define VOLUME_PREFIX_LEN (ARRAYSIZE (VOLUME_PREFIX) - 1)
  /external/tensorflow/tensorflow/stream_executor/cuda/
cuda_driver.cc 41 // TODO: in windows ARRAYSIZE is defined in winnt.h but including it
43 #define ARRAYSIZE(a) \
723 CHECK(ARRAYSIZE(options) == ARRAYSIZE(option_values));
730 res = cuModuleLoadDataEx(module, ptx_data, ARRAYSIZE(options), options,
    [all...]

Completed in 1118 milliseconds

1 2