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

1 2 3 4 5

  /external/clang/test/CodeGen/
arm-vaarg-align.c 18 long long ll = __builtin_va_arg(ap, long long); local
20 return ll;
31 double ll = __builtin_va_arg(ap, double); local
33 return ll;
2002-09-18-UnionProblem.c 10 short ll; member in union:__anon6246
25 return rr.ll;
  /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/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...]
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/
ButtonsWithTallTextViewInBetween.java 40 LinearLayout ll = getContentChildAt(2); local
41 return (Button) ll.getChildAt(0);
ShortButtons.java 41 LinearLayout ll = getContentChildAt(3); local
42 return (Button) ll.getChildAt(index - 3);
  /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);
  /external/clang/test/SemaCXX/
vector-casts.cpp 12 unsigned long long ll; local
22 (void)reinterpret_cast<__v2si>(ll);
23 (void)(__v2si)(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/openssl/crypto/bn/
bn_word.c 217 BN_ULONG ll; local
227 ll=bn_mul_words(a->d,a->d,a->top,w);
228 if (ll)
231 a->d[a->top++]=ll;
  /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;
  /ndk/tests/device/test-stlport_shared-exception/jni/
throw-1.cpp 37 int ll = 1; local
52 ll = i+j+k+l+m+n;
53 if (ll != 15)
56 printf("FAIL: sum %d != 15\n", ll);
throw-2.cpp 28 int ll = 1; local
43 ll = i+j+k+l+m+n;
44 if (ll != 15)
47 printf("FAIL: sum %d != 15\n", ll);
throw-3.cpp 28 int ll = 1; local
43 ll = i+j+k+l+m+n;
44 if (ll != 15)
47 printf("FAIL: sum %d != 15\n", ll);
throw-4.cpp 30 int ll = 1; local
45 ll = i+j+k+l+m+n;
46 if (ll != 15)
49 printf("FAIL: sum %d != 15\n", ll);
  /ndk/tests/device/test-stlport_static-exception/jni/
throw-1.cpp 37 int ll = 1; local
52 ll = i+j+k+l+m+n;
53 if (ll != 15)
56 printf("FAIL: sum %d != 15\n", ll);
throw-2.cpp 28 int ll = 1; local
43 ll = i+j+k+l+m+n;
44 if (ll != 15)
47 printf("FAIL: sum %d != 15\n", ll);
throw-3.cpp 28 int ll = 1; local
43 ll = i+j+k+l+m+n;
44 if (ll != 15)
47 printf("FAIL: sum %d != 15\n", ll);
throw-4.cpp 30 int ll = 1; local
45 ll = i+j+k+l+m+n;
46 if (ll != 15)
49 printf("FAIL: sum %d != 15\n", 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...]
  /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...]
  /frameworks/base/core/java/android/content/
SyncActivityTooManyDeletes.java 84 final LinearLayout ll = new LinearLayout(this); local
85 ll.setOrientation(LinearLayout.VERTICAL);
88 ll.addView(textView, lp);
89 ll.addView(listView, lp);
99 // ll.addView(imageView, lp);
106 setContentView(ll);
  /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...]

Completed in 657 milliseconds

1 2 3 4 5