Home
last modified time | relevance | path

Searched refs:ll (Results 1 – 25 of 1610) sorted by relevance

12345678910>>...65

/third_party/libffi/testsuite/libffi.call/
Dreturn_ll.c9 static long long return_ll(long long ll) in return_ll() argument
11 return ll; in return_ll()
20 long long ll; in main() local
23 values[0] = ≪ in main()
29 for (ll = 0LL; ll < 100LL; ll++) in main()
32 CHECK(rlonglong == ll); in main()
35 for (ll = 55555555555000LL; ll < 55555555555100LL; ll++) in main()
38 CHECK(rlonglong == ll); in main()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/l2_packet/
Dl2_packet_linux.c136 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; in l2_packet_receive() local
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/l2_packet/
Dl2_packet_linux.c136 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; in l2_packet_receive() local
[all …]
/third_party/openssl/crypto/sm3/
Dsm3_local.h25 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=(c)->E; (void)HOST_l2c(ll, (s)); \
31 ll=(c)->F; (void)HOST_l2c(ll, (s)); \
32 ll=(c)->G; (void)HOST_l2c(ll, (s)); \
33 ll=(c)->H; (void)HOST_l2c(ll, (s)); \
/third_party/uboot/u-boot-2020.01/arch/nios2/lib/
Dlibgcc.c29 DWtype ll; member
56 const DWunion uu = {.ll = u}; in __ashldi3()
73 return w.ll; in __ashldi3()
82 const DWunion uu = {.ll = u}; in __ashrdi3()
100 return w.ll; in __ashrdi3()
109 const DWunion uu = {.ll = u}; in __lshrdi3()
126 return w.ll; in __lshrdi3()
132 const DWunion au = {.ll = a}; in __cmpdi2()
133 const DWunion bu = {.ll = b}; in __cmpdi2()
149 const DWunion nn = {.ll = n}; in __udivmoddi4()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/
Dcrosstest.cfg17 # test_arith_ll.ll which contains the proper functionality.
18 #test: test_arith.cpp test_arith_frem.ll test_arith_sqrt.ll test_arith_fabs.ll
19 test: test_arith_ll.ll test_arith.cpp test_arith_sqrt.ll test_arith_fabs.ll
23 test: test_bitmanip.cpp test_bitmanip_intrin.ll
31 test: test_cast.cpp test_cast_to_u1.ll test_cast_vectors.ll
35 test: test_fcmp.pnacl.ll
43 test: test_icmp.cpp test_icmp_i1vec.ll
47 test: test_select.ll
66 test: test_vector_ops.cpp test_vector_ops_ll.ll
/third_party/icu/icu4c/source/layoutex/
Dplayout.cpp147 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 == NULL) { in pl_getLineDescent()
[all …]
/third_party/toybox/toys/other/
Dfactor.c22 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/openssl/crypto/des/
Decb_enc.c34 DES_LONG ll[2]; in DES_ecb_encrypt() local
39 ll[0] = l; in DES_ecb_encrypt()
41 ll[1] = l; in DES_ecb_encrypt()
42 DES_encrypt1(ll, ks, enc); in DES_ecb_encrypt()
43 l = ll[0]; in DES_ecb_encrypt()
45 l = ll[1]; in DES_ecb_encrypt()
47 l = ll[0] = ll[1] = 0; in DES_ecb_encrypt()
Decb3_enc.c17 DES_LONG ll[2]; in DES_ecb3_encrypt() local
23 ll[0] = l0; in DES_ecb3_encrypt()
24 ll[1] = l1; in DES_ecb3_encrypt()
26 DES_encrypt3(ll, ks1, ks2, ks3); in DES_ecb3_encrypt()
28 DES_decrypt3(ll, ks1, ks2, ks3); in DES_ecb3_encrypt()
29 l0 = ll[0]; in DES_ecb3_encrypt()
30 l1 = ll[1]; in DES_ecb3_encrypt()
/third_party/uboot/u-boot-2020.01/include/linux/
Dmath64.h186 u64 ll; in mul_u64_u64_shr() member
197 a0.ll = a; in mul_u64_u64_shr()
198 b0.ll = b; in mul_u64_u64_shr()
200 rl.ll = mul_u32_u32(a0.l.low, b0.l.low); in mul_u64_u64_shr()
201 rm.ll = mul_u32_u32(a0.l.low, b0.l.high); in mul_u64_u64_shr()
202 rn.ll = mul_u32_u32(a0.l.high, b0.l.low); in mul_u64_u64_shr()
203 rh.ll = mul_u32_u32(a0.l.high, b0.l.high); in mul_u64_u64_shr()
219 return rl.ll; in mul_u64_u64_shr()
221 return (rl.ll >> shift) | (rh.ll << (64 - shift)); in mul_u64_u64_shr()
222 return rh.ll >> (shift & 63); in mul_u64_u64_shr()
[all …]
/third_party/openssl/crypto/md4/
Dmd4_local.h26 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/boost/libs/serialization/example/
Dportable_binary_oarchive.cpp27 boost::intmax_t ll; in save_impl() local
30 ll = -l; in save_impl()
32 ll = l; in save_impl()
35 ll >>= CHAR_BIT; in save_impl()
37 }while(ll != 0); in save_impl()
44 ll = -l; in save_impl()
46 ll = l; in save_impl()
47 char * cptr = reinterpret_cast<char *>(& ll); in save_impl()
/third_party/typescript/tests/baselines/reference/
Dlift.symbols8 public ll:number; // to be shadowed
9 >ll : Symbol(B.ll, Decl(lift.ts, 2, 5))
29 var ll=x*w;
30 >ll : Symbol(ll, Decl(lift.ts, 10, 11))
41 public liftxylocllz () { return x+z+this.y+this.ll; }
46 >this.ll : Symbol(B.ll, Decl(lift.ts, 2, 5))
48 >ll : Symbol(B.ll, Decl(lift.ts, 2, 5))
Dlift.types8 public ll:number; // to be shadowed
9 >ll : number
32 var ll=x*w;
33 >ll : number
49 public liftxylocllz () { return x+z+this.y+this.ll; }
51 >x+z+this.y+this.ll : any
59 >this.ll : number
61 >ll : number
/third_party/openssl/crypto/ripemd/
Drmd_local.h36 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=(c)->E; (void)HOST_l2c(ll,(s)); \
/third_party/openssl/crypto/md5/
Dmd5_local.h37 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/gettext/gettext-tools/tests/
Dplural-26 test -d plural-2-dir/ll || mkdir plural-2-dir/ll
7 test -d plural-2-dir/ll/LC_MESSAGES || mkdir plural-2-dir/ll/LC_MESSAGES
47 cat > plural-2-ll.po <<EOF
68 ${MSGFMT} -o plural-2-dir/ll/LC_MESSAGES/plural.mo plural-2-ll.po || Exit 1
71 $NGETTEXT --env LC_ALL=ll X Y ${i}0 ${i}1 ${i}2 ${i}3 ${i}4 ${i}5 ${i}6 ${i}7 ${i}8 ${i}9
/third_party/boost/libs/spirit/test/qi/
Dint1.cpp71 boost::long_long_type ll; in main() local
74 BOOST_TEST(test_attr("1234567890123456789", long_long, ll)); in main()
75 BOOST_TEST(ll == 1234567890123456789LL); in main()
78 BOOST_TEST(test_attr("-1234567890123456789", long_long, ll)); in main()
79 BOOST_TEST(ll == -1234567890123456789LL); in main()
82 BOOST_TEST(test_attr(max_long_long, long_long, ll)); in main()
83 BOOST_TEST(ll == LONG_LONG_MAX); in main()
86 BOOST_TEST(test_attr(min_long_long, long_long, ll)); in main()
87 BOOST_TEST(ll == LONG_LONG_MIN); in main()
90 BOOST_TEST(!test_attr(long_long_overflow, long_long, ll)); in main()
[all …]
Dint3.cpp64 boost::long_long_type ll; in main() local
71 , long_long(1234567890123456789LL), ll)); in main()
72 BOOST_TEST(ll == 1234567890123456789LL); in main()
74 , long_long(0), ll)); in main()
81 , long_long(-1234567890123456789LL), ll)); in main()
82 BOOST_TEST(ll == -1234567890123456789LL); in main()
84 , long_long(1234567890123456789LL), ll)); in main()
87 BOOST_TEST(test_attr(max_long_long, long_long(LONG_LONG_MAX), ll)); in main()
88 BOOST_TEST(ll == LONG_LONG_MAX); in main()
91 BOOST_TEST(test_attr(min_long_long, long_long(LONG_LONG_MIN), ll)); in main()
[all …]
/third_party/boost/libs/spirit/test/x3/
Dint1.cpp74 boost::long_long_type ll; in main() local
79 BOOST_TEST(test_attr("1234567890123456789", long_long, ll)); in main()
80 BOOST_TEST(ll == 1234567890123456789LL); in main()
83 BOOST_TEST(test_attr("-1234567890123456789", long_long, ll)); in main()
84 BOOST_TEST(ll == -1234567890123456789LL); in main()
87 BOOST_TEST(test_attr(max_long_long, long_long, ll)); in main()
88 BOOST_TEST(ll == LLONG_MAX); in main()
91 BOOST_TEST(test_attr(min_long_long, long_long, ll)); in main()
92 BOOST_TEST(ll == LLONG_MIN); in main()
95 BOOST_TEST(!test_attr(long_long_overflow, long_long, ll)); in main()
[all …]
/third_party/skia/third_party/externals/tint/test/vk-gl-cts/graphicsfuzz/discards-in-control-flow/
D0-opt.spvasm10 OpName %ll "ll"
13 OpDecorate %ll RelaxedPrecision
40 %ll = OpVariable %_ptr_Function_int Function
51 OpStore %ll %int_0
65 %6 = OpLoad %int %ll
74 %7 = OpLoad %int %ll
76 OpStore %ll %8
/third_party/skia/third_party/externals/tint/test/vk-gl-cts/graphicsfuzz/struct-controlled-loop/
D0-opt.wgsl16 var ll : S;
18 ll = S(0, vec3<bool>(true, true, true));
20 let x_12 : S = ll;
29 let x_13 : S = ll;
30 let x_50 : S = ll;
34 ll = x_51;
D0-opt.spvasm11 OpName %ll "ll"
59 %ll = OpVariable %_ptr_Function_S Function
61 OpStore %ll %23
67 %12 = OpLoad %S %ll
79 %13 = OpLoad %S %ll
82 %50 = OpLoad %S %ll
84 OpStore %ll %51
/third_party/curl/tests/
Dtestcurl.pl483 my $ll = $_;
484 print $ll;
485 print LOG $ll;
596 my $ll = $_;
597 print $ll if(($ll !~ /^ *#/) && ($ll !~ /^ *$/));
619 my $ll = $_;
620 print $ll if(($ll !~ /^ *#/) && ($ll !~ /^ *$/));
630 my $ll = $_;
631 print $ll if(($ll =~ /^ *# *define *CARES_/) && ($ll !~ /__CARES_BUILD_H/));

12345678910>>...65