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

1 2 3 4 5 6 7 8 91011>>

  /external/libffi/testsuite/libffi.call/
return_ll.c 9 static long long return_ll(long long ll)
11 return ll;
20 long long ll; local
23 values[0] = ≪
29 for (ll = 0LL; ll < 100LL; ll++)
32 CHECK(rlonglong == ll);
    [all...]
  /external/clang/test/CodeGen/
2002-02-18-64bitConstant.c 8 long long Var = 123455678902ll;
arm-vaarg-align.c 17 long long ll = __builtin_va_arg(ap, long long); local
19 return ll;
30 double ll = __builtin_va_arg(ap, double); local
32 return ll;
2002-09-18-UnionProblem.c 10 short ll; member in union:__anon5201
25 return rr.ll;
  /external/openssl/crypto/des/
ecb3_enc.c 67 DES_LONG ll[2]; local
73 ll[0]=l0;
74 ll[1]=l1;
76 DES_encrypt3(ll,ks1,ks2,ks3);
78 DES_decrypt3(ll,ks1,ks2,ks3);
79 l0=ll[0];
80 l1=ll[1];
ecb_enc.c 112 DES_LONG ll[2]; local
116 c2l(in,l); ll[0]=l;
117 c2l(in,l); ll[1]=l;
118 DES_encrypt1(ll,ks,enc);
119 l=ll[0]; l2c(l,out);
120 l=ll[1]; l2c(l,out);
121 l=ll[0]=ll[1]=0;
  /libcore/luni/src/test/java/tests/api/java/util/
LinkedListTest.java 34 LinkedList ll; field in class:LinkedListTest
43 new Support_ListTest("", ll).runTest();
56 assertTrue("Incorrect LinkedList constructed", new LinkedList(ll)
57 .equals(ll));
73 ll.add(50, o = "Test");
74 assertTrue("Failed to add Object>: " + ll.get(50).toString(), ll
77 ll.get(51) == objArray[50] && (ll.get(52) == objArray[51]));
78 ll.add(50, null)
    [all...]
  /external/clang/test/Sema/
conversion.c 9 void test0(char c, short s, int i, long l, long long ll) {
62 char test1(long long ll) {
63 return (long long) ll; // expected-warning {{implicit conversion loses integer precision}}
65 char test1_a(long long ll) {
66 return (long) ll; // expected-warning {{implicit conversion loses integer precision}}
68 char test1_b(long long ll) {
69 return (int) ll; // expected-warning {{implicit conversion loses integer precision}}
71 char test1_c(long long ll) {
72 return (short) ll; // expected-warning {{implicit conversion loses integer precision}}
74 char test1_d(long long ll) {
    [all...]
int-arith-convert.c 12 __typeof(1ll+1u) z;
  /external/llvm/utils/lit/lit/ExampleTests/LLVM.InTree/test/Bar/
dg.exp 4 RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{ll}]]
  /external/llvm/utils/lit/lit/ExampleTests/LLVM.OutOfTree/src/test/Foo/
dg.exp 4 RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{ll}]]
  /external/openssh/openbsd-compat/
strtonum.c 37 long long ll = 0; local
55 ll = strtoll(numstr, &ep, 10);
58 else if ((ll == LLONG_MIN && errno == ERANGE) || ll < minval)
60 else if ((ll == LLONG_MAX && errno == ERANGE) || ll > maxval)
67 ll = 0;
69 return (ll);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
LinkedListTest.java 38 LinkedList ll; field in class:LinkedListTest
64 new Support_ListTest("", ll).runTest();
77 assertTrue("Incorrect LinkedList constructed", new LinkedList(ll)
78 .equals(ll));
87 ll.add(50, o = "Test");
88 assertTrue("Failed to add Object>: " + ll.get(50).toString(), ll
91 ll.get(51) == objArray[50] && (ll.get(52) == objArray[51]));
92 ll.add(50, null)
    [all...]
  /external/openssl/crypto/md4/
md4_locl.h 79 unsigned long ll; \
80 ll=(c)->A; HOST_l2c(ll,(s)); \
81 ll=(c)->B; HOST_l2c(ll,(s)); \
82 ll=(c)->C; HOST_l2c(ll,(s)); \
83 ll=(c)->D; HOST_l2c(ll,(s)); \
  /development/samples/ApiDemos/src/com/example/android/apis/view/
InternalSelectionScroll.java 50 LinearLayout ll = new LinearLayout(this); local
51 ll.setLayoutParams(svLp);
52 sv.addView(ll);
60 ll.addView(isv);
  /frameworks/compile/libbcc/lib/ScriptCRT/
Android.mk 29 convert.ll \
30 matrix.ll \
31 pixel_packing.ll
39 neon/clamp.ll
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/
ButtonsWithTallTextViewInBetween.java 40 LinearLayout ll = getContentChildAt(2); local
41 return (Button) ll.getChildAt(0);
  /cts/tests/src/android/widget/cts/util/
ListItemFactory.java 48 final LinearLayout ll = new LinearLayout(context); local
49 ll.setOrientation(LinearLayout.VERTICAL);
60 ll.addView(topButton);
67 ll.addView(middleFiller);
72 ll.addView(bottomButton);
73 ll.setTag("twoButtons");
74 return ll;
87 * @param desiredHeight The height of the LL.
93 final LinearLayout ll = new LinearLayout(context); local
94 ll.setOrientation(LinearLayout.HORIZONTAL)
236 final LinearLayout ll = new LinearLayout(context); local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/l2_packet/
l2_packet_linux.c 56 struct sockaddr_ll ll; local
57 os_memset(&ll, 0, sizeof(ll));
58 ll.sll_family = AF_PACKET;
59 ll.sll_ifindex = l2->ifindex;
60 ll.sll_protocol = htons(proto);
61 ll.sll_halen = ETH_ALEN;
62 os_memcpy(ll.sll_addr, dst_addr, ETH_ALEN);
63 ret = sendto(l2->fd, buf, len, 0, (struct sockaddr *) &ll,
64 sizeof(ll));
77 struct sockaddr_ll ll; local
101 struct sockaddr_ll ll; local
    [all...]
  /external/wpa_supplicant_8/src/l2_packet/
l2_packet_linux.c 51 struct sockaddr_ll ll; local
52 os_memset(&ll, 0, sizeof(ll));
53 ll.sll_family = AF_PACKET;
54 ll.sll_ifindex = l2->ifindex;
55 ll.sll_protocol = htons(proto);
56 ll.sll_halen = ETH_ALEN;
57 os_memcpy(ll.sll_addr, dst_addr, ETH_ALEN);
58 ret = sendto(l2->fd, buf, len, 0, (struct sockaddr *) &ll,
59 sizeof(ll));
74 struct sockaddr_ll ll; local
99 struct sockaddr_ll ll; local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/util/
ListItemFactory.java 48 final LinearLayout ll = new LinearLayout(context); local
49 ll.setOrientation(LinearLayout.VERTICAL);
60 ll.addView(topButton);
67 ll.addView(middleFiller);
72 ll.addView(bottomButton);
73 ll.setTag("twoButtons");
74 return ll;
87 * @param desiredHeight The height of the LL.
93 final LinearLayout ll = new LinearLayout(context); local
94 ll.setOrientation(LinearLayout.HORIZONTAL)
237 final LinearLayout ll = new LinearLayout(context); local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListItemISVAndButton.java 45 final LinearLayout ll = new LinearLayout(context); local
46 ll.setOrientation(LinearLayout.VERTICAL);
52 ll.addView(isv);
62 ll.addView(topButton);
69 ll.addView(filler);
72 return ll;
  /external/openssl/crypto/md5/
md5_locl.h 88 unsigned long ll; \
89 ll=(c)->A; HOST_l2c(ll,(s)); \
90 ll=(c)->B; HOST_l2c(ll,(s)); \
91 ll=(c)->C; HOST_l2c(ll,(s)); \
92 ll=(c)->D; HOST_l2c(ll,(s)); \
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
HorizontalFocusSearch.java 117 LinearLayout ll = new LinearLayout(this); local
118 ll.setOrientation(LinearLayout.VERTICAL);
119 ll.setLayoutParams(new LinearLayout.LayoutParams(
124 ll.addView(filler);
125 ll.addView(button);
126 root.addView(ll);
128 ll.addView(button);
129 ll.addView(filler);
130 root.addView(ll);
VerticalFocusSearch.java 133 LinearLayout ll = new LinearLayout(this); local
134 ll.setOrientation(LinearLayout.HORIZONTAL);
135 ll.setLayoutParams(new LinearLayout.LayoutParams(
140 ll.addView(filler);
141 ll.addView(button);
142 root.addView(ll);
144 ll.addView(button);
145 ll.addView(filler);
146 root.addView(ll);

Completed in 2185 milliseconds

1 2 3 4 5 6 7 8 91011>>