Home
last modified time | relevance | path

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

12345678910>>...47

/external/clang/test/Sema/
Dconversion.c9 void test0(char c, short s, int i, long l, long long ll) { in test0() argument
62 char test1(long long ll) { in test1() argument
63 return (long long) ll; // expected-warning {{implicit conversion loses integer precision}} in test1()
65 char test1_a(long long ll) { in test1_a() argument
66 return (long) ll; // expected-warning {{implicit conversion loses integer precision}} in test1_a()
68 char test1_b(long long ll) { in test1_b() argument
69 return (int) ll; // expected-warning {{implicit conversion loses integer precision}} in test1_b()
71 char test1_c(long long ll) { in test1_c() argument
72 return (short) ll; // expected-warning {{implicit conversion loses integer precision}} in test1_c()
74 char test1_d(long long ll) { in test1_d() argument
[all …]
/external/wpa_supplicant_8/src/l2_packet/
Dl2_packet_linux.c51 struct sockaddr_ll ll; in l2_packet_send() local
52 os_memset(&ll, 0, sizeof(ll)); in l2_packet_send()
53 ll.sll_family = AF_PACKET; in l2_packet_send()
54 ll.sll_ifindex = l2->ifindex; in l2_packet_send()
55 ll.sll_protocol = htons(proto); in l2_packet_send()
56 ll.sll_halen = ETH_ALEN; in l2_packet_send()
57 os_memcpy(ll.sll_addr, dst_addr, ETH_ALEN); in l2_packet_send()
58 ret = sendto(l2->fd, buf, len, 0, (struct sockaddr *) &ll, in l2_packet_send()
59 sizeof(ll)); in l2_packet_send()
74 struct sockaddr_ll ll; in l2_packet_receive() local
[all …]
/external/compiler-rt/test/profile/
Dinstrprof-dlopen.test18 RUN: %clang_profuse=%t-static.profdata -o %t-func.static.ll -S -emit-llvm %S/Inputs/instrprof-dlope…
19 RUN: %clang_profuse=%t-local.profdata -o %t-func.local.ll -S -emit-llvm %S/Inputs/instrprof-dlopen-…
20 RUN: %clang_profuse=%t-global.profdata -o %t-func.global.ll -S -emit-llvm %S/Inputs/instrprof-dlope…
21 RUN: diff %t-func.static.ll %t-func.local.ll
22 RUN: diff %t-func.static.ll %t-func.global.ll
24 RUN: %clang_profuse=%t-static.profdata -o %t-func2.static.ll -S -emit-llvm %S/Inputs/instrprof-dlop…
25 RUN: %clang_profuse=%t-local.profdata -o %t-func2.local.ll -S -emit-llvm %S/Inputs/instrprof-dlopen…
26 RUN: %clang_profuse=%t-global.profdata -o %t-func2.global.ll -S -emit-llvm %S/Inputs/instrprof-dlop…
27 RUN: diff %t-func2.static.ll %t-func2.local.ll
28 RUN: diff %t-func2.static.ll %t-func2.global.ll
[all …]
Dinstrprof-dynamic-one-shared.test13 RUN: %clang_profuse=%t-static.profdata -o %t-a.static.ll -S -emit-llvm %S/Inputs/instrprof-dynamic-…
14 RUN: %clang_profuse=%t-shared.profdata -o %t-a.shared.ll -S -emit-llvm %S/Inputs/instrprof-dynamic-…
15 RUN: diff %t-a.static.ll %t-a.shared.ll
17 RUN: %clang_profuse=%t-static.profdata -o %t-b.static.ll -S -emit-llvm %S/Inputs/instrprof-dynamic-…
18 RUN: %clang_profuse=%t-shared.profdata -o %t-b.shared.ll -S -emit-llvm %S/Inputs/instrprof-dynamic-…
19 RUN: diff %t-b.static.ll %t-b.shared.ll
21 RUN: %clang_profuse=%t-static.profdata -o %t-main.static.ll -S -emit-llvm %S/Inputs/instrprof-dynam…
22 RUN: %clang_profuse=%t-shared.profdata -o %t-main.shared.ll -S -emit-llvm %S/Inputs/instrprof-dynam…
23 RUN: diff %t-main.static.ll %t-main.shared.ll
Dinstrprof-dynamic-two-shared.test14 RUN: %clang_profuse=%t-static.profdata -o %t-a.static.ll -S -emit-llvm %S/Inputs/instrprof-dynamic-…
15 RUN: %clang_profuse=%t-shared.profdata -o %t-a.shared.ll -S -emit-llvm %S/Inputs/instrprof-dynamic-…
16 RUN: diff %t-a.static.ll %t-a.shared.ll
18 RUN: %clang_profuse=%t-static.profdata -o %t-b.static.ll -S -emit-llvm %S/Inputs/instrprof-dynamic-…
19 RUN: %clang_profuse=%t-shared.profdata -o %t-b.shared.ll -S -emit-llvm %S/Inputs/instrprof-dynamic-…
20 RUN: diff %t-b.static.ll %t-b.shared.ll
22 RUN: %clang_profuse=%t-static.profdata -o %t-main.static.ll -S -emit-llvm %S/Inputs/instrprof-dynam…
23 RUN: %clang_profuse=%t-shared.profdata -o %t-main.shared.ll -S -emit-llvm %S/Inputs/instrprof-dynam…
24 RUN: diff %t-main.static.ll %t-main.shared.ll
/external/icu/icu4c/source/layoutex/
Dplayout.cpp145 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; in pl_closeLine() local
147 delete ll; in pl_closeLine()
153 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; in pl_countLineRuns() local
155 if (ll == NULL) { in pl_countLineRuns()
159 return ll->countRuns(); in pl_countLineRuns()
165 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; in pl_getLineAscent() local
167 if (ll == NULL) { in pl_getLineAscent()
171 return ll->getAscent(); in pl_getLineAscent()
177 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; in pl_getLineDescent() local
179 if (ll == NULL) { in pl_getLineDescent()
[all …]
/external/openssl/crypto/des/
Decb_enc.c112 DES_LONG ll[2]; in DES_ecb_encrypt() local
116 c2l(in,l); ll[0]=l; in DES_ecb_encrypt()
117 c2l(in,l); ll[1]=l; in DES_ecb_encrypt()
118 DES_encrypt1(ll,ks,enc); in DES_ecb_encrypt()
119 l=ll[0]; l2c(l,out); in DES_ecb_encrypt()
120 l=ll[1]; l2c(l,out); in DES_ecb_encrypt()
121 l=ll[0]=ll[1]=0; in DES_ecb_encrypt()
Decb3_enc.c67 DES_LONG ll[2]; in DES_ecb3_encrypt() local
73 ll[0]=l0; in DES_ecb3_encrypt()
74 ll[1]=l1; in DES_ecb3_encrypt()
76 DES_encrypt3(ll,ks1,ks2,ks3); in DES_ecb3_encrypt()
78 DES_decrypt3(ll,ks1,ks2,ks3); in DES_ecb3_encrypt()
79 l0=ll[0]; in DES_ecb3_encrypt()
80 l1=ll[1]; in DES_ecb3_encrypt()
/external/openssl/crypto/md4/
Dmd4_locl.h79 unsigned long ll; \
80 ll=(c)->A; (void)HOST_l2c(ll,(s)); \
81 ll=(c)->B; (void)HOST_l2c(ll,(s)); \
82 ll=(c)->C; (void)HOST_l2c(ll,(s)); \
83 ll=(c)->D; (void)HOST_l2c(ll,(s)); \
/external/llvm/test/Feature/
Dprefixdata.ll1 ; RUN: llvm-as < %s | llvm-dis > %t1.ll
2 ; RUN: FileCheck %s < %t1.ll
3 ; RUN: llvm-as < %t1.ll | llvm-dis > %t2.ll
4 ; RUN: diff %t1.ll %t2.ll
5 ; RUN: opt -O3 -S < %t1.ll | FileCheck %s
Dsmallest.ll1 ; RUN: llvm-as < %s | llvm-dis > %t1.ll
2 ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
3 ; RUN: diff %t1.ll %t2.ll
Dproperties.ll1 ; RUN: llvm-as < %s | llvm-dis > %t1.ll
2 ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
3 ; RUN: diff %t1.ll %t2.ll
Dsmall.ll1 ; RUN: llvm-as < %s | llvm-dis > %t1.ll
2 ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
3 ; RUN: diff %t1.ll %t2.ll
Dfloat.ll1 ; RUN: llvm-as < %s | llvm-dis > %t1.ll
2 ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
3 ; RUN: diff %t1.ll %t2.ll
Descaped_label.ll1 ; RUN: llvm-as < %s | llvm-dis > %t1.ll
2 ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
3 ; RUN: diff %t1.ll %t2.ll
Dunreachable.ll1 ; RUN: llvm-as < %s | llvm-dis > %t1.ll
2 ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
3 ; RUN: diff %t1.ll %t2.ll
Dglobal_section.ll1 ; RUN: llvm-as < %s | llvm-dis > %t1.ll
2 ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
3 ; RUN: diff %t1.ll %t2.ll
/external/qemu/util/
Dhost-utils.c36 uint64_t ll; in mul64() member
48 a0.ll = a; in mul64()
49 b0.ll = b; in mul64()
51 rl.ll = (uint64_t)a0.l.low * b0.l.low; in mul64()
52 rm.ll = (uint64_t)a0.l.low * b0.l.high; in mul64()
53 rn.ll = (uint64_t)a0.l.high * b0.l.low; in mul64()
54 rh.ll = (uint64_t)a0.l.high * b0.l.high; in mul64()
63 *plow = rl.ll; in mul64()
64 *phigh = rh.ll; in mul64()
/external/openssl/crypto/md5/
Dmd5_locl.h88 unsigned long ll; \
89 ll=(c)->A; (void)HOST_l2c(ll,(s)); \
90 ll=(c)->B; (void)HOST_l2c(ll,(s)); \
91 ll=(c)->C; (void)HOST_l2c(ll,(s)); \
92 ll=(c)->D; (void)HOST_l2c(ll,(s)); \
/external/valgrind/main/exp-bbv/tests/arm-linux/
DMakefile.am6 million ll program
9 ll.stderr.exp \
10 ll.stdout.exp \
11 ll.post.exp \
12 ll.vgtest \
21 ll_SOURCES = ll.S
/external/valgrind/main/exp-bbv/tests/ppc32-linux/
DMakefile.am6 million ll program
9 ll.stderr.exp \
10 ll.stdout.exp \
11 ll.post.exp \
12 ll.vgtest \
21 ll_SOURCES = ll.S
/external/valgrind/main/exp-bbv/tests/x86-linux/
DMakefile.am6 ll clone_test program
12 ll.stderr.exp \
13 ll.stdout.exp \
14 ll.post.exp \
15 ll.vgtest
22 ll_SOURCES = ll.S
/external/llvm/test/Integer/
Dproperties_bt.ll1 ; RUN: llvm-as %s -o - | llvm-dis > %t1.ll
2 ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
3 ; RUN: diff %t1.ll %t2.ll
/external/valgrind/main/exp-bbv/tests/amd64-linux/
DMakefile.am6 million rep_prefix ll fldcw_check complex_rep clone_test program
16 ll.stderr.exp \
17 ll.stdout.exp \
18 ll.post.exp \
19 ll.vgtest \
33 ll_SOURCES = ll.S
/external/llvm/test/Linker/
Dtransitive-lazy-link.ll3 ; RUN: echo "declare i32 @f(i32)" > %t.1.ll
4 ; RUN: echo "define i32 @h(i32 %x) {" >> %t.1.ll
5 ; RUN: echo " %1 = call i32 @f(i32 %x)" >> %t.1.ll
6 ; RUN: echo " ret i32 %1" >> %t.1.ll
7 ; RUN: echo "}" >> %t.1.ll
8 ; RUN: llvm-as < %t.1.ll > %t.1.bc

12345678910>>...47