Home
last modified time | relevance | path

Searched defs:s3 (Results 1 – 25 of 357) sorted by relevance

12345678910>>...15

/external/libcxx/test/std/localization/locale.categories/category.collate/locale.collate.byname/
Dcompare.pass.cpp43 std::string s3("BaaaaaA"); in main() local
50 std::wstring s3(L"BaaaaaA"); in main() local
60 std::string s3("BaaaaaA"); in main() local
67 std::wstring s3(L"BaaaaaA"); in main() local
/external/libaom/libaom/av1/common/arm/
Dmem_neon.h35 uint8x8_t *const s2, uint8x8_t *const s3, in load_u8_8x8()
57 uint8x16_t *const s2, uint8x16_t *const s3) { in load_u8_8x16()
69 uint8x8_t *const s2, uint8x8_t *const s3) { in load_u8_8x4()
81 uint16x4_t *const s2, uint16x4_t *const s3) { in load_u16_4x4()
94 uint16x8_t *const s2, uint16x8_t *const s3) { in load_u16_8x4()
107 int16x4_t *const s2, int16x4_t *const s3, in load_s16_4x8()
129 int16x4_t *const s2, int16x4_t *const s3) { in load_s16_4x4()
148 const uint8x8_t s3, const uint8x8_t s4, in store_u8_8x8()
170 const uint8x8_t s3) { in store_u8_8x4()
182 const uint8x16_t s3) { in store_u8_8x16()
[all …]
Dconvolve_neon.h20 const int16x8_t s3, const int16x8_t s4, const int16x8_t s5, in wiener_convolve8_vert_4x8()
69 const int16x8_t s3, int16_t *filter_x, const int bd, in wiener_convolve8_horiz_8x8()
119 const int16x4_t s3, const int16x4_t s4, const int16x4_t s5, in wiener_convolve8_horiz_4x8()
160 const int16x8_t s3, const int16x8_t s4, const int16x8_t s5, in convolve8_8x8_s16()
183 const int16x4_t s3, const int16x4_t s4, const int16x4_t s5, in convolve8_4x4_s16()
204 const int16x4_t s3, const int16x4_t s4, const int16x4_t s5, in convolve8_4x4_s32()
Dconvolve_neon.c27 const int16x4_t s2, const int16x4_t s3, in convolve8_4x4()
50 const int16x8_t s3, const int16x8_t s4, const int16x8_t s5, in convolve8_horiz_8x8()
76 const int16x4_t s3, const int16x4_t s4, const int16x4_t s5, in convolve8_horiz_4x1()
102 const int16x8_t s3, const int16x8_t s4, const int16x8_t s5, in convolve8_vert_8x4()
123 const int16x4_t s3, const int16x4_t s4, const int16x4_t s5, in convolve8_vert_4x4_s32()
152 const int16x8_t s3, const int16x8_t s4, const int16x8_t s5, in convolve8_vert_8x4_s32()
226 int16x4_t s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, s10, d0, d1, d2, d3; in av1_convolve_x_sr_neon() local
313 int16x8_t s0, s1, s2, s3, s4, s5, s6, s7; in av1_convolve_x_sr_neon() local
625 int16x4_t s0, s1, s2, s3, s4, s5, s6, s7, d0; in av1_convolve_y_sr_neon() local
744 int16x8_t s0, s1, s2, s3, s4, s5, s6, s7; in av1_convolve_y_sr_neon() local
[all …]
/external/clang/test/CodeGen/
Dmms-bitfields.c17 struct s3 { struct
20 } s3; argument
Dms_struct.c18 struct s3 { struct
21 } ATTR s3; variable
Dpacked-arrays.c20 struct __attribute__((packed)) s3 { struct
33 int align3 = __alignof(struct s3); argument
Dx86_32-arguments-win32.c20 struct s3 { struct
24 struct s3 f3_1(void) { while (1) {} } in f3_1() argument
/external/clang/test/CodeGenObjC/
Dproperty-aggregate.m6 struct s3 { char c[3]; }; argument
14 @property struct s3 s3; property
/external/libcxx/test/std/containers/views/span.cons/
Dspan.fail.cpp44 …std::span< int> s3{cvsp}; // expected-error {{no matching constructor for initializa… in checkCV() local
57 …std::span< int, 0> s3{cvsp0}; // expected-error {{no matching constructor for initia… in checkCV() local
70 …std::span< int> s3{cvsp0}; // expected-error {{no matching constructor for initializ… in checkCV() local
83 …std::span< int, 0> s3{cvsp}; // expected-error {{no matching constructor for initial… in checkCV() local
100 …std::span<float, 0> s3{sp}; // expected-error {{no matching constructor for initialization of 'std… in main() local
Darray.pass.cpp41 …std::span< volatile int> s3{ varr}; // a span< volatile int> pointing at volatile int. in checkCV() local
50 …std::span< volatile int,3> s3{ varr}; // a span< volatile int> pointing at volatile int. in checkCV() local
60 std::span< volatile int> s3{ arr}; // a span< volatile int> pointing at const int. in checkCV() local
71 std::span< volatile int,3> s3{ arr}; // a span< volatile int> pointing at const int. in checkCV() local
Dptr_len.pass.cpp36 …std::span< volatile int> s3{ varr, 3}; // a span< volatile int> pointing at volatile int. in checkCV() local
45 …std::span< volatile int,3> s3{ varr, 3}; // a span< volatile int> pointing at volatile… in checkCV() local
55 …std::span< volatile int> s3{ arr, 3}; // a span< volatile int> pointing at const in… in checkCV() local
66 …std::span< volatile int,3> s3{ arr, 3}; // a span< volatile int> pointing at const in… in checkCV() local
Dptr_ptr.pass.cpp36 …std::span< volatile int> s3{ varr, varr + 3}; // a span< volatile int> pointing at vola… in checkCV() local
45 …std::span< volatile int,3> s3{ varr, varr + 3}; // a span< volatile int> pointing at … in checkCV() local
55 …std::span< volatile int> s3{ arr, arr + 3}; // a span< volatile int> pointing at … in checkCV() local
66 …std::span< volatile int,3> s3{ arr, arr + 3}; // a span< volatile int> pointing at cons… in checkCV() local
Dspan.pass.cpp44 std::span<const volatile int> s3{ sp}; // a span<const volatile int> pointing at int. in checkCV() local
53 std::span<const volatile int, 0> s3{ sp0}; // a span<const volatile int> pointing at int. in checkCV() local
62 std::span<const volatile int> s3{ sp0}; // a span<const volatile int> pointing at int. in checkCV() local
71 std::span<const volatile int, 0> s3{ sp}; // a span<const volatile int> pointing at int. in checkCV() local
Ddefault.pass.cpp28 std::span< volatile int> s3; in checkCV() local
37 std::span< volatile int,0> s3; in checkCV() local
/external/clang/test/Sema/
Darm-layout.c36 struct s3 { struct
41 check(s3_size, sizeof(struct s3) == 8); argument
Dpragma-pack-5.c31 struct s3 { struct
37 extern int check[sizeof(struct s3) == 8 ? 1 : -1]; argument
Dinteger-overflow.c165 struct s3 { struct
166 unsigned a2;
168 struct s4 {
170 } a3;
Dpragma-pack-and-options-align.c35 struct s3 { struct
39 extern int a[sizeof(struct s3) == 8 ? 1 : -1]; argument
/external/libcxx/test/std/localization/locales/locale/locale.operators/
Dcompare.pass.cpp25 std::string s3("BaaaaaA"); in main() local
30 std::wstring s3(L"BaaaaaA"); in main() local
/external/libvpx/libvpx/vpx_dsp/arm/
Dvpx_convolve8_neon.h21 uint8x8_t *const s2, uint8x8_t *const s3) { in load_u8_8x4()
33 uint8x8_t *const s2, uint8x8_t *const s3, in load_u8_8x8()
55 uint8x16_t *const s2, uint8x16_t *const s3, in load_u8_16x8()
76 const int16x4_t s2, const int16x4_t s3, in convolve8_4()
98 const int16x8_t s2, const int16x8_t s3, in convolve8_8()
Dhighbd_vpx_convolve8_neon.c22 int16x4_t *const s2, int16x4_t *const s3) { in load_4x4()
34 uint16x8_t *const s2, uint16x8_t *const s3) { in load_8x4()
46 int16x8_t *const s2, int16x8_t *const s3, in load_8x8()
68 const uint16x8_t s2, const uint16x8_t s3, in store_8x8()
90 const int16x4_t s3, const int16x4_t s4, const int16x4_t s5, in highbd_convolve8_4()
109 const int16x8_t s3, const int16x8_t s4, const int16x8_t s5, in highbd_convolve8_8()
157 int16x4_t s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, s10; in vpx_highbd_convolve8_horiz_neon() local
213 int16x8_t s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, s10; in vpx_highbd_convolve8_horiz_neon() local
366 int16x4_t s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, s10; in vpx_highbd_convolve8_avg_horiz_neon() local
429 int16x8_t s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, s10; in vpx_highbd_convolve8_avg_horiz_neon() local
[all …]
/external/testng/src/test/java/test/
DFileStringBufferTest.java13 String s3 = s + s + s; in basic() local
22 String s3 = s + s + s; in basic() local
/external/libcxx/test/std/input.output/string.streams/istringstream/istringstream.assign/
Dmove.pass.cpp46 std::istringstream s3; in main() local
77 std::wistringstream s3; in main() local
/external/boringssl/src/ssl/
Dhandoff.cc53 const SSL3_STATE *const s3 = ssl->s3; in SSL_serialize_handoff() local
77 const SSL3_STATE *const s3 = ssl->s3; in SSL_decline_handoff() local
202 SSL3_STATE *const s3 = ssl->s3; in SSL_apply_handoff() local
240 const SSL3_STATE *const s3 = ssl->s3; in SSL_serialize_handback() local
322 SSL3_STATE *const s3 = ssl->s3; in SSL_apply_handback() local

12345678910>>...15