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

1 2 3

  /external/openssl/crypto/des/
ecb_enc.c 66 DES_LONG ll[2]; local
70 c2l(in,l); ll[0]=l;
71 c2l(in,l); ll[1]=l;
72 DES_encrypt1(ll,ks,enc);
73 l=ll[0]; l2c(l,out);
74 l=ll[1]; l2c(l,out);
75 l=ll[0]=ll[1]=0;
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];
fcrypt.c 103 DES_LONG out[2],ll; local
146 ll=out[0]; l2c(ll,b);
147 ll=out[1]; l2c(ll,b);
  /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...]
  /dalvik/libcore/luni/src/test/java/tests/api/java/util/
LinkedListTest.java 40 LinkedList ll; field in class:LinkedListTest
55 new Support_ListTest("", ll).runTest();
74 assertTrue("Incorrect LinkedList constructed", new LinkedList(ll)
75 .equals(ll));
97 ll.add(50, o = "Test");
98 assertTrue("Failed to add Object>: " + ll.get(50).toString(), ll
101 ll.get(51) == objArray[50] && (ll.get(52) == objArray[51]));
102 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/openssl/crypto/bn/
bn_word.c 226 BN_ULONG ll; local
236 ll=bn_mul_words(a->d,a->d,a->top,w);
237 if (ll)
240 a->d[a->top++]=ll;
bn_asm.c 301 BN_ULLONG ll=0; local
308 ll+=(BN_ULLONG)a[0]+b[0];
309 r[0]=(BN_ULONG)ll&BN_MASK2;
310 ll>>=BN_BITS2;
313 ll+=(BN_ULLONG)a[1]+b[1];
314 r[1]=(BN_ULONG)ll&BN_MASK2;
315 ll>>=BN_BITS2;
318 ll+=(BN_ULLONG)a[2]+b[2];
319 r[2]=(BN_ULONG)ll&BN_MASK2;
320 ll>>=BN_BITS2
    [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;
AdjacentListsWithAdjacentISVsInside.java 90 final LinearLayout ll = new LinearLayout(views[0].getContext()); local
91 ll.setOrientation(LinearLayout.HORIZONTAL);
96 ll.addView(view, lp);
98 return ll;
  /cts/tests/src/android/view/cts/
FocusFinderStubActivity.java 135 LinearLayout ll = new LinearLayout(this); local
136 ll.setOrientation(LinearLayout.HORIZONTAL);
137 ll.setLayoutParams(new LinearLayout.LayoutParams(
142 ll.addView(filler);
143 ll.addView(button);
144 root.addView(ll);
146 ll.addView(button);
147 ll.addView(filler);
148 root.addView(ll);
  /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/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/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);
  /packages/apps/AccountsAndSyncSettings/src/com/android/settings/
SyncActivityTooManyDeletes.java 85 final LinearLayout ll = new LinearLayout(this); local
86 ll.setOrientation(LinearLayout.VERTICAL);
89 ll.addView(textView, lp);
90 ll.addView(listView, lp);
100 // ll.addView(imageView, lp);
107 setContentView(ll);
  /bootable/bootloader/legacy/arch_msm7k/
mddi.c 75 mddi_llentry *ll; local
83 ll = mlist_remote_write;
85 ra = &(ll->u.r);
95 ll->flags = 1;
96 ll->header_count = 14;
97 ll->data_count = 4;
98 wr32(&ll->data, (unsigned) &ra->reg_data);
99 wr32(&ll->next, 0);
100 ll->reserved = 0;
102 writel((unsigned) ll, MDDI_PRI_PTR)
    [all...]
  /external/wpa_supplicant/
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_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/icu4c/layoutex/
playout.cpp 145 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; local
147 delete ll;
153 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; local
155 if (ll == NULL) {
159 return ll->countRuns();
165 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; local
167 if (ll == NULL) {
171 return ll->getAscent();
177 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; local
179 if (ll == NULL)
189 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; local
201 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; local
213 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; local
    [all...]
  /external/opencore/codecs_v2/video/m4v_h263/dec/src/
mb_motion_comp.cpp 157 int ll[4]; local
404 ll[0] = 1;
405 ll[1] = mvwidth - 1;
406 ll[2] = 1;
407 ll[3] = -mvwidth - 1;
409 video->pstprcTypPrv, ll, &tmp, px[0], py[0], mvwidth,
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
mb_motion_comp.cpp 157 int ll[4]; local
404 ll[0] = 1;
405 ll[1] = mvwidth - 1;
406 ll[2] = 1;
407 ll[3] = -mvwidth - 1;
409 video->pstprcTypPrv, ll, &tmp, px[0], py[0], mvwidth,
  /packages/apps/AlarmClock/src/com/android/alarmclock/
SetAlarm.java 124 LinearLayout ll = new LinearLayout(this); local
125 ll.setOrientation(LinearLayout.VERTICAL);
133 ll.addView(lv, lp);
137 R.layout.save_cancel_alarm, ll);
157 setContentView(ll);

Completed in 547 milliseconds

1 2 3