Home
last modified time | relevance | path

Searched defs:s2 (Results 1 – 25 of 1161) sorted by relevance

12345678910>>...47

/external/libcxx/test/std/utilities/time/time.duration/time.duration.comparisons/
Dop_equal.pass.cpp33 std::chrono::seconds s2(3); in main() local
39 std::chrono::seconds s2(4); in main() local
45 std::chrono::microseconds s2(3000); in main() local
51 std::chrono::microseconds s2(4000); in main() local
57 std::chrono::duration<int, std::ratio<3, 5> > s2(10); in main() local
63 std::chrono::duration<int, std::ratio<3, 5> > s2(9); in main() local
69 std::chrono::duration<double, std::ratio<3, 5> > s2(10); in main() local
76 constexpr std::chrono::seconds s2(3); in main() local
82 constexpr std::chrono::seconds s2(4); in main() local
88 constexpr std::chrono::microseconds s2(3000); in main() local
[all …]
Dop_less.pass.cpp43 std::chrono::seconds s2(3); in main() local
51 std::chrono::seconds s2(4); in main() local
59 std::chrono::microseconds s2(3000); in main() local
67 std::chrono::microseconds s2(4000); in main() local
75 std::chrono::duration<int, std::ratio<3, 5> > s2(10); in main() local
83 std::chrono::duration<int, std::ratio<3, 5> > s2(9); in main() local
91 std::chrono::duration<double, std::ratio<3, 5> > s2(10); in main() local
100 constexpr std::chrono::seconds s2(3); in main() local
108 constexpr std::chrono::seconds s2(4); in main() local
116 constexpr std::chrono::microseconds s2(3000); in main() local
[all …]
/external/libcxx/test/std/utilities/time/time.duration/time.duration.nonmember/
Dop_-.pass.cpp28 std::chrono::seconds s2(5); in main() local
34 std::chrono::microseconds s2(5); in main() local
40 std::chrono::duration<int, std::ratio<3, 5> > s2(5); in main() local
46 std::chrono::duration<double, std::ratio<3, 5> > s2(5); in main() local
53 constexpr std::chrono::seconds s2(5); in main() local
59 constexpr std::chrono::microseconds s2(5); in main() local
65 constexpr std::chrono::duration<int, std::ratio<3, 5> > s2(5); in main() local
71 constexpr std::chrono::duration<double, std::ratio<3, 5> > s2(5); in main() local
Dop_+.pass.cpp27 std::chrono::seconds s2(5); in main() local
33 std::chrono::microseconds s2(5); in main() local
39 std::chrono::duration<int, std::ratio<3, 5> > s2(5); in main() local
45 std::chrono::duration<double, std::ratio<3, 5> > s2(5); in main() local
52 constexpr std::chrono::seconds s2(5); in main() local
58 constexpr std::chrono::microseconds s2(5); in main() local
64 constexpr std::chrono::duration<int, std::ratio<3, 5> > s2(5); in main() local
70 constexpr std::chrono::duration<double, std::ratio<3, 5> > s2(5); in main() local
Dop_divide_duration.pass.cpp39 std::chrono::duration<int, std::ratio<3, 5> > s2(5); in main() local
44 std::chrono::duration<double, std::ratio<3, 5> > s2(5); in main() local
60 constexpr std::chrono::duration<int, std::ratio<3, 5> > s2(5); in main() local
65 constexpr std::chrono::duration<double, std::ratio<3, 5> > s2(5); in main() local
/external/libcxx/test/std/containers/views/span.cons/
Dspan.pass.cpp43 std::span< volatile int> s2{ sp}; // a span< volatile int> pointing at int. in checkCV() local
52 std::span< volatile int, 0> s2{ sp0}; // a span< volatile int> pointing at int. in checkCV() local
61 std::span< volatile int> s2{ sp0}; // a span< volatile int> pointing at int. in checkCV() local
70 std::span< volatile int, 0> s2{ sp}; // a span< volatile int> pointing at int. in checkCV() local
83 std::span<T> s2(s1); // static -> dynamic in testConstexprSpan() local
100 std::span<T> s2(s1); // static -> dynamic in testRuntimeSpan() local
118 std::span<Dest> s2(s0s); // static -> dynamic in testConversionSpan() local
Dptr_len.pass.cpp35 std::span<const int> s2{ carr, 3}; // a span<const int> pointing at const int. in checkCV() local
44 …std::span<const int,3> s2{ carr, 3}; // a span<const int> pointing at const in… in checkCV() local
54 std::span< volatile int> s2{ arr, 3}; // a span< volatile int> pointing at int. in checkCV() local
65 std::span< volatile int,3> s2{ arr, 3}; // a span< volatile int> pointing at int. in checkCV() local
80 std::span<const T,2> s2{val, 2}; in testConstexprSpan() local
92 std::span<T,2> s2{val, 2}; in testRuntimeSpan() local
Dptr_ptr.pass.cpp35 …std::span<const int> s2{ carr, carr + 3}; // a span<const int> pointing at cons… in checkCV() local
44 …std::span<const int,3> s2{ carr, carr + 3}; // a span<const int> pointing at … in checkCV() local
54 …std::span< volatile int> s2{ arr, arr + 3}; // a span< volatile int> pointing at … in checkCV() local
65 … std::span< volatile int,3> s2{ arr, arr + 3}; // a span< volatile int> pointing at int. in checkCV() local
80 std::span<const T,2> s2{val, val+2}; in testConstexprSpan() local
92 std::span<T,2> s2{val, val+2}; in testRuntimeSpan() local
Darray.pass.cpp40 std::span<const int> s2{ carr}; // a span<const int> pointing at const int. in checkCV() local
49 std::span<const int,3> s2{ carr}; // a span<const int> pointing at const int. in checkCV() local
59 std::span< volatile int> s2{ arr}; // a span< volatile int> pointing at int. in checkCV() local
70 std::span< volatile int,3> s2{ arr}; // a span< volatile int> pointing at int. in checkCV() local
88 std::span<const T, 2> s2{val}; in testConstexprSpan() local
102 std::span<T, 2> s2{val}; in testRuntimeSpan() local
Ddefault.pass.cpp27 std::span<const int> s2; in checkCV() local
36 std::span<const int,0> s2; in checkCV() local
48 std::span<const T, 0> s2; in testConstexprSpan() local
60 std::span<const T, 0> s2; in testRuntimeSpan() local
Dstdarray.pass.cpp57 std::span< volatile int> s2{ arr}; // a span< volatile int> pointing at int. in checkCV() local
65 std::span< volatile int,3> s2{ arr}; // a span< volatile int> pointing at int. in checkCV() local
79 std::span<const T, 2> s2{val}; in testConstexprSpan() local
93 std::span<T, 2> s2{val}; in testRuntimeSpan() local
Dspan.fail.cpp43 …std::span< int> s2{ vsp}; // expected-error {{no matching constructor for initializa… in checkCV() local
56 …std::span< int, 0> s2{ vsp0}; // expected-error {{no matching constructor for initia… in checkCV() local
69 …std::span< int> s2{ vsp0}; // expected-error {{no matching constructor for initializ… in checkCV() local
82 …std::span< int, 0> s2{ vsp}; // expected-error {{no matching constructor for initial… in checkCV() local
99 …std::span<float> s2{sp0}; // expected-error {{no matching constructor for initialization of 'std… in main() local
/external/webrtc/webrtc/base/
Dstringutils.h78 inline int strcmp(const wchar_t* s1, const wchar_t* s2) { in strcmp()
81 inline int stricmp(const wchar_t* s1, const wchar_t* s2) { in stricmp()
84 inline int strncmp(const wchar_t* s1, const wchar_t* s2, size_t n) { in strncmp()
87 inline int strnicmp(const wchar_t* s1, const wchar_t* s2, size_t n) { in strnicmp()
112 inline int _stricmp(const char* s1, const char* s2) { in _stricmp()
115 inline int _strnicmp(const char* s1, const char* s2, size_t n) { in _strnicmp()
235 inline int asccmp(const char* s1, const char* s2) { in asccmp()
238 inline int ascicmp(const char* s1, const char* s2) { in ascicmp()
241 inline int ascncmp(const char* s1, const char* s2, size_t n) { in ascncmp()
244 inline int ascnicmp(const char* s1, const char* s2, size_t n) { in ascnicmp()
[all …]
/external/libcxx/test/std/localization/locale.categories/category.collate/locale.collate.byname/
Dcompare.pass.cpp42 std::string s2("aaaaaaA"); in main() local
49 std::wstring s2(L"aaaaaaA"); in main() local
59 std::string s2("aaaaaaA"); in main() local
66 std::wstring s2(L"aaaaaaA"); in main() local
/external/libcxx/test/std/strings/basic.string/string.cons/
Dsubstr.pass.cpp40 S s2(str, pos); in test() local
53 S s2(str, pos); in test() local
72 S s2(str, pos, n); in test() local
85 S s2(str, pos, n); in test() local
104 S s2(str, pos, n, a); in test() local
117 S s2(str, pos, n, a); in test() local
Dstring_view.pass.cpp32 S s2(sv); in test() local
40 S s2; in test() local
57 S s2(sv, a); in test() local
65 S s2(a); in test() local
DT_size_size.pass.cpp37 S s2(sv, static_cast<Size>(pos), static_cast<Size>(n)); in test() local
51 S s2(sv, static_cast<Size>(pos), static_cast<Size>(n)); in test() local
70 S s2(sv, static_cast<Size>(pos), static_cast<Size>(n), a); in test() local
84 S s2(sv, static_cast<Size>(pos), static_cast<Size>(n), a); in test() local
169 S s2("QRST", 0, 3); // calls ctor(string("QRST", pos, len) in main() local
/external/honggfuzz/libhfuzz/
Dmemorycmp.c16 static inline int HF_strcmp(const char* s1, const char* s2, uintptr_t addr) { in HF_strcmp()
27 static inline int HF_strcasecmp(const char* s1, const char* s2, uintptr_t addr) { in HF_strcasecmp()
38 static inline int HF_strncmp(const char* s1, const char* s2, size_t n, uintptr_t addr) { in HF_strncmp()
53 static inline int HF_strncasecmp(const char* s1, const char* s2, size_t n, uintptr_t addr) { in HF_strncasecmp()
96 const unsigned char* s2 = (const unsigned char*)m2; in HF_memcmp() local
143 HF_WEAK_WRAP(int, strcmp, const char* s1, const char* s2) { in HF_WEAK_WRAP()
146 HF_WEAK_WRAP(int, strcasecmp, const char* s1, const char* s2) { in HF_WEAK_WRAP()
149 HF_WEAK_WRAP(int, strncmp, const char* s1, const char* s2, size_t n) { in HF_WEAK_WRAP()
152 HF_WEAK_WRAP(int, strncasecmp, const char* s1, const char* s2, size_t n) { in HF_WEAK_WRAP()
178 HF_WEAK_WRAP(int, ap_cstr_casecmp, const char* s1, const char* s2) { in HF_WEAK_WRAP()
[all …]
/external/clang/test/CodeGen/
Dmms-bitfields.c10 struct s2 { struct
13 } s2; argument
Dms_struct.c11 struct s2 { struct
14 } ATTR s2; argument
/external/antlr/tool/src/test/java/org/antlr/test/
DTestIntervalSet.java68 IntervalSet s2 = IntervalSet.of(13,15); in testSimpleAnd() local
76 IntervalSet s2 = IntervalSet.of('d'); in testRangeAndIsolatedElement() local
84 IntervalSet s2 = IntervalSet.of('0','9'); in testEmptyIntersection() local
92 IntervalSet s2 = IntervalSet.of('d'); in testEmptyIntersectionSingleElements() local
148 IntervalSet s2 = IntervalSet.of(12,15); in testSubtractOfCompletelyContainedRange() local
156 IntervalSet s2 = IntervalSet.of(5,11); in testSubtractOfOverlappingRangeFromLeft() local
169 IntervalSet s2 = IntervalSet.of(15,25); in testSubtractOfOverlappingRangeFromRight() local
182 IntervalSet s2 = IntervalSet.of(1,25); in testSubtractOfCompletelyCoveredRange() local
192 IntervalSet s2 = IntervalSet.of(5,55); // covers one and touches 2nd range in testSubtractOfRangeSpanningMultipleRanges() local
209 IntervalSet s2 = IntervalSet.of(0,115); in testSubtractOfWackyRange() local
[all …]
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowSpannableStringTest.java32 UnderlineSpan s2 = new UnderlineSpan(); in testSetSpan() local
42 UnderlineSpan s2 = new UnderlineSpan(); in testRemoveSpan() local
56 UnderlineSpan s2 = new UnderlineSpan(); in testGetSpans() local
86 private void assertBothSpans(URLSpan s1, UnderlineSpan s2) { in assertBothSpans()
/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()
147 const uint8x8_t s1, const uint8x8_t s2, in store_u8_8x8()
169 const uint8x8_t s1, const uint8x8_t s2, in store_u8_8x4()
181 const uint8x16_t s1, const uint8x16_t s2, in store_u8_8x16()
[all …]
/external/clang/test/Sema/
Dinteger-overflow.c162 struct s2 { struct
172 } s2 = { variable
Darm-layout.c21 struct s2 { struct
27 check(s2_size, sizeof(struct s2) == 8); argument

12345678910>>...47