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

12 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
elf-rel9-mips16.s 26 lw $4,%got(l2)($2)
27 addiu $4,%lo(l2)
29 lw $4,%got(l2 + 0xfff)($2)
30 addiu $4,%lo(l2 + 0xfff)
32 lw $4,%got(l2 + 0x1000)($2)
33 addiu $4,%lo(l2 + 0x1000)
35 lw $4,%got(l2 + 0x12345)($2)
36 addiu $4,%lo(l2 + 0x12345)
53 l2: .word 7,8 label
elf-rel9.s 24 lw $4,%got(l2)($28)
25 addiu $4,$4,%lo(l2)
27 lw $4,%got(l2 + 0xfff)($28)
28 addiu $4,$4,%lo(l2 + 0xfff)
30 lw $4,%got(l2 + 0x1000)($28)
31 addiu $4,$4,%lo(l2 + 0x1000)
33 lw $4,%got(l2 + 0x12345)($28)
34 addiu $4,$4,%lo(l2 + 0x12345)
51 l2: .word 7,8 label
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.depend/
p1.cpp 32 auto l2 = []() [[carries_dependency]] {}; // expected-error {{'carries_dependency' attribute cannot be applied to types}} variable
  /external/compiler-rt/include/sanitizer/
dfsan_interface.h 35 dfsan_label l2; member in struct:dfsan_label_info
45 /// Computes the union of \c l1 and \c l2, possibly creating a union label in
47 dfsan_label dfsan_union(dfsan_label l1, dfsan_label l2);
  /external/v8/third_party/llvm-build/Release+Asserts/lib/clang/3.9.0/include/sanitizer/
dfsan_interface.h 35 dfsan_label l2; member in struct:dfsan_label_info
45 /// Computes the union of \c l1 and \c l2, possibly creating a union label in
47 dfsan_label dfsan_union(dfsan_label l1, dfsan_label l2);
  /external/wpa_supplicant_8/src/ap/
x_snoop.c 73 struct l2_packet_data *l2; local
75 l2 = l2_packet_init(conf->bridge, NULL, ETH_P_ALL, handler, hapd, 1);
76 if (l2 == NULL) {
78 "x_snoop: Failed to initialize L2 packet processing %s",
83 if (l2_packet_set_packet_filter(l2, type)) {
85 "x_snoop: Failed to set L2 packet filter for type: %d",
87 l2_packet_deinit(l2);
91 return l2;
  /prebuilts/clang/host/darwin-x86/clang-2629532/lib64/clang/3.8/include/sanitizer/
dfsan_interface.h 35 dfsan_label l2; member in struct:dfsan_label_info
45 /// Computes the union of \c l1 and \c l2, possibly creating a union label in
47 dfsan_label dfsan_union(dfsan_label l1, dfsan_label l2);
  /prebuilts/clang/host/darwin-x86/clang-2658975/lib64/clang/3.8/include/sanitizer/
dfsan_interface.h 35 dfsan_label l2; member in struct:dfsan_label_info
45 /// Computes the union of \c l1 and \c l2, possibly creating a union label in
47 dfsan_label dfsan_union(dfsan_label l1, dfsan_label l2);
  /prebuilts/clang/host/darwin-x86/clang-2690385/lib64/clang/3.8/include/sanitizer/
dfsan_interface.h 35 dfsan_label l2; member in struct:dfsan_label_info
45 /// Computes the union of \c l1 and \c l2, possibly creating a union label in
47 dfsan_label dfsan_union(dfsan_label l1, dfsan_label l2);
  /prebuilts/clang/host/linux-x86/3.8/lib/clang/3.8/include/sanitizer/
dfsan_interface.h 35 dfsan_label l2; member in struct:dfsan_label_info
45 /// Computes the union of \c l1 and \c l2, possibly creating a union label in
47 dfsan_label dfsan_union(dfsan_label l1, dfsan_label l2);
  /prebuilts/clang/host/linux-x86/clang-2629532/lib64/clang/3.8/include/sanitizer/
dfsan_interface.h 35 dfsan_label l2; member in struct:dfsan_label_info
45 /// Computes the union of \c l1 and \c l2, possibly creating a union label in
47 dfsan_label dfsan_union(dfsan_label l1, dfsan_label l2);
  /prebuilts/clang/host/linux-x86/clang-2658975/lib64/clang/3.8/include/sanitizer/
dfsan_interface.h 35 dfsan_label l2; member in struct:dfsan_label_info
45 /// Computes the union of \c l1 and \c l2, possibly creating a union label in
47 dfsan_label dfsan_union(dfsan_label l1, dfsan_label l2);
  /prebuilts/clang/host/linux-x86/clang-2690385/lib64/clang/3.8/include/sanitizer/
dfsan_interface.h 35 dfsan_label l2; member in struct:dfsan_label_info
45 /// Computes the union of \c l1 and \c l2, possibly creating a union label in
47 dfsan_label dfsan_union(dfsan_label l1, dfsan_label l2);
  /prebuilts/clang/linux-x86/host/3.6/lib/clang/3.6/include/sanitizer/
dfsan_interface.h 35 dfsan_label l2; member in struct:dfsan_label_info
45 /// Computes the union of \c l1 and \c l2, possibly creating a union label in
47 dfsan_label dfsan_union(dfsan_label l1, dfsan_label l2);
  /art/test/578-bce-visit/src/
Main.java 33 int l2 = ( -384); local
37 int l4 = ((l2--) & mX);
  /cts/suite/audio_quality/lib/src/
StringUtil.cpp 65 size_t l2 = strlen(other); local
67 if (l2 > l1) {
70 size_t iStr = l1 - l2;
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
default-arguments.cpp 16 auto l2 = [](int i, int j = i) {}; // expected-error{{default argument references parameter 'i'}} local
  /external/clang/test/CXX/over/over.match/over.match.best/over.ics.rank/
p3-0x.cpp 17 float &l2 = g2(f2()); member in namespace:std_example
  /external/compiler-rt/lib/dfsan/
dfsan.h 26 dfsan_label l2; member in struct:dfsan_label_info
35 dfsan_label dfsan_union(dfsan_label l1, dfsan_label l2);
  /external/eigen/test/
product_large.cpp 42 std::ptrdiff_t l2 = internal::random<int>(1000000,2000000); local
43 setCpuCacheSizes(l1,l2);
45 VERIFY(l2==l2CacheSize());
  /external/libcxx/test/std/thread/thread.mutex/thread.lock.algorithm/
lock.pass.cpp 14 // template <class L1, class L2, class... L3>
15 // void lock(L1&, L2&, L3&...);
66 class L2
71 L2() : locked_(false) {}
114 L2 l1;
127 L2 l0;
142 L2 l1;
155 L2 l0;
169 L2 l0;
170 L2 l1
186 L0 l2; local
195 L2 l2; local
211 L1 l2; local
220 L0 l2; local
229 L0 l2; local
238 L2 l2; local
254 L0 l2; local
270 L0 l2; local
286 L0 l2; local
302 L2 l2; local
318 L2 l2; local
334 L1 l2; local
350 L2 l2; local
366 L2 l2; local
382 L0 l2; local
393 L0 l2; local
404 L1 l2; local
415 L0 l2; local
426 L0 l2; local
437 L0 l2; local
455 L2 l2; local
473 L0 l2; local
491 L0 l2; local
    [all...]
try_lock.pass.cpp 14 // template <class L1, class L2, class... L3>
15 // int try_lock(L1&, L2&, L3&...);
56 class L2
61 L2() : locked_(false) {}
99 L2 l1;
112 L2 l0;
129 L0 l2; local
130 assert(std::try_lock(l0, l1, l2) == -1);
133 assert(l2.locked());
138 L1 l2; local
147 L2 l2; local
163 L2 l2; local
172 L1 l2; local
181 L0 l2; local
190 L0 l2; local
199 L2 l2; local
215 L0 l2; local
231 L0 l2; local
247 L0 l2; local
256 L1 l2; local
265 L1 l2; local
274 L2 l2; local
283 L1 l2; local
292 L1 l2; local
308 L0 l2; local
324 L2 l2; local
340 L2 l2; local
356 L1 l2; local
372 L2 l2; local
388 L2 l2; local
397 L1 l2; local
413 L2 l2; local
422 L0 l2; local
431 L1 l2; local
447 L0 l2; local
463 L0 l2; local
474 L0 l2; local
485 L0 l2; local
496 L1 l2; local
507 L0 l2; local
    [all...]
  /external/testng/src/main/java/org/testng/xml/
ResultXMLParser.java 68 IRemoteTestListener l2 = new IRemoteTestListener() { local
99 ResultXMLParser parser = new ResultXMLParser(l1, l2);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_scan.c 300 int n, l2 = l * l; local
301 for (n = 0; n < l2; n++) {
312 int l2 = l * l; local
319 for (n = 1; n < l2; n++) {
362 neighbors[MAX_NEIGHBORS * l2 + 0] = 0;
363 neighbors[MAX_NEIGHBORS * l2 + 1] = 0;
  /libcore/luni/src/main/java/org/xml/sax/ext/
Locator2Impl.java 52 Locator2 l2 = (Locator2) locator; local
54 version = l2.getXMLVersion ();
55 encoding = l2.getEncoding ();

Completed in 1458 milliseconds

12 3 4 5 6 7 8 91011>>