Searched refs:w2 (Results 1 - 25 of 199) sorted by relevance

12345678

/external/libavc/common/armv8/
H A Dih264_mem_fns_neon_av8.s77 // w2 => num_bytes
92 subs w2, w2, #8
106 // w2 => num_bytes
113 subs w2, w2, #8
120 subs w2, w2, #8
122 cmn w2, #8
126 add w2, w
[all...]
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.obs/
H A Dnot_less_than.fail.cpp24 const std::weak_ptr<int> w2(p2);
26 bool b = w1 < w2;
H A Downer_before_weak_ptr.pass.cpp25 const std::weak_ptr<int> w2(p2);
27 assert(!w1.owner_before(w2));
28 assert(!w2.owner_before(w1));
30 assert(w3.owner_before(w1) == w3.owner_before(w2));
H A Downer_before_shared_ptr.pass.cpp25 const std::weak_ptr<int> w2(p2);
28 assert(!w2.owner_before(p1));
/external/llvm/test/MC/AArch64/
H A Dalias-logicalimm.s28 // CHECK: orr w2, w1, #0xfffffffc
29 // CHECK: orr w2, w1, #0xfffffffc
30 orr w2, w1, #~3
31 orn w2, w1, #3
38 // CHECK: eor w2, w1, #0xfffffffc
39 // CHECK: eor w2, w1, #0xfffffffc
40 eor w2, w1, #~3
41 eon w2, w1, #3
H A Dalias-addsubimm.s3 // CHECK: sub w0, w2, #2, lsl #12
4 // CHECK: sub w0, w2, #2, lsl #12
5 sub w0, w2, #2, lsl 12
6 add w0, w2, #-2, lsl 12
22 // CHECK: add w0, w2, #2, lsl #12
23 // CHECK: add w0, w2, #2, lsl #12
24 add w0, w2, #2, lsl 12
25 sub w0, w2, #-2, lsl 12
41 // CHECK: subs w0, w2, #2, lsl #12
42 // CHECK: subs w0, w2, #
[all...]
H A Darm64-bitfield-encoding.s8 bfm w1, w2, #1, #15
10 sbfm w1, w2, #1, #15
12 ubfm w1, w2, #1, #15
19 ; CHECK: bfxil w1, w2, #1, #15 ; encoding: [0x41,0x3c,0x01,0x33]
21 ; CHECK: sbfx w1, w2, #1, #15 ; encoding: [0x41,0x3c,0x01,0x13]
23 ; CHECK: ubfx w1, w2, #1, #15 ; encoding: [0x41,0x3c,0x01,0x53]
34 extr w1, w2, w3, #15
37 ; CHECK: extr w1, w2, w3, #15 ; encoding: [0x41,0x3c,0x83,0x13]
H A Darm64-logical-encoding.s10 and w1, w2, #15
15 ands w1, w2, #15
20 ; CHECK: and w1, w2, #0xf ; encoding: [0x41,0x0c,0x00,0x12]
25 ; CHECK: ands w1, w2, #0xf ; encoding: [0x41,0x0c,0x00,0x72]
28 eor w1, w2, #0x4000
31 ; CHECK: eor w1, w2, #0x4000 ; encoding: [0x41,0x00,0x12,0x52]
34 orr w1, w2, #0x4000
37 ; CHECK: orr w1, w2, #0x4000 ; encoding: [0x41,0x00,0x12,0x32]
50 and w1, w2, w3
52 and w1, w2, w
[all...]
H A Darmv8.1a-atomic.s16 casb w0, w1, [w2]
19 //CHECK-ERROR: casb w0, w1, [w2]
47 cas w0, w1, [w2]
51 //CHECK-ERROR: cas w0, w1, [w2]
68 casa x0, x1, [w2]
72 //CHECK-ERROR: casa x0, x1, [w2]
87 ldsminb w2, w3, [x5]
96 //CHECK: ldsminb w2, w3, [x5] // encoding: [0xa3,0x50,0x22,0x38]
119 ldsmax x0, x1, [w2]
120 ldeorl w0, w1, [w2]
[all...]
H A Darm64-arithmetic-encoding.s8 adc w1, w2, w3
13 ; CHECK: adc w1, w2, w3 ; encoding: [0x41,0x00,0x03,0x1a]
18 sbc w1, w2, w3
20 sbcs w1, w2, w3
23 ; CHECK: sbc w1, w2, w3 ; encoding: [0x41,0x00,0x03,0x5a]
25 ; CHECK: sbcs w1, w2, w3 ; encoding: [0x41,0x00,0x03,0x7a]
170 add w1, w2, w3, uxtb
171 add w1, w2, w3, uxth
172 add w1, w2, w3, uxtw
173 add w1, w2, w
[all...]
H A Darm64-basic-a64-instructions.s5 crc32w w0, w1, w2
13 // CHECK: crc32w w0, w1, w2 // encoding: [0x20,0x48,0xc2,0x1a]
H A Dinline-asm-modifiers.s83 mov w2, w0
85 add w2, w2, w2
87 mov w2, w0
89 add w2, w2, w2
/external/valgrind/none/tests/amd64/
H A Dbmi.c858 ULong w1, w2; local
861 w2 = 0x57657438291CDEF0ULL;
865 do_andn64(&flags, &res, w1, w2);
866 printf("andn64 %016llx %016llx -> %016llx %04x\n", w1, w2, res, flags);
869 w2 = ((w2 >> 2) | (w2 >> 1)) + (w2 / 17ULL);
873 w2 = 0x57657438291CDEF0ULL;
877 do_andn32(&flags, &res, w1, w2);
[all...]
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/
H A Downer_before_weak_ptr.pass.cpp25 const std::weak_ptr<int> w2(p2);
27 assert(!p1.owner_before(w2));
30 assert(p3.owner_before(w1) == p3.owner_before(w2));
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.mod/
H A Dswap.pass.cpp39 std::weak_ptr<A> w2(p2);
40 w1.swap(w2);
43 assert(w2.use_count() == 1);
44 assert(w2.lock().get() == ptr1);
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.spec/
H A Dswap.pass.cpp39 std::weak_ptr<A> w2(p2);
40 swap(w1, w2);
43 assert(w2.use_count() == 1);
44 assert(w2.lock().get() == ptr1);
/external/llvm/test/MC/Mips/msa/
H A Dinvalid.s8 addvi.b $w1, $w2, -1 # CHECK: :[[@LINE]]:23: error: expected 5-bit unsigned immediate
9 addvi.b $w1, $w2, 32 # CHECK: :[[@LINE]]:23: error: expected 5-bit unsigned immediate
10 addvi.h $w1, $w2, -1 # CHECK: :[[@LINE]]:23: error: expected 5-bit unsigned immediate
11 addvi.h $w1, $w2, 32 # CHECK: :[[@LINE]]:23: error: expected 5-bit unsigned immediate
12 addvi.w $w1, $w2, -1 # CHECK: :[[@LINE]]:23: error: expected 5-bit unsigned immediate
13 addvi.w $w1, $w2, 32 # CHECK: :[[@LINE]]:23: error: expected 5-bit unsigned immediate
14 addvi.d $w1, $w2, -1 # CHECK: :[[@LINE]]:23: error: expected 5-bit unsigned immediate
15 addvi.d $w1, $w2, 32 # CHECK: :[[@LINE]]:23: error: expected 5-bit unsigned immediate
16 andi.b $w1, $w2, -1 # CHECK: :[[@LINE]]:22: error: expected 8-bit unsigned immediate
17 andi.b $w1, $w2, 25
[all...]
H A Dtest_elm_insve.s4 # CHECK: insve.h $w24[2], $w2[0] # encoding: [0x79,0x62,0x16,0x19]
9 insve.h $w24[2], $w2[0]
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.ownerless/
H A Downer_less.pass.cpp62 const std::weak_ptr<int> w2(p2);
78 assert(!cs(p1, w2));
81 assert(cs(p3, w1) == cs(p3, w2));
91 assert(!cs(w1, w2));
92 assert(!cs(w2, w1));
94 assert(cs(w3, w1) == cs(w3, w2));
97 assert(!cs(w2, p1));
/external/vixl/examples/aarch64/
H A Dadd2-vectors.cc42 // size (integer) -> w2
51 __ Cmp(w2, 16);
53 __ Sub(w2, w2, 16);
67 __ Cbz(w2, &end);
68 __ Sub(w2, w2, 1);
/external/valgrind/coregrind/m_dispatch/
H A Ddispatch-arm64-linux.S182 ldr w2, [x1, #0]
183 add w2, w2, #1
184 str w2, [x1, #0]
209 ldr w2, [x1, #0]
210 add w2, w2, #1
211 str w2, [x1, #0]
/external/libunwind/src/hppa/
H A DGis_signal_frame.c33 unw_word_t w0, w1, w2, w3, ip; local
60 || (ret = (*a->access_mem) (as, ip + 8, &w2, 0, arg)) < 0
67 && w1 == 0x3414015a && w2 == 0xe4008200 && w3 == 0x08000240);
/external/lzma/CPP/Common/
H A DMyGuidDef.h49 #define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
50 MY_EXTERN_C const GUID name = { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }
52 #define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
/external/tcpdump/
H A Dprint-tipc.c76 #define TIPC_LINK_ACK(w2) (((w2) >> 16) & 0xFFFF)
77 #define TIPC_LINK_SEQ(w2) (((w2) >> 0) & 0xFFFF)
112 uint32_t w2; member in struct:payload_tipc_pkthdr
126 uint32_t w2; member in struct:internal_tipc_pkthdr
137 #define TIPC_BC_GAP_AFTER(w2) (((w2) >> 16) & 0xFFFF)
138 #define TIPC_BC_GAP_TO(w2) (((w2) >>
161 uint32_t w0, w1, w2; local
226 uint32_t w0, w1, w2, w4, w5, w9; local
[all...]
/external/dng_sdk/source/
H A Ddng_color_spec.cpp38 dng_vector_3 w2 = Mb * XYtoXYZ (white2); local
46 w2 [0] = Max_real64 (w2 [0], 0.0);
47 w2 [1] = Max_real64 (w2 [1], 0.0);
48 w2 [2] = Max_real64 (w2 [2], 0.0);
54 A [0] [0] = Pin_real64 (0.1, w1 [0] > 0.0 ? w2 [0] / w1 [0] : 10.0, 10.0);
55 A [1] [1] = Pin_real64 (0.1, w1 [1] > 0.0 ? w2 [1] / w1 [1] : 10.0, 10.0);
56 A [2] [2] = Pin_real64 (0.1, w1 [2] > 0.0 ? w2 [
[all...]

Completed in 1799 milliseconds

12345678