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

1 2 3 4 5 6 7

  /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:__anon16946
25 return rr.ll;
iamcu-abi.c 8 void fooll(long long *ll);
22 long long ll = 2; local
23 fooll(&ll);
nvptx-inlineasm-ptx.c 11 long long ll; local
32 asm volatile ("mov.b64 %0, %1;" : "=l"(ll) : "l"(ll));
  /external/toybox/toys/example/
demo_number.c 26 long long ll = atolx(*arg); local
29 human_readable(toybuf, ll, toys.optflags);
31 } else printf("%lld\n", ll);
  /external/toybox/toys/other/
mcookie.c 29 long long *ll = (void *)toybuf; local
34 xprintf("%016llx%06llx\n", ll[0], ll[1]);
free.c 31 long long ll = d*TT.units; local
34 if (toys.optflags & FLAG_h) human_readable(s, ll, 0);
35 else sprintf(s, "%llu",ll>>TT.bits);
timeout.c 60 long ll; local
62 tv->tv_sec = xparsetime(s, 6, &ll);
63 tv->tv_usec = ll;
factor.c 22 unsigned long long l, ll; local
58 for (ll=3; ;ll += 2) {
59 long lll = ll*ll;
61 if (lll>l || lll<ll) {
65 while (!(l%ll)) {
66 printf(" %llu", ll);
67 l /= 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] = &ll;
29 for (ll = 0LL; ll < 100LL; ll++)
32 CHECK(rlonglong == ll);
    [all...]
  /external/python/cpython2/Modules/_ctypes/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] = &ll;
29 for (ll = 0LL; ll < 100LL; ll++)
32 CHECK(rlonglong == ll);
    [all...]
  /external/clang/test/Sema/
ext_vector_conversions.c 15 long long ll; local
16 // This one is OK; we don't re-interpret ll as short4, rather we splat its
18 vs4 += ll; // expected-warning {{implicit conversion loses integer precision}}
  /external/u-boot/arch/mips/lib/
libgcc.h 22 long long ll; member in union:__anon46962
  /external/u-boot/arch/sh/lib/
libgcc.h 22 long long ll; member in union:__anon47013
  /art/test/980-redefine-object/src/
Main.java 127 LinkedList<Object> ll = new LinkedList<>(); local
129 ll.add(new Object());
130 ll.add(new Object());
131 ll.add(o2);
132 ll.add(o);
133 ll.add(t);
134 ll.add(t2);
135 ll.add(new Transform());
  /art/tools/amm/AmmTest/src/com/android/amm/test/
MainActivity.java 38 LinearLayout ll = new LinearLayout(this); local
39 mTextureViewUse = new TextureViewUse(this, ll, 200, 500);
40 mSurfaceViewUse = new SurfaceViewUse(this, ll, 240, 250);
41 setContentView(ll);
  /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);
  /development/tools/bugreport/src/com/android/bugreport/logcat/
LogcatParser.java 61 final LogLine ll = new LogLine(); local
63 ll.lineno = lineno++;
64 ll.rawText = text;
65 ll.bufferBegin = m.group(1);
67 result.lines.add(ll);
70 final LogLine ll = new LogLine(); local
72 ll.lineno = lineno++;
73 ll.rawText = text;
74 ll.header = m.group(1);
75 ll.time = Utils.parseCalendar(m, 2, true)
    [all...]
  /external/antlr/runtime/ObjC/Framework/
LinkedList.h 31 LinkedList *ll; variable
  /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/u-boot/arch/m68k/lib/
ashldi3.c 21 DItype ll; member in union:__anon46955
33 uu.ll = u;
48 return w.ll;
lshrdi3.c 21 DItype ll; member in union:__anon46956
33 uu.ll = u;
48 return w.ll;
  /cts/tests/tests/widget/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/clang/test/Modules/Inputs/
templates-right.h 42 List<long> ll; local
  /external/nist-sip/java/gov/nist/javax/sip/header/
AllowEventsList.java 80 LinkedList<String> ll = new LinkedList<String> (); local
83 ll.add(allowEvents.getEventType());
85 return ll.listIterator();

Completed in 768 milliseconds

1 2 3 4 5 6 7