Home
last modified time | relevance | path

Searched refs:s1 (Results 1 – 25 of 1775) sorted by relevance

12345678910>>...71

/external/libvpx/libvpx/vpx_dsp/arm/
Didct32x32_34_add_neon.c40 int16x8_t in[8], s1[32], s2[32], s3[32]; in vpx_idct32_6_neon() local
62 s1[16] = multiply_shift_and_narrow_s16(in[1], cospi_31_64); in vpx_idct32_6_neon()
64 s1[31] = multiply_shift_and_narrow_s16(in[1], cospi_1_64); in vpx_idct32_6_neon()
66 s1[20] = multiply_shift_and_narrow_s16(in[5], cospi_27_64); in vpx_idct32_6_neon()
67 s1[27] = multiply_shift_and_narrow_s16(in[5], cospi_5_64); in vpx_idct32_6_neon()
69 s1[23] = multiply_shift_and_narrow_s16(in[3], -cospi_29_64); in vpx_idct32_6_neon()
70 s1[24] = multiply_shift_and_narrow_s16(in[3], cospi_3_64); in vpx_idct32_6_neon()
77 s1[4] = multiply_shift_and_narrow_s16(in[4], cospi_28_64); in vpx_idct32_6_neon()
78 s1[7] = multiply_shift_and_narrow_s16(in[4], cospi_4_64); in vpx_idct32_6_neon()
80 s1[17] = multiply_accumulate_shift_and_narrow_s16(s1[16], -cospi_4_64, s1[31], in vpx_idct32_6_neon()
[all …]
Dhighbd_idct32x32_34_add_neon.c39 int32x4x2_t in[8], s1[32], s2[32], s3[32]; in vpx_highbd_idct32_6_neon() local
69 s1[16] = multiply_shift_and_narrow_s32_dual(in[1], cospi_31_64); in vpx_highbd_idct32_6_neon()
71 s1[31] = multiply_shift_and_narrow_s32_dual(in[1], cospi_1_64); in vpx_highbd_idct32_6_neon()
73 s1[20] = multiply_shift_and_narrow_s32_dual(in[5], cospi_27_64); in vpx_highbd_idct32_6_neon()
74 s1[27] = multiply_shift_and_narrow_s32_dual(in[5], cospi_5_64); in vpx_highbd_idct32_6_neon()
76 s1[23] = multiply_shift_and_narrow_s32_dual(in[3], -cospi_29_64); in vpx_highbd_idct32_6_neon()
77 s1[24] = multiply_shift_and_narrow_s32_dual(in[3], cospi_3_64); in vpx_highbd_idct32_6_neon()
84 s1[4] = multiply_shift_and_narrow_s32_dual(in[4], cospi_28_64); in vpx_highbd_idct32_6_neon()
85 s1[7] = multiply_shift_and_narrow_s32_dual(in[4], cospi_4_64); in vpx_highbd_idct32_6_neon()
87 s1[17] = multiply_accumulate_shift_and_narrow_s32_dual(s1[16], -cospi_4_64, in vpx_highbd_idct32_6_neon()
[all …]
Didct32x32_135_add_neon.c93 int16x8_t in[12], s1[32], s2[32], s3[32], s4[32], s5[32], s6[32], s7[32]; in vpx_idct32_12_neon() local
106 s1[16] = multiply_shift_and_narrow_s16(in[1], cospi_31_64); in vpx_idct32_12_neon()
107 s1[31] = multiply_shift_and_narrow_s16(in[1], cospi_1_64); in vpx_idct32_12_neon()
109 s1[18] = multiply_shift_and_narrow_s16(in[9], cospi_23_64); in vpx_idct32_12_neon()
110 s1[29] = multiply_shift_and_narrow_s16(in[9], cospi_9_64); in vpx_idct32_12_neon()
112 s1[19] = multiply_shift_and_narrow_s16(in[7], -cospi_25_64); in vpx_idct32_12_neon()
113 s1[28] = multiply_shift_and_narrow_s16(in[7], cospi_7_64); in vpx_idct32_12_neon()
115 s1[20] = multiply_shift_and_narrow_s16(in[5], cospi_27_64); in vpx_idct32_12_neon()
116 s1[27] = multiply_shift_and_narrow_s16(in[5], cospi_5_64); in vpx_idct32_12_neon()
118 s1[21] = multiply_shift_and_narrow_s16(in[11], -cospi_21_64); in vpx_idct32_12_neon()
[all …]
/external/clang/test/Analysis/
Dpr22954.c18 char s1[4]; member
27 memcpy(a0.s1, input, 4); in f0()
28 clang_analyzer_eval(a0.s1[0] == 'a'); // expected-warning{{UNKNOWN}} in f0()
29 clang_analyzer_eval(a0.s1[1] == 'b'); // expected-warning{{UNKNOWN}} in f0()
30 clang_analyzer_eval(a0.s1[2] == 'c'); // expected-warning{{UNKNOWN}} in f0()
31 clang_analyzer_eval(a0.s1[3] == 'd'); // expected-warning{{UNKNOWN}} in f0()
41 memcpy(a1.s1, input, 4); in f1()
42 clang_analyzer_eval(a1.s1[0] == 'a'); // expected-warning{{UNKNOWN}} in f1()
43 clang_analyzer_eval(a1.s1[1] == 'b'); // expected-warning{{UNKNOWN}} in f1()
44 clang_analyzer_eval(a1.s1[2] == 'c'); // expected-warning{{UNKNOWN}} in f1()
[all …]
/external/libcxx/test/std/utilities/time/time.duration/time.duration.comparisons/
Dop_less.pass.cpp40 std::chrono::seconds s1(3); in main() local
42 assert(!(s1 < s2)); in main()
43 assert(!(s1 > s2)); in main()
44 assert( (s1 <= s2)); in main()
45 assert( (s1 >= s2)); in main()
48 std::chrono::seconds s1(3); in main() local
50 assert( (s1 < s2)); in main()
51 assert(!(s1 > s2)); in main()
52 assert( (s1 <= s2)); in main()
53 assert(!(s1 >= s2)); in main()
[all …]
Dop_equal.pass.cpp30 std::chrono::seconds s1(3); in main() local
32 assert(s1 == s2); in main()
33 assert(!(s1 != s2)); in main()
36 std::chrono::seconds s1(3); in main() local
38 assert(!(s1 == s2)); in main()
39 assert(s1 != s2); in main()
42 std::chrono::milliseconds s1(3); in main() local
44 assert(s1 == s2); in main()
45 assert(!(s1 != s2)); in main()
48 std::chrono::milliseconds s1(3); in main() local
[all …]
/external/llvm/test/MC/AMDGPU/
Dsop1.s6 s_mov_b32 s1, s2
10 s_mov_b32 s1, 1
14 s_mov_b32 s1, 100
19 s_mov_b32 s1, 0x80000000
48 s_cmov_b32 s1, 200
52 s_cmov_b32 s1, 1.0
56 s_cmov_b32 s1, s2
67 s_not_b32 s1, s2
75 s_wqm_b32 s1, s2
83 s_brev_b32 s1, s2
[all …]
Dmubuf.s17 buffer_load_dword v1, off, s[4:7], s1
21 buffer_load_dword v1, off, ttmp[4:7], s1
25 buffer_load_dword v1, off, s[4:7], s1 offset:4
29 buffer_load_dword v1, off, s[4:7], s1 offset:4 glc
33 buffer_load_dword v1, off, s[4:7], s1 offset:4 slc
37 buffer_load_dword v1, off, s[4:7], s1 offset:4 tfe
41 buffer_load_dword v1, off, s[4:7], s1 glc tfe
45 buffer_load_dword v1, off, s[4:7], s1 offset:4 glc slc tfe
49 buffer_load_dword v1, off, ttmp[4:7], s1 offset:4 glc slc tfe
57 buffer_load_dword v1, v2, s[4:7], s1 offen
[all …]
Dsopc.s9 s_cmp_eq_i32 s1, s2
12 s_cmp_lg_i32 s1, s2
15 s_cmp_gt_i32 s1, s2
18 s_cmp_ge_i32 s1, s2
21 s_cmp_lt_i32 s1, s2
24 s_cmp_le_i32 s1, s2
27 s_cmp_eq_u32 s1, s2
30 s_cmp_lg_u32 s1, s2
33 s_cmp_gt_u32 s1, s2
36 s_cmp_ge_u32 s1, s2
[all …]
/external/bison/lib/
Dstreq.h35 streq9 (const char *s1, const char *s2) in streq9() argument
37 return strcmp (s1 + 9, s2 + 9) == 0; in streq9()
41 streq8 (const char *s1, const char *s2, char s28) in streq8() argument
43 if (s1[8] == s28) in streq8()
48 return streq9 (s1, s2); in streq8()
55 streq7 (const char *s1, const char *s2, char s27, char s28) in streq7() argument
57 if (s1[7] == s27) in streq7()
62 return streq8 (s1, s2, s28); in streq7()
69 streq6 (const char *s1, const char *s2, char s26, char s27, char s28) in streq6() argument
71 if (s1[6] == s26) in streq6()
[all …]
Dc-strcaseeq.h45 strcaseeq9 (const char *s1, const char *s2) in strcaseeq9() argument
47 return c_strcasecmp (s1 + 9, s2 + 9) == 0; in strcaseeq9()
51 strcaseeq8 (const char *s1, const char *s2, char s28) in strcaseeq8() argument
53 if (CASEEQ (s1[8], s28)) in strcaseeq8()
58 return strcaseeq9 (s1, s2); in strcaseeq8()
65 strcaseeq7 (const char *s1, const char *s2, char s27, char s28) in strcaseeq7() argument
67 if (CASEEQ (s1[7], s27)) in strcaseeq7()
72 return strcaseeq8 (s1, s2, s28); in strcaseeq7()
79 strcaseeq6 (const char *s1, const char *s2, char s26, char s27, char s28) in strcaseeq6() argument
81 if (CASEEQ (s1[6], s26)) in strcaseeq6()
[all …]
/external/boringssl/src/crypto/fipsmodule/aes/asm/
Daes-armv4.pl58 $s1="r1";
219 ldrb $s1,[$rounds,#7]
225 orr $s1,$s1,$t1,lsl#8
227 orr $s1,$s1,$t2,lsl#16
229 orr $s1,$s1,$t3,lsl#24
244 ldr $s1,[$rounds,#4]
249 rev $s1,$s1
260 rev $s1,$s1
265 str $s1,[$rounds,#4]
274 mov $t1,$s1,lsr#24
[all …]
/external/valgrind/none/tests/amd64/
Dfb_test_amd64_shift.h11 #define EXECSHIFT(size, res, s1, s2, flags) \ argument
18 : "r" (s1), "0" (res), "1" (flags));
20 #define EXECSHIFT(size, res, s1, s2, flags) \ argument
27 : "c" (s1), "0" (res), "1" (flags));
30 void exec_opq(int64 s2, int64 s0, int64 s1, int64 iflags) in exec_opq() argument
35 EXECSHIFT("q", res, s1, s2, flags); in exec_opq()
37 if (s1 != 1) in exec_opq()
40 stringify(OP) "q", s0, s1, res, iflags, flags & CC_MASK); in exec_opq()
43 void exec_opl(int64 s2, int64 s0, int64 s1, int64 iflags) in exec_opl() argument
48 EXECSHIFT("", res, s1, s2, flags); in exec_opl()
[all …]
Dfb_test_amd64.h8 #define EXECOP2(size, mod, res, s1, flags) \ argument
15 : "q" (s1), "0" (res), "1" (flags));
27 static inline void exec_opq(int64 s0, int64 s1, int64 iflags) in exec_opq() argument
36 static inline void exec_opl(int64 s0, int64 s1, int64 iflags) in exec_opl() argument
45 static inline void exec_opw(int64 s0, int64 s1, int64 iflags) in exec_opw() argument
54 static inline void exec_opb(int64 s0, int64 s1, int64 iflags) in exec_opb() argument
64 static inline void exec_opq(int64 s0, int64 s1, int64 iflags) in exec_opq() argument
69 EXECOP2("q", "q", res, s1, flags); in exec_opq()
71 stringify(OP) "q", s0, s1, res, iflags, flags & CC_MASK); in exec_opq()
74 static inline void exec_opl(int64 s0, int64 s1, int64 iflags) in exec_opl() argument
[all …]
/external/libcxx/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/
Dmove.pass.cpp21 wchar_t s1[] = {1, 2, 3}; in main() local
22 assert(std::char_traits<wchar_t>::move(s1, s1+1, 2) == s1); in main()
23 assert(s1[0] == wchar_t(2)); in main()
24 assert(s1[1] == wchar_t(3)); in main()
25 assert(s1[2] == wchar_t(3)); in main()
26 s1[2] = wchar_t(0); in main()
27 assert(std::char_traits<wchar_t>::move(s1+1, s1, 2) == s1+1); in main()
28 assert(s1[0] == wchar_t(2)); in main()
29 assert(s1[1] == wchar_t(2)); in main()
30 assert(s1[2] == wchar_t(3)); in main()
[all …]
/external/libcxx/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char/
Dmove.pass.cpp21 char s1[] = {1, 2, 3}; in main() local
22 assert(std::char_traits<char>::move(s1, s1+1, 2) == s1); in main()
23 assert(s1[0] == char(2)); in main()
24 assert(s1[1] == char(3)); in main()
25 assert(s1[2] == char(3)); in main()
26 s1[2] = char(0); in main()
27 assert(std::char_traits<char>::move(s1+1, s1, 2) == s1+1); in main()
28 assert(s1[0] == char(2)); in main()
29 assert(s1[1] == char(2)); in main()
30 assert(s1[2] == char(3)); in main()
[all …]
/external/libcxx/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char16_t/
Dmove.pass.cpp22 char16_t s1[] = {1, 2, 3}; in main() local
23 assert(std::char_traits<char16_t>::move(s1, s1+1, 2) == s1); in main()
24 assert(s1[0] == char16_t(2)); in main()
25 assert(s1[1] == char16_t(3)); in main()
26 assert(s1[2] == char16_t(3)); in main()
27 s1[2] = char16_t(0); in main()
28 assert(std::char_traits<char16_t>::move(s1+1, s1, 2) == s1+1); in main()
29 assert(s1[0] == char16_t(2)); in main()
30 assert(s1[1] == char16_t(2)); in main()
31 assert(s1[2] == char16_t(3)); in main()
[all …]
/external/libcxx/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char32_t/
Dmove.pass.cpp22 char32_t s1[] = {1, 2, 3}; in main() local
23 assert(std::char_traits<char32_t>::move(s1, s1+1, 2) == s1); in main()
24 assert(s1[0] == char32_t(2)); in main()
25 assert(s1[1] == char32_t(3)); in main()
26 assert(s1[2] == char32_t(3)); in main()
27 s1[2] = char32_t(0); in main()
28 assert(std::char_traits<char32_t>::move(s1+1, s1, 2) == s1+1); in main()
29 assert(s1[0] == char32_t(2)); in main()
30 assert(s1[1] == char32_t(2)); in main()
31 assert(s1[2] == char32_t(3)); in main()
[all …]
/external/llvm/test/MC/ARM/
Dfullfp16.s4 vadd.f16 s0, s1, s0
5 @ ARM: vadd.f16 s0, s1, s0 @ encoding: [0x80,0x09,0x30,0xee]
6 @ THUMB: vadd.f16 s0, s1, s0 @ encoding: [0x30,0xee,0x80,0x09]
8 vsub.f16 s0, s1, s0
9 @ ARM: vsub.f16 s0, s1, s0 @ encoding: [0xc0,0x09,0x30,0xee]
10 @ THUMB: vsub.f16 s0, s1, s0 @ encoding: [0x30,0xee,0xc0,0x09]
12 vdiv.f16 s0, s1, s0
13 @ ARM: vdiv.f16 s0, s1, s0 @ encoding: [0x80,0x09,0x80,0xee]
14 @ THUMB: vdiv.f16 s0, s1, s0 @ encoding: [0x80,0xee,0x80,0x09]
16 vmul.f16 s0, s1, s0
[all …]
/external/eigen/test/
Dproduct_syrk.cpp33 Scalar s1 = internal::random<Scalar>(); in syrk() local
38 VERIFY_IS_APPROX((m2.template selfadjointView<Lower>().rankUpdate(rhs2,s1)._expression()), in syrk()
39 … ((s1 * rhs2 * rhs2.adjoint()).eval().template triangularView<Lower>().toDenseMatrix())); in syrk()
41 …VERIFY_IS_APPROX(((m2.template triangularView<Lower>() += s1 * rhs2 * rhs22.adjoint()).nestedExpr… in syrk()
42 … ((s1 * rhs2 * rhs22.adjoint()).eval().template triangularView<Lower>().toDenseMatrix())); in syrk()
46 VERIFY_IS_APPROX(m2.template selfadjointView<Upper>().rankUpdate(rhs2,s1)._expression(), in syrk()
47 … (s1 * rhs2 * rhs2.adjoint()).eval().template triangularView<Upper>().toDenseMatrix()); in syrk()
49 …VERIFY_IS_APPROX((m2.template triangularView<Upper>() += s1 * rhs22 * rhs2.adjoint()).nestedExpres… in syrk()
50 … (s1 * rhs22 * rhs2.adjoint()).eval().template triangularView<Upper>().toDenseMatrix()); in syrk()
54 VERIFY_IS_APPROX(m2.template selfadjointView<Lower>().rankUpdate(rhs1.adjoint(),s1)._expression(), in syrk()
[all …]
Dproduct_symm.cpp33 Scalar s1 = internal::random<Scalar>(), in symm() local
39 VERIFY_IS_APPROX(rhs12 = (s1*m2).template selfadjointView<Lower>() * (s2*rhs1), in symm()
40 rhs13 = (s1*m1) * (s2*rhs1)); in symm()
42 VERIFY_IS_APPROX(rhs12 = (s1*m2).transpose().template selfadjointView<Upper>() * (s2*rhs1), in symm()
43 rhs13 = (s1*m1.transpose()) * (s2*rhs1)); in symm()
45 VERIFY_IS_APPROX(rhs12 = (s1*m2).template selfadjointView<Lower>().transpose() * (s2*rhs1), in symm()
46 rhs13 = (s1*m1.transpose()) * (s2*rhs1)); in symm()
48 VERIFY_IS_APPROX(rhs12 = (s1*m2).conjugate().template selfadjointView<Lower>() * (s2*rhs1), in symm()
49 rhs13 = (s1*m1).conjugate() * (s2*rhs1)); in symm()
51 VERIFY_IS_APPROX(rhs12 = (s1*m2).template selfadjointView<Lower>().conjugate() * (s2*rhs1), in symm()
[all …]
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/
Dstr.c23 IN CONST CHAR16 *s1, in StrCmp() argument
28 return RtStrCmp(s1, s2); in StrCmp()
33 IN CONST CHAR16 *s1, in StrnCmp() argument
39 while (*s1 && len) { in StrnCmp()
40 if (*s1 != *s2) { in StrnCmp()
44 s1 += 1; in StrnCmp()
49 return len ? *s1 - *s2 : 0; in StrnCmp()
56 IN CHAR16 *s1, in LibStubStriCmp() argument
60 return StrCmp (s1, s2); in LibStubStriCmp()
73 IN CONST CHAR16 *s1, in StriCmp() argument
[all …]
/external/skia/tests/
DStrokeTest.cpp90 SkStrokeRec s1(SkStrokeRec::kFill_InitStyle); in test_strokerec_equality() local
92 REPORTER_ASSERT(reporter, s1.hasEqualEffect(s2)); in test_strokerec_equality()
96 REPORTER_ASSERT(reporter, !s1.hasEqualEffect(s2)); in test_strokerec_equality()
98 s1.setHairlineStyle(); in test_strokerec_equality()
99 REPORTER_ASSERT(reporter, s1.hasEqualEffect(s2)); in test_strokerec_equality()
102 s1.setResScale(2.1f); in test_strokerec_equality()
104 REPORTER_ASSERT(reporter, s1.hasEqualEffect(s2)); in test_strokerec_equality()
105 s1.setFillStyle(); in test_strokerec_equality()
107 REPORTER_ASSERT(reporter, s1.hasEqualEffect(s2)); in test_strokerec_equality()
108 s1.setStrokeStyle(1.0f, false); in test_strokerec_equality()
[all …]
/external/clang/test/CodeGen/
Darm64-arguments.c11 struct s1 { char f0; }; argument
12 struct s1 f1(void) {} in f1()
198 float32x4_t f35(int i, s35_with_align s1, s35_with_align s2) { in f35() argument
206 float32x4_t v = vaddq_f32(*(float32x4_t *)&s1, in f35()
218 int32x4_t f36(int i, s36_with_align s1, s36_with_align s2) { in f36() argument
228 int32x4_t v = vaddq_s32(*(int32x4_t *)&s1, in f36()
239 int32x4_t f37(int i, s37_with_align s1, s37_with_align s2) { in f37() argument
245 int32x4_t v = vaddq_s32(*(int32x4_t *)&s1, in f37()
274 int f38(int i, s38_no_align s1, s38_no_align s2) { in f38() argument
284 return s1.i + s2.i + i + s1.s + s2.s; in f38()
[all …]
/external/openssh/
Drijndael.c765 u32 s0, s1, s2, s3, t0, t1, t2, t3; in rijndaelEncrypt() local
775 s1 = GETU32(pt + 4) ^ rk[1]; in rijndaelEncrypt()
780 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[ 4]; in rijndaelEncrypt()
781 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[ 5]; in rijndaelEncrypt()
782 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[ 6]; in rijndaelEncrypt()
783 t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[ 7]; in rijndaelEncrypt()
786 s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[ 9]; in rijndaelEncrypt()
790 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[12]; in rijndaelEncrypt()
791 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[13]; in rijndaelEncrypt()
792 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[14]; in rijndaelEncrypt()
[all …]

12345678910>>...71