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

1 2 3 45 6 7 8 91011>>

  /external/eigen/bench/
bench_gemm.cpp 122 std::ptrdiff_t l2 = internal::queryTopLevelCacheSize(); local
124 std::cout << "L2/L3 cache size = " << (l2>0 ? l2/1024 : -1) << " KB\n";
  /external/elfutils/libdw/
dwarf_getlocation.c 89 const struct loc_s *l2 = (const struct loc_s *) p2; local
91 if ((uintptr_t) l1->addr < (uintptr_t) l2->addr)
93 if ((uintptr_t) l1->addr > (uintptr_t) l2->addr)
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
LocaleAliasTest.java 85 ULocale l2 = c2.getLocale(ULocale.VALID_LOCALE); local
89 if (!l1.equals(l2)) {
90 errln("CalendarTest: l1!=l2: l1= "+l1 +" l2= "+l2);
95 logln("Calendar(getLocale) old:"+l1+" new:"+l2);
115 ULocale l2 = df2.getLocale(ULocale.VALID_LOCALE); local
119 if (!l1.equals(l2)) {
120 errln("DateFormatTest: l1!=l2: l1= "+l1 +" l2= "+l2)
207 ULocale l2 = urb2.getULocale(); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
LocaleAliasTest.java 81 ULocale l2 = c2.getLocale(ULocale.VALID_LOCALE); local
85 if (!l1.equals(l2)) {
86 errln("CalendarTest: l1!=l2: l1= "+l1 +" l2= "+l2);
91 logln("Calendar(getLocale) old:"+l1+" new:"+l2);
111 ULocale l2 = df2.getLocale(ULocale.VALID_LOCALE); local
115 if (!l1.equals(l2)) {
116 errln("DateFormatTest: l1!=l2: l1= "+l1 +" l2= "+l2)
203 ULocale l2 = urb2.getULocale(); local
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/
ClassProbesAdapterTest.java 175 Label l2 = new Label(); local
176 mv.visitTableSwitchInsn(0, 0, l1, new Label[] { l2 });
179 mv.visitLabel(l2);
190 Label l2 = new Label(); local
191 mv.visitLookupSwitchInsn(l1, new int[] { 0 }, new Label[] { l2 });
194 mv.visitLabel(l2);
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/instr/
MethodInstrumenterTest.java 181 final Label l2 = new Label(); local
182 expectedVisitor.visitJumpInsn(opcodeInstr, l2);
185 expectedVisitor.visitLabel(l2);
195 final Label L2 = new Label();
199 L1, L2 }, frame);
202 new Label[] { L1, L1, L2 });
219 final Label L2 = new Label();
223 new int[] { 10, 20, 30 }, new Label[] { L1, L1, L2 }, frame);
226 new Label[] { L1, L1, L2 });
  /external/llvm/unittests/ADT/
HashingTest.cpp 397 const LargeTestInteger l2 = { { local
410 hash_combine(bigarr[0], l2));
414 hash_combine(li, bigarr[0], l2));
418 hash_combine(bigarr[0], l2, bigarr[9], l3));
420 hash_combine(bigarr[0], l2, bigarr[9], l3, bigarr[18], bigarr[19]));
  /external/opencv/cvaux/src/
cvbgfg_codebook.cpp 147 uchar p0, p1, p2, l0, l1, l2, h0, h1, h2; local
154 l0 = SAT_8U(p0 - cb0); l1 = SAT_8U(p1 - cb1); l2 = SAT_8U(p2 - cb2);
177 if( e->learnMin[2] > l2 ) e->learnMin[2]--;
208 e->learnMin[2] = l2; e->learnMax[2] = h2;
271 int l0 = p0 + m0, l1 = p1 + m1, l2 = p2 + m2; local
279 e->boxMin[2] <= l2 && h2 <= e->boxMax[2] )
  /external/pdfium/xfa/src/fxbarcode/datamatrix/
BC_DataMatrixDetector.cpp 239 int32_t l2 = FXSYS_abs(dimensionTop - local
247 if (l1 <= l2) {
284 int32_t l2 = FXSYS_abs(CBC_AutoPtr<CBC_ResultPointsAndTransitions>( local
290 return l1 <= l2 ? c1.release() : c2.release();
  /external/wpa_supplicant_8/src/drivers/
driver_roboswitch.c 57 struct l2_packet_data *l2; member in struct:wpa_driver_roboswitch_data
215 drv->l2 = l2_packet_init(drv->ifname, NULL, ETH_P_ALL,
218 if (drv->l2 == NULL) {
224 l2_packet_get_own_addr(drv->l2, drv->own_addr);
227 drv->l2 = NULL;
453 if (drv->l2) {
454 l2_packet_deinit(drv->l2);
455 drv->l2 = NULL;
  /external/wpa_supplicant_8/src/l2_packet/
l2_packet_freebsd.c 48 int l2_packet_get_own_addr(struct l2_packet_data *l2, u8 *addr)
50 os_memcpy(addr, l2->own_addr, ETH_ALEN);
55 int l2_packet_send(struct l2_packet_data *l2, const u8 *dst_addr, u16 proto,
58 if (!l2->l2_hdr) {
64 os_memcpy(eth->h_source, l2->own_addr, ETH_ALEN);
67 ret = pcap_inject(l2->pcap, (u8 *) eth, len + sizeof(*eth));
71 return pcap_inject(l2->pcap, buf, len);
77 struct l2_packet_data *l2 = eloop_ctx; local
91 if (l2->l2_hdr) {
98 l2->rx_callback(l2->rx_callback_ctx, ethhdr->h_source, buf, len)
233 struct l2_packet_data *l2; local
    [all...]
l2_packet_linux.c 88 int l2_packet_get_own_addr(struct l2_packet_data *l2, u8 *addr)
90 os_memcpy(addr, l2->own_addr, ETH_ALEN);
95 int l2_packet_send(struct l2_packet_data *l2, const u8 *dst_addr, u16 proto,
99 if (l2 == NULL)
101 if (l2->l2_hdr) {
102 ret = send(l2->fd, buf, len, 0);
110 ll.sll_ifindex = l2->ifindex;
114 ret = sendto(l2->fd, buf, len, 0, (struct sockaddr *) &ll,
127 struct l2_packet_data *l2 = eloop_ctx; local
147 if (l2->fd_br_rx >= 0)
195 struct l2_packet_data *l2 = eloop_ctx; local
251 struct l2_packet_data *l2; local
319 struct l2_packet_data *l2; local
    [all...]
l2_packet_ndis.c 56 struct l2_packet_data *l2[2]; member in struct:l2_packet_ndisuio_global
84 int l2_packet_get_own_addr(struct l2_packet_data *l2, u8 *addr)
86 os_memcpy(addr, l2->own_addr, ETH_ALEN);
91 int l2_packet_send(struct l2_packet_data *l2, const u8 *dst_addr, u16 proto,
102 if (l2 == NULL)
112 if (l2->l2_hdr) {
122 os_memcpy(eth->h_source, l2->own_addr, ETH_ALEN);
134 wpa_printf(MSG_DEBUG, "L2(NDISUIO): Wait for pending "
140 wpa_printf(MSG_DEBUG, "L2(NDISUIO): "
148 wpa_printf(MSG_DEBUG, "L2(NDISUIO): WriteFile failed: %d"
198 struct l2_packet_data *l2 = arg; local
306 struct l2_packet_data *l2 = eloop_data; local
354 struct l2_packet_data *l2; local
    [all...]
l2_packet_pcap.c 43 int l2_packet_get_own_addr(struct l2_packet_data *l2, u8 *addr)
45 os_memcpy(addr, l2->own_addr, ETH_ALEN);
51 static int l2_packet_init_libdnet(struct l2_packet_data *l2)
55 l2->eth = eth_open(l2->ifname);
56 if (!l2->eth) {
59 l2->ifname, strerror(errno));
63 if (eth_get(l2->eth, &own_addr) < 0) {
66 l2->ifname, strerror(errno));
67 eth_close(l2->eth)
120 struct l2_packet_data *l2 = eloop_ctx; local
150 struct l2_packet_data *l2 = (struct l2_packet_data *) user; local
177 struct l2_packet_data *l2 = eloop_ctx; local
285 struct l2_packet_data *l2; local
    [all...]
l2_packet_winpcap.c 65 int l2_packet_get_own_addr(struct l2_packet_data *l2, u8 *addr)
67 os_memcpy(addr, l2->own_addr, ETH_ALEN);
72 int l2_packet_send(struct l2_packet_data *l2, const u8 *dst_addr, u16 proto,
78 if (l2 == NULL)
81 if (l2->l2_hdr) {
82 ret = pcap_sendpacket(l2->pcap, buf, len);
90 os_memcpy(eth->h_source, l2->own_addr, ETH_ALEN);
93 ret = pcap_sendpacket(l2->pcap, (u8 *) eth, mlen);
105 struct l2_packet_data *l2 = (struct l2_packet_data *) user; local
112 if (l2->l2_hdr)
130 struct l2_packet_data *l2 = arg; local
153 struct l2_packet_data *l2 = eloop_data; local
204 struct l2_packet_data *l2; local
265 struct l2_packet_data *l2 = eloop_ctx; local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/animation/
ValueAnimatorTests.java 112 final MyListener l2 = new MyListener(); local
114 a2.addListener(l2);
120 assertFalse(l2.startCalled);
121 assertFalse(l2.cancelCalled);
122 assertFalse(l2.endCalled);
152 assertFalse(l2.startCalled);
171 assertTrue(l2.startCalled);
172 assertFalse(l2.cancelCalled);
173 assertTrue(l2.endCalled);
306 MyPauseListener l2 = new MyPauseListener() local
    [all...]
  /frameworks/base/packages/Osu/src/com/android/hotspot2/pps/
DomainMatcher.java 104 Iterator<String> l2 = arg2.iterator(); local
107 if (!l1.next().equals(l2.next())) {
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/pps/
DomainMatcher.java 106 Iterator<String> l2 = arg2.iterator(); local
109 if (!l1.next().equals(l2.next())) {
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_resize.c 320 int l2 = (length - filter_len_half); local
322 l2 += (l2 & 1);
323 if (l1 > l2) {
346 for (; i < l2; i += 2) {
376 int l2 = (length - filter_len_half + 1); local
378 l2 += (l2 & 1);
379 if (l1 > l2) {
402 for (; i < l2; i += 2)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
LocaleTest.java 116 Locale l2 = new Locale("en", "CA", "WIN32"); local
118 assertTrue("Same values returned false", testLocale.equals(l2));
397 Locale l2 = new Locale("fr", "CA"); local
399 assertTrue(l1.hashCode() != l2.hashCode());
  /packages/apps/CertInstaller/src/com/android/certinstaller/
WiFiInstaller.java 98 Iterator<String> l2 = arg2.iterator(); local
100 while(l1.hasNext() && l2.hasNext()) {
101 if (!l1.next().equals(l2.next())) {
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/bfin/
load.s 21 l2 = 32 (z); define
  /bionic/libc/kernel/uapi/linux/
atmsap.h 86 } l2; member in struct:atm_blli
  /cts/tests/tests/view/src/android/view/cts/
ViewTreeObserverTest.java 302 final MockOnTouchModeChangeListener l2 = listener; local
306 return !l2.hasCalledOnTouchModeChanged();
  /development/ndk/platforms/android-21/include/linux/
atmsap.h 86 } l2; member in struct:atm_blli

Completed in 741 milliseconds

1 2 3 45 6 7 8 91011>>