HomeSort by relevance Sort by last modified time
    Searched defs:l2 (Results 76 - 100 of 419) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/wpa_supplicant_8/src/ap/
preauth_auth.c 35 struct l2_packet_data *l2; member in struct:rsn_preauth_interface
113 piface->l2 = l2_packet_init(piface->ifname, NULL, ETH_P_PREAUTH,
115 if (piface->l2 == NULL) {
142 l2_packet_deinit(prev->l2);
259 if (l2_packet_send(piface->l2, sta->addr, ETH_P_PREAUTH, (u8 *) ethhdr,
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/
full_lambda.hpp 179 typedef lambda< Tag1,Tag2 > l2; typedef in struct:boost::mpl::lambda
185 typedef aux::le_result3<is_le, Tag2, mpl::lambda, l1, l2, l3> le_result_;
202 typedef lambda< Tag1,Tag2 > l2; typedef in struct:boost::mpl::lambda
205 typedef aux::le_result2<is_le, Tag2, mpl::lambda, l1, l2> le_result_;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
full_lambda.hpp 161 , typename L1, typename L2
166 typename L1::type, typename L2::type
175 , typename L1, typename L2
177 struct le_result2< true_,Tag,F,L1,L2 >
181 , typename L1::result_, typename L2::result_
201 typedef lambda< T2,Tag > l2; typedef in struct:boost::mpl::lambda
204 typedef typename l2::is_le is_le2;
212 is_le, Tag, F, l1, l2
243 , typename L1, typename L2, typename L3
248 typename L1::type, typename L2::type, typename L3::typ
283 typedef lambda< T2,Tag > l2; typedef in struct:boost::mpl::lambda
369 typedef lambda< T2,Tag > l2; typedef in struct:boost::mpl::lambda
461 typedef lambda< T2,Tag > l2; typedef in struct:boost::mpl::lambda
546 typedef lambda< Tag1,Tag2 > l2; typedef in struct:boost::mpl::lambda
    [all...]
  /system/sepolicy/tools/sepolicy-analyze/
typecmp.c 121 int idx1, struct avtab_node *l2, int idx2)
126 for (c = l2; c; c = c->next) {
160 struct avtab_node *type_rules, *l1, *l2; local
220 for (l1 = type_rules[i].next, l2 = type_rules[j].next;
221 l1 && l2; l1 = l1->next, l2 = l2->next) {
222 if (l1->key.source_type != l2->key.source_type)
224 if (l1->key.target_type != l2->key.target_type)
226 if (l1->key.target_class != l2->key.target_clas
    [all...]
  /frameworks/base/core/tests/coretests/src/android/net/
LinkAddressTest.java 194 private void assertIsSameAddressAs(LinkAddress l1, LinkAddress l2) {
195 assertTrue(l1 + " unexpectedly does not have same address as " + l2,
196 l1.isSameAddressAs(l2));
197 assertTrue(l2 + " unexpectedly does not have same address as " + l1,
198 l2.isSameAddressAs(l1));
201 private void assertIsNotSameAddressAs(LinkAddress l1, LinkAddress l2) {
202 assertFalse(l1 + " unexpectedly has same address as " + l2,
203 l1.isSameAddressAs(l2));
204 assertFalse(l2 + " unexpectedly has same address as " + l1,
205 l1.isSameAddressAs(l2));
220 LinkAddress l1, l2, l3; local
320 LinkAddress l2 = null; local
333 LinkAddress l2 = passThroughParcel(l); local
    [all...]
  /art/compiler/utils/
assembler_thumb_test.cc 705 Label l2; local
706 __ b(&l2);
708 __ Bind(&l2);
744 Label l2; local
745 __ b(&l2);
747 __ Bind(&l2);
935 Label l2; local
936 __ cbnz(R2, &l2);
939 __ Bind(&l2);
1129 Label l2; local
    [all...]
  /external/bison/lib/
localcharset.c 192 size_t l1, l2; local
214 l2 = strlen (buf2);
218 res_size = l1 + 1 + l2 + 1;
223 res_size += l1 + 1 + l2 + 1;
233 strcpy (res_ptr + res_size - (l2 + 1) - (l1 + 1), buf1);
234 strcpy (res_ptr + res_size - (l2 + 1), buf2);
  /external/e2fsprogs/intl/
localcharset.c 149 size_t l1, l2; local
172 l2 = strlen (buf2);
175 res_size = l1 + 1 + l2 + 1;
180 res_size += l1 + 1 + l2 + 1;
189 strcpy (res_ptr + res_size - (l2 + 1) - (l1 + 1), buf1);
190 strcpy (res_ptr + res_size - (l2 + 1), buf2);
  /external/icu/icu4c/source/test/intltest/
aliastst.cpp 71 const char* l2 = c2->getLocaleID(ULOC_VALID_LOCALE, status); local
75 if (strcmp(l1, l2)!=0) {
76 errln("CalendarTest: l1!=l2: l1= "+UnicodeString(l1) +" l2= "+UnicodeString(l2));
81 logln("Calendar(getLocale) old:"+UnicodeString(l1)+" new:"+UnicodeString(l2));
104 const char* l2 = df2->getLocaleID(ULOC_VALID_LOCALE, status); local
108 if (strcmp(l1, l2)!=0) {
109 errln("TestDateFormat: l1!=l2: l1= "+UnicodeString(l1) +" l2= "+UnicodeString(l2))
137 Locale l2 = c2->getLocale(ULOC_VALID_LOCALE, status); local
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/
MethodSanitizerTest.java 44 Label l2 = new Label(); local
48 sanitizer.visitLabel(l2);
49 sanitizer.visitLocalVariable("x", "I", null, l1, l2, 0);
68 Label l2 = new Label(); local
71 sanitizer.visitLabel(l2);
72 sanitizer.visitLocalVariable("x", "I", null, l1, l2, 0);
88 Label l2 = new Label(); local
92 sanitizer.visitLocalVariable("x", "I", null, l1, l2, 0);
  /external/libdrm/nouveau/nvif/
cl9097.h 32 __u32 l2[4]; member in struct:fermi_a_zbc_color_v0
42 __u32 l2; member in struct:fermi_a_zbc_depth_v0
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/tools/
test_trig.c 172 FT_Fixed l, l2; local
178 l2 = FT_Vector_Length( &v );
180 if ( abs( l2-l ) > THRESHOLD )
184 v.x/65536.0, v.y/65536.0, l2/65536.0, l/65536.0 );
  /external/wpa_supplicant_8/src/l2_packet/
l2_packet_privsep.c 29 static int wpa_priv_cmd(struct l2_packet_data *l2, int cmd,
43 msg.msg_name = &l2->priv_addr;
44 msg.msg_namelen = sizeof(l2->priv_addr);
46 if (sendmsg(l2->fd, &msg, 0) < 0) {
47 wpa_printf(MSG_ERROR, "L2: sendmsg(cmd): %s", strerror(errno));
55 int l2_packet_get_own_addr(struct l2_packet_data *l2, u8 *addr)
57 os_memcpy(addr, l2->own_addr, ETH_ALEN);
62 int l2_packet_send(struct l2_packet_data *l2, const u8 *dst_addr, u16 proto,
81 msg.msg_name = &l2->priv_addr;
82 msg.msg_namelen = sizeof(l2->priv_addr)
96 struct l2_packet_data *l2 = eloop_ctx; local
134 struct l2_packet_data *l2; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
preauth_test.c 218 struct l2_packet_data *l2; local
252 l2 = l2_packet_init(wpa_s->ifname, NULL, ETH_P_RSN_PREAUTH, NULL,
254 assert(l2 != NULL);
255 if (l2_packet_get_own_addr(l2, wpa_s->own_addr)) {
256 wpa_printf(MSG_WARNING, "Failed to get own L2 address\n");
259 l2_packet_deinit(l2);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/bfin/
move.s 6 l2 = R5; define
  /toolchain/binutils/binutils-2.25/intl/
localcharset.c 149 size_t l1, l2; local
172 l2 = strlen (buf2);
175 res_size = l1 + 1 + l2 + 1;
180 res_size += l1 + 1 + l2 + 1;
189 strcpy (res_ptr + res_size - (l2 + 1) - (l1 + 1), buf1);
190 strcpy (res_ptr + res_size - (l2 + 1), buf2);
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
FatType.java 94 final long l2 = data[idx + 1] & 0xFF; local
97 return (l4 << 24) | (l3 << 16) | (l2 << 8) | l1;
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
LevelTest.java 223 MockLevel l2 = new MockLevel("level2", 1); local
224 assertEquals(l1, l2);
225 assertEquals(l2, l1);
233 MockLevel l2 = new MockLevel("level1", 2); local
234 assertFalse(l1.equals(l2));
235 assertFalse(l2.equals(l1));
  /external/apache-harmony/beans/src/test/java/org/apache/harmony/beans/tests/java/beans/
PropertyChangeSupportTest.java 76 PropertyChangeListener l2 = new MockPropertyChangeListener(); local
78 l2);
90 assertSame(l2, ((PropertyChangeListenerProxy) sup
102 l2,
147 PropertyChangeListener l2 = new MockPropertyChangeListener(); local
149 l2);
168 l2,
181 assertSame(l2, ((PropertyChangeListenerProxy) listeners[0])
213 PropertyChangeListener l2 = new MockPropertyChangeListener(); local
215 l2);
232 PropertyChangeListener l2 = new MockPropertyChangeListener(); local
270 PropertyChangeListener l2 = new MockPropertyChangeListener(); local
362 PropertyChangeListener l2 = new MockPropertyChangeListener(); local
424 PropertyChangeListener l2 = new MockPropertyChangeListener(); local
454 PropertyChangeListener l2 = new MockPropertyChangeListener(); local
479 PropertyChangeListener l2 = new MockPropertyChangeListener(); local
512 PropertyChangeListener l2 = new MockPropertyChangeListener(); local
533 PropertyChangeListener l2 = new MockPropertyChangeListener(); local
610 MockPropertyChangeListener l2 = new MockPropertyChangeListener(src, local
639 MockPropertyChangeListener l2 = new MockPropertyChangeListener(src, local
668 MockPropertyChangeListener l2 = new MockPropertyChangeListener(src, local
697 MockPropertyChangeListener l2 = new MockPropertyChangeListener(src, local
726 MockPropertyChangeListener l2 = new MockPropertyChangeListener(src, local
754 MockPropertyChangeListener l2 = new MockPropertyChangeListener(src, local
800 MockPropertyChangeListener l2 = new MockPropertyChangeListener(src2, local
832 MockPropertyChangeListener l2 = new MockPropertyChangeListener(src2, local
864 MockPropertyChangeListener l2 = new MockPropertyChangeListener(src2, local
896 MockPropertyChangeListener l2 = new MockPropertyChangeListener(src2, local
928 MockPropertyChangeListener l2 = new MockPropertyChangeListener(src2, local
959 MockPropertyChangeListener l2 = new MockPropertyChangeListener(src2, local
1016 MockPropertyChangeListener l2 = new MockPropertyChangeListener(src, local
1045 MockPropertyChangeListener l2 = new MockPropertyChangeListener(src, local
1073 MockPropertyChangeListener l2 = new MockPropertyChangeListener(src, local
1113 MockPropertyChangeListener l2 = new MockPropertyChangeListener(src, local
1142 MockPropertyChangeListener l2 = new MockPropertyChangeListener(src, local
1171 MockPropertyChangeListener l2 = new MockPropertyChangeListener(src, local
1211 MockPropertyChangeListener2 l2 = new MockPropertyChangeListener2(); local
1242 MockPropertyChangeListener2 l2 = new MockPropertyChangeListener2(); local
    [all...]
  /external/ceres-solver/examples/
simple_bundle_adjuster.cc 147 const T& l2 = camera[8]; local
149 T distortion = T(1.0) + r2 * (l1 + l2 * r2);
  /external/clang/test/Analysis/
lambdas.cpp 41 auto l2 = [&i] { local
51 l2();
  /external/clang/test/CXX/temp/temp.decls/temp.friend/
p1.cpp 233 A<char> l2; local
234 l2.foo(); // expected-error {{'foo' is a private member of 'test10::A<char>'}}
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_deadlock_detector_test.cc 145 uptr l2 = d.newNode(2); local
150 // l0=>l1=>l2
153 d.onLock(&dtls, l2);
156 d.onUnlock(&dtls, l2);
168 locks.insert(l2);
180 // l2=>l0
181 EXPECT_FALSE(d.onLock(&dtls, l2));
183 d.onUnlock(&dtls, l2);
193 d.removeNode(l2);
231 // l2 and l3 should have ben reused
328 uptr l2 = d.newNode(0); local
393 uptr l2 = d.newNode(0); local
423 uptr l2 = d.newNode(0); local
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_fd.cc 136 for (int l2 = 0; l2 < kTableSizeL2; l2++) {
137 FdDesc *d = &tab[l2];
149 int l2 = (addr - (uptr)tab) / sizeof(FdDesc); local
150 FdDesc *d = &tab[l2];
151 *fd = l1 * kTableSizeL1 + l2;
  /external/eigen/Eigen/src/Core/products/
TriangularSolverMatrix.h 82 std::ptrdiff_t l1, l2; local
83 manage_caching_sizes(GetAction, &l1, &l2);
84 Index subcols = cols>0 ? l2/(4 * sizeof(Scalar) * otherStride) : 0;

Completed in 510 milliseconds

1 2 34 5 6 7 8 91011>>