/external/bison/m4/ |
mbrtowc.m4 | 24 return ! (sizeof state && (mbrtowc) (&wc, s, n, &state));]])],
|
mbstate_t.m4 | 21 [mbstate_t x; return sizeof x;])],
|
/external/bison/src/ |
derives.c | 73 rule_list **dset = xcalloc (nvars, sizeof *dset); 78 rule_list *delts = xnmalloc (nrules, sizeof *delts); 93 derives = xnmalloc (nvars, sizeof *derives); 94 q = xnmalloc (nvars + nrules, sizeof *q);
|
/external/bluetooth/bluez/test/ |
lmptest.c | 53 memset(&cp, 0, sizeof(cp)); 58 memset(&rq, 0, sizeof(rq)); 86 memset(&cp, 0, sizeof(cp)); 91 memset(&rq, 0, sizeof(rq));
|
/external/bluetooth/bluez/tools/ |
avinfo.c | 490 memset(&req, 0, sizeof(req)); 494 ret = avdtp_send(sk, &req, sizeof(req)); 498 memset(&buffer, 0, sizeof(buffer)); 499 ret = avdtp_receive(sk, caps, sizeof(buffer)); 503 if ((size_t) ret < (sizeof(struct getcap_resp) + 4 + 504 sizeof(struct avdtp_media_codec_capability))) { 522 memset(&req, 0, sizeof(req)); 525 ret = avdtp_send(sk, &req, sizeof(req)); 529 memset(&buffer, 0, sizeof(buffer)); 530 ret = avdtp_receive(sk, discover, sizeof(buffer)) [all...] |
csr_hci.c | 107 memset(cp, 0, sizeof(cp)); 109 memcpy(cp + 1, cmd, sizeof(cmd)); 120 memset(&rq, 0, sizeof(rq)); 127 rq.rlen = sizeof(rp);
|
csr_usb.c | 123 memset(cp, 0, sizeof(cp)); 128 memcpy(cp + 4, cmd, sizeof(cmd)); 131 usb_interrupt_read(udev, 0x81, (void *) rp, sizeof(rp), 2); 147 (void *) (rp + offset), sizeof(rp) - offset, 10);
|
/external/bluetooth/glib/tests/refcount/ |
properties.c | 58 sizeof (GTestClass), 64 sizeof (GTest), 206 test_objects = g_array_new (FALSE, FALSE, sizeof (GTest *)); 218 test_threads = g_array_new (FALSE, FALSE, sizeof (GThread *));
|
/external/bluetooth/glib/tests/ |
type-test.c | 64 g_assert (sizeof (gint8) == 1); 65 g_assert (sizeof (gint16) == 2); 66 g_assert (sizeof (gint32) == 4); 67 g_assert (sizeof (gint64) == 8);
|
/external/chromium/base/allocator/ |
win_allocator.cc | 19 &enable_lfh, sizeof(enable_lfh));
|
/external/chromium/base/crypto/ |
rsa_private_key_mac.cc | 30 memset(&public_key, 0, sizeof(CSSM_KEY)); 60 memset(&key, 0, sizeof(key)); 83 memset(&creds, 0, sizeof(CSSM_ACCESS_CREDENTIALS)); 107 memset(&key_, 0, sizeof(key_));
|
/external/chromium/base/ |
profiler.cc | 42 base::snprintf(buffer, sizeof(buffer)-1, "%s", name);
|
/external/chromium/third_party/icu/source/common/ |
charstr.h | 60 len = str.extract(0, 0x7FFFFFFF, buf ,sizeof(buf)-1, codepage); 61 if (len >= (int32_t)(sizeof(buf)-1)) { 72 len = str.extract(0, 0x7FFFFFFF, buf, (int32_t)(sizeof(buf)-1), US_INV); 73 if (len >= (int32_t)(sizeof(buf)-1)) {
|
uenum.c | 38 sizeof(int32_t) + capacity); 46 en->baseContext = uprv_malloc(sizeof(int32_t) + capacity); 96 ustr = (UChar*) _getBuffer(en, (len+1) * sizeof(UChar)); 125 _getBuffer(en, (*resultLength+1) * sizeof(char));
|
/external/chromium/third_party/icu/source/i18n/ |
inputext.cpp | 23 #define ARRAY_SIZE(array) (sizeof array / sizeof array[0]) 25 #define NEW_ARRAY(type,count) (type *) uprv_malloc((count) * sizeof(type)) 148 uprv_memset(fByteStats, 0, (sizeof fByteStats[0]) * 256);
|
/external/chromium/third_party/icu/source/io/ |
locbund.c | 84 uprv_memset(result, 0, sizeof(ULocaleBundle)); 102 ULocaleBundle *result = (ULocaleBundle*) uprv_malloc(sizeof(ULocaleBundle)); 109 ULocaleBundle *result = (ULocaleBundle*)uprv_malloc(sizeof(ULocaleBundle)); 157 uprv_memset(bundle, 0, sizeof(ULocaleBundle));
|
/external/clearsilver/util/ |
neo_net.c | 51 sizeof(on)) == -1) 58 sizeof(on)) == -1) 65 sizeof(on)) == -1) 74 if (bind(sfd,(struct sockaddr *)&(serv_addr),sizeof(struct sockaddr)) == -1) 117 len = sizeof(struct sockaddr_in); 132 my_sock = (NSOCK *) calloc(1, sizeof(NSOCK)); 174 memset(&serv_addr, 0, sizeof(serv_addr)); 197 memcpy(&(serv_addr.sin_addr), hp.h_addr_list[x], sizeof(struct in_addr)); 199 r = connect(fd, (struct sockaddr *) &(serv_addr), sizeof(struct sockaddr_in)); 231 optlen = sizeof(optval) [all...] |
/external/dropbear/ |
cli-authpasswd.c | 88 maxlen = sizeof(buf); 90 len = read(p[0], buf + sizeof(buf) - maxlen, maxlen); 106 len = sizeof(buf) - maxlen; 124 snprintf(prompt, sizeof(prompt), "%s@%s's password: ",
|
/external/dropbear/libtomcrypt/src/hashes/sha2/ |
sha384.c | 69 if (md->sha512.curlen >= sizeof(md->sha512.buf)) { 76 zeromem(buf, sizeof(buf)); 116 for (i = 0; i < (int)(sizeof(tests) / sizeof(tests[0])); i++) {
|
/external/dropbear/libtomcrypt/src/mac/omac/ |
omac_init.c | 42 if (cipher_descriptor[cipher].block_length % sizeof(LTC_FAST_TYPE)) { 83 XMEMCPY(omac->Lu[1], omac->Lu[0], sizeof(omac->Lu[0])); 91 zeromem(omac->prev, sizeof(omac->prev)); 92 zeromem(omac->block, sizeof(omac->block));
|
/external/dropbear/libtomcrypt/src/modes/ctr/ |
ctr_encrypt.c | 42 if (ctr->blocklen < 1 || ctr->blocklen > (int)sizeof(ctr->ctr) || 43 ctr->padlen < 0 || ctr->padlen > (int)sizeof(ctr->pad)) { 48 if (ctr->blocklen % sizeof(LTC_FAST_TYPE)) { 91 for (x = 0; x < ctr->blocklen; x += sizeof(LTC_FAST_TYPE)) {
|
/external/dropbear/libtomcrypt/src/modes/f8/ |
f8_encrypt.c | 40 if (f8->blocklen < 0 || f8->blocklen > (int)sizeof(f8->IV) || 41 f8->padlen < 0 || f8->padlen > (int)sizeof(f8->IV)) { 45 zeromem(buf, sizeof(buf)); 66 for (x = 0; x < f8->blocklen; x += sizeof(LTC_FAST_TYPE)) {
|
f8_test_mode.c | 52 if ((err = f8_start(idx, IV, key, sizeof(key), salt, sizeof(salt), 0, &f8)) != CRYPT_OK) { 57 if ((err = f8_encrypt(pt, buf, sizeof(pt), &f8)) != CRYPT_OK) { 64 if (XMEMCMP(buf, ct, sizeof(ct))) {
|
/external/dropbear/libtomcrypt/src/pk/asn1/der/ia5/ |
der_length_ia5_string.c | 130 for (x = 0; x < (int)(sizeof(ia5_table)/sizeof(ia5_table[0])); x++) { 141 for (x = 0; x < (int)(sizeof(ia5_table)/sizeof(ia5_table[0])); x++) {
|
/external/dropbear/libtomcrypt/src/pk/asn1/der/printable_string/ |
der_length_printable_string.c | 102 for (x = 0; x < (int)(sizeof(printable_table)/sizeof(printable_table[0])); x++) { 113 for (x = 0; x < (int)(sizeof(printable_table)/sizeof(printable_table[0])); x++) {
|