/third_party/libwebsockets/include/libwebsockets/ |
H A D | lws-context-vhost.h | 46 #define LWS_SERVER_OPTION_REQUIRE_VALID_OPENSSL_CLIENT_CERT ((1ll << 1) | \ 47 (1ll << 12)) 51 #define LWS_SERVER_OPTION_SKIP_SERVER_CANONICAL_NAME (1ll << 2) 53 #define LWS_SERVER_OPTION_ALLOW_NON_SSL_ON_SSL_PORT ((1ll << 3) | \ 54 (1ll << 12)) 61 #define LWS_SERVER_OPTION_LIBEV (1ll << 4) 63 #define LWS_SERVER_OPTION_DISABLE_IPV6 (1ll << 5) 65 #define LWS_SERVER_OPTION_DISABLE_OS_CA_CERTS (1ll << 6) 68 #define LWS_SERVER_OPTION_PEER_CERT_NOT_REQUIRED (1ll << 7) 70 #define LWS_SERVER_OPTION_VALIDATE_UTF8 (1ll << [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/l2_packet/ |
H A D | l2_packet_linux.c | 144 struct sockaddr_ll ll; in l2_packet_send() local 145 os_memset(&ll, 0, sizeof(ll)); in l2_packet_send() 146 ll.sll_family = AF_PACKET; in l2_packet_send() 147 ll.sll_ifindex = l2->ifindex; in l2_packet_send() 148 ll.sll_protocol = htons(proto); in l2_packet_send() 149 ll.sll_halen = ETH_ALEN; in l2_packet_send() 156 os_memcpy(pos, &ll.sll_protocol, protocol_len); in l2_packet_send() 160 ret = sendto(l2->fd, txbuf, len + ETH_HLEN, 0, (struct sockaddr *) &ll, sizeof(ll)); in l2_packet_send() 190 struct sockaddr_ll ll; l2_packet_receive() local 294 struct sockaddr_ll ll; l2_packet_receive_br() local 349 struct sockaddr_ll ll; l2_packet_init() local 438 struct sockaddr_ll ll; l2_packet_init_bridge() local [all...] |
/third_party/musl/libc-test/src/functionalext/supplement/stdio/ |
H A D | wcstoll.c | 33 long long ll; in wcstoll_0100() local 35 TEST(ll, wcstoll(L"2147483647", 0, 0), 2147483647LL, "expect signed %lld != %lld"); in wcstoll_0100() 45 long long ll; in wcstoll_0200() local 47 TEST(ll, wcstoll(L"10", 0, 0), 10LL, "expect signed %lld != %lld"); in wcstoll_0200() 57 long long ll; in wcstoll_0300() local 59 TEST(ll, wcstoll(L"z", 0, 36), 35LL, "%lld != %lld"); in wcstoll_0300() 69 long long ll; in wcstoll_0400() local 71 TEST(ll, wcstoll(L"00010010001101000101011001111000", 0, 2), 0x12345678, "%lld != %lld"); in wcstoll_0400() 82 long long ll; in wcstoll_0500() local 85 TEST(ll, wcstol in wcstoll_0500() 97 long long ll; wcstoll_0600() local 112 long long ll; wcstoll_0700() local 128 long long ll; wcstoll_0800() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/l2_packet/ |
H A D | l2_packet_linux.c | 136 struct sockaddr_ll ll; in l2_packet_send() local 137 os_memset(&ll, 0, sizeof(ll)); in l2_packet_send() 138 ll.sll_family = AF_PACKET; in l2_packet_send() 139 ll.sll_ifindex = l2->ifindex; in l2_packet_send() 140 ll.sll_protocol = htons(proto); in l2_packet_send() 141 ll.sll_halen = ETH_ALEN; in l2_packet_send() 142 os_memcpy(ll.sll_addr, dst_addr, ETH_ALEN); in l2_packet_send() 143 ret = sendto(l2->fd, buf, len, 0, (struct sockaddr *) &ll, in l2_packet_send() 144 sizeof(ll)); in l2_packet_send() 159 struct sockaddr_ll ll; l2_packet_receive() local 232 struct sockaddr_ll ll; l2_packet_receive_br() local 287 struct sockaddr_ll ll; l2_packet_init() local 369 struct sockaddr_ll ll; l2_packet_init_bridge() local [all...] |
/third_party/node/deps/openssl/openssl/crypto/sm3/ |
H A D | sm3_local.h | 25 unsigned long ll; \ 26 ll=(c)->A; (void)HOST_l2c(ll, (s)); \ 27 ll=(c)->B; (void)HOST_l2c(ll, (s)); \ 28 ll=(c)->C; (void)HOST_l2c(ll, (s)); \ 29 ll=(c)->D; (void)HOST_l2c(ll, (s)); \ 30 ll [all...] |
/third_party/openssl/crypto/sm3/ |
H A D | sm3_local.h | 25 unsigned long ll; \ 26 ll=(c)->A; (void)HOST_l2c(ll, (s)); \ 27 ll=(c)->B; (void)HOST_l2c(ll, (s)); \ 28 ll=(c)->C; (void)HOST_l2c(ll, (s)); \ 29 ll=(c)->D; (void)HOST_l2c(ll, (s)); \ 30 ll [all...] |
/third_party/icu/icu4c/source/layoutex/ |
H A D | playout.cpp | 147 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; in pl_closeLine() local 149 delete ll; in pl_closeLine() 155 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; in pl_countLineRuns() local 157 if (ll == NULL) { in pl_countLineRuns() 161 return ll->countRuns(); in pl_countLineRuns() 167 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; in pl_getLineAscent() local 169 if (ll == NULL) { in pl_getLineAscent() 173 return ll->getAscent(); in pl_getLineAscent() 179 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; in pl_getLineDescent() local 181 if (ll in pl_getLineDescent() 191 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; pl_getLineLeading() local 203 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; pl_getLineWidth() local 215 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; pl_getLineVisualRun() local [all...] |
/third_party/toybox/toys/other/ |
H A D | factor.c | 22 unsigned long long l, ll; in factor() local 58 for (ll=3; ;ll += 2) { in factor() 59 long lll = ll*ll; in factor() 61 if (lll>l || lll<ll) { in factor() 65 while (!(l%ll)) { in factor() 66 printf(" %llu", ll); in factor() 67 l /= ll; in factor()
|
/third_party/node/deps/openssl/openssl/crypto/des/ |
H A D | ecb_enc.c | 40 DES_LONG ll[2]; in DES_ecb_encrypt() local 45 ll[0] = l; in DES_ecb_encrypt() 47 ll[1] = l; in DES_ecb_encrypt() 48 DES_encrypt1(ll, ks, enc); in DES_ecb_encrypt() 49 l = ll[0]; in DES_ecb_encrypt() 51 l = ll[1]; in DES_ecb_encrypt() 53 l = ll[0] = ll[1] = 0; in DES_ecb_encrypt()
|
H A D | ecb3_enc.c | 23 DES_LONG ll[2]; in DES_ecb3_encrypt() local 29 ll[0] = l0; in DES_ecb3_encrypt() 30 ll[1] = l1; in DES_ecb3_encrypt() 32 DES_encrypt3(ll, ks1, ks2, ks3); in DES_ecb3_encrypt() 34 DES_decrypt3(ll, ks1, ks2, ks3); in DES_ecb3_encrypt() 35 l0 = ll[0]; in DES_ecb3_encrypt() 36 l1 = ll[1]; in DES_ecb3_encrypt()
|
/third_party/openssl/crypto/des/ |
H A D | ecb_enc.c | 40 DES_LONG ll[2]; in DES_ecb_encrypt() local 45 ll[0] = l; in DES_ecb_encrypt() 47 ll[1] = l; in DES_ecb_encrypt() 48 DES_encrypt1(ll, ks, enc); in DES_ecb_encrypt() 49 l = ll[0]; in DES_ecb_encrypt() 51 l = ll[1]; in DES_ecb_encrypt() 53 l = ll[0] = ll[1] = 0; in DES_ecb_encrypt()
|
H A D | ecb3_enc.c | 23 DES_LONG ll[2]; in DES_ecb3_encrypt() local 29 ll[0] = l0; in DES_ecb3_encrypt() 30 ll[1] = l1; in DES_ecb3_encrypt() 32 DES_encrypt3(ll, ks1, ks2, ks3); in DES_ecb3_encrypt() 34 DES_decrypt3(ll, ks1, ks2, ks3); in DES_ecb3_encrypt() 35 l0 = ll[0]; in DES_ecb3_encrypt() 36 l1 = ll[1]; in DES_ecb3_encrypt()
|
/third_party/ltp/tools/sparse/sparse-src/validation/ |
H A D | builtin-overflow.c | 4 static int test(int i, long l, long long ll, enum e e, bool b, void *p) in test() argument 13 rc += __builtin_add_overflow(ll, i, &i); in test() 14 rc += __builtin_add_overflow(i, ll, &i); in test() 15 rc += __builtin_add_overflow(i, i, &ll); in test() 21 rc += __builtin_add_overflow_p(ll, i, i); in test() 22 rc += __builtin_add_overflow_p(i, ll, i); in test() 23 rc += __builtin_add_overflow_p(i, i, ll); in test() 29 rc += __builtin_sub_overflow(ll, i, &i); in test() 30 rc += __builtin_sub_overflow(i, ll, &i); in test() 31 rc += __builtin_sub_overflow(i, i, &ll); in test() [all...] |
/third_party/node/deps/openssl/openssl/crypto/ripemd/ |
H A D | rmd_local.h | 36 unsigned long ll; \ 37 ll=(c)->A; (void)HOST_l2c(ll,(s)); \ 38 ll=(c)->B; (void)HOST_l2c(ll,(s)); \ 39 ll=(c)->C; (void)HOST_l2c(ll,(s)); \ 40 ll=(c)->D; (void)HOST_l2c(ll,(s)); \ 41 ll [all...] |
/third_party/openssl/crypto/ripemd/ |
H A D | rmd_local.h | 36 unsigned long ll; \ 37 ll=(c)->A; (void)HOST_l2c(ll,(s)); \ 38 ll=(c)->B; (void)HOST_l2c(ll,(s)); \ 39 ll=(c)->C; (void)HOST_l2c(ll,(s)); \ 40 ll=(c)->D; (void)HOST_l2c(ll,(s)); \ 41 ll [all...] |
/third_party/node/deps/openssl/openssl/crypto/md4/ |
H A D | md4_local.h | 26 unsigned long ll; \ 27 ll=(c)->A; (void)HOST_l2c(ll,(s)); \ 28 ll=(c)->B; (void)HOST_l2c(ll,(s)); \ 29 ll=(c)->C; (void)HOST_l2c(ll,(s)); \ 30 ll=(c)->D; (void)HOST_l2c(ll,(s)); \
|
/third_party/openssl/crypto/md4/ |
H A D | md4_local.h | 26 unsigned long ll; \ 27 ll=(c)->A; (void)HOST_l2c(ll,(s)); \ 28 ll=(c)->B; (void)HOST_l2c(ll,(s)); \ 29 ll=(c)->C; (void)HOST_l2c(ll,(s)); \ 30 ll=(c)->D; (void)HOST_l2c(ll,(s)); \
|
/third_party/node/deps/openssl/openssl/crypto/md5/ |
H A D | md5_local.h | 37 unsigned long ll; \ 38 ll=(c)->A; (void)HOST_l2c(ll,(s)); \ 39 ll=(c)->B; (void)HOST_l2c(ll,(s)); \ 40 ll=(c)->C; (void)HOST_l2c(ll,(s)); \ 41 ll=(c)->D; (void)HOST_l2c(ll,(s)); \
|
/third_party/openssl/crypto/md5/ |
H A D | md5_local.h | 37 unsigned long ll; \ 38 ll=(c)->A; (void)HOST_l2c(ll,(s)); \ 39 ll=(c)->B; (void)HOST_l2c(ll,(s)); \ 40 ll=(c)->C; (void)HOST_l2c(ll,(s)); \ 41 ll=(c)->D; (void)HOST_l2c(ll,(s)); \
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/ |
H A D | ResourceAllocatorManagerD3D12.h | 92 static constexpr uint64_t kMaxHeapSize = 32ll * 1024ll * 1024ll * 1024ll; // 32GB 93 static constexpr uint64_t kMinHeapSize = 4ll * 1024ll * 1024ll; // 4MB
|
/third_party/curl/tests/ |
H A D | testcurl.pl | 361 # Make $pwd to become the path without newline. We'll use that in order to cut 475 my $ll = $_; 476 print $ll; 477 print $log $ll; 577 my $ll = $_; 578 print $ll if(($ll !~ /^ *#/) && ($ll !~ /^ *$/)); 600 my $ll = $_; 601 print $ll i [all...] |
/third_party/toybox/porting/liteos_a/toys/posix/ |
H A D | ps.c | 425 long *ll = 0; in shared_match_process() local 432 ll = mm->ptr; in shared_match_process() 433 for (j = 0; j<mm->len; j++) if (ll[j] == slot[match[i].len]) return 1; in shared_match_process() 437 return ll ? 0 : -1; in shared_match_process() 463 long long *slot = tb->slot, ll = (sl >= 0) ? slot[sl&(XX-1)] : 0; in string_field() local 469 if (which==PS_PRI) ll = 39-ll; in string_field() 471 else if (which==PS_SZ) ll >>= 12; in string_field() 472 else if (which==PS_RSS) ll <<= 2; in string_field() 473 else if (which==PS_VSZ) ll >> in string_field() 1098 long *ll = pl->ptr; parse_rest() local 1425 long long ll, up = 0; top_common() local 1488 long long ll, bits = 0; top_common() local 1709 long long ll = tb->slot[SLOT_starttime]; match_pgrep() local [all...] |
/third_party/toybox/toys/posix/ |
H A D | ps.c | 468 long *ll = 0; in shared_match_process() local 475 ll = mm->ptr; in shared_match_process() 476 for (j = 0; j<mm->len; j++) if (ll[j] == slot[match[i].len]) return 1; in shared_match_process() 480 return ll ? 0 : -1; in shared_match_process() 506 long long *slot = tb->slot, ll = (sl >= 0) ? slot[sl&(XX-1)] : 0; in string_field() local 512 if (which==PS_PRI) ll = 39-ll; in string_field() 514 else if (which==PS_SZ) ll >>= 12; in string_field() 515 else if (which==PS_RSS) ll <<= 2; in string_field() 516 else if (which==PS_VSZ) ll >> in string_field() 1141 long *ll = pl->ptr; parse_rest() local 1569 long long ll, up = 0; top_common() local 1635 long long ll, bits = 0; top_common() local 1867 long long ll = tb->slot[SLOT_starttime]; match_pgrep() local [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | lift.js | 5 public ll:number; // to be shadowed 12 var ll=x*w; variable 16 public liftxylocllz () { return x+z+this.y+this.ll; } 47 var ll = x * w;
51 C.prototype.liftxylocllz = function () { return x + z + this.y + this.ll; };
|
/third_party/ntfs-3g/libntfs-3g/ |
H A D | mft.c | 444 mrec->lsn = const_cpu_to_sle64(0ll); in ntfs_mft_record_layout() 550 s64 pass_end, ll, data_pos, pass_start, ofs, bit; in ntfs_mft_bitmap_find_free_rec() local 566 ll = mftbmp_na->initialized_size << 3; in ntfs_mft_bitmap_find_free_rec() 567 if (pass_end > ll) in ntfs_mft_bitmap_find_free_rec() 568 pass_end = ll; in ntfs_mft_bitmap_find_free_rec() 606 ll = ((pass_end + 7) >> 3) - ofs; in ntfs_mft_bitmap_find_free_rec() 607 if (size > ll) in ntfs_mft_bitmap_find_free_rec() 608 size = ll; in ntfs_mft_bitmap_find_free_rec() 609 ll = ntfs_attr_pread(mftbmp_na, ofs, size, buf); in ntfs_mft_bitmap_find_free_rec() 610 if (ll < in ntfs_mft_bitmap_find_free_rec() 718 s64 ll = 0; /* silence compiler warning */ ntfs_mft_bitmap_extend_allocation_i() local 943 s64 old_data_size, old_initialized_size, ll; ntfs_mft_bitmap_extend_initialized() local 1040 s64 min_nr, nr, ll = 0; /* silence compiler warning */ ntfs_mft_data_extend_allocation() local 1428 s64 ll, bit; ntfs_mft_rec_alloc() local 1713 s64 ll, bit; ntfs_mft_record_alloc() local [all...] |