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

1 2 3 4 5 6 7

  /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 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...]
  /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/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);
  /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/
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...]
  /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;
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;
  /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);
  /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/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();
AllowList.java 80 LinkedList<String> ll = new LinkedList<String> (); local
84 ll.add(a.getMethod());
87 return ll.listIterator();
  /external/openssl/crypto/ripemd/
rmd_locl.h 90 unsigned long ll; \
91 ll=(c)->A; HOST_l2c(ll,(s)); \
92 ll=(c)->B; HOST_l2c(ll,(s)); \
93 ll=(c)->C; HOST_l2c(ll,(s)); \
94 ll=(c)->D; HOST_l2c(ll,(s)); \
95 ll=(c)->E; HOST_l2c(ll,(s));
    [all...]
  /external/ppp/pppd/
eui64.h 95 #define eui64_get(ll, cp) do { \
96 eui64_copy((*cp), (ll)); \
100 #define eui64_put(ll, cp) do { \
101 eui64_copy((ll), (*cp)); \
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
pp_semaphore_luma.cpp 29 ll = pointer to the buffer (int)
117 int *ll, /* i */
228 pp_dec_y += ll[kk];
229 pp_prev1 += ll[kk];
230 pp_prev2 += ll[kk];
231 pp_prev3 += ll[kk];
232 pp_prev4 += ll[kk];
366 pp_dec_y += ll[kk];
  /external/e2fsprogs/util/
gcc-wall-cleanup 10 /does not support the `ll' length modifier/d
11 /does not support the `ll' printf length modifier/d
  /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...]

Completed in 1920 milliseconds

1 2 3 4 5 6 7