Searched refs:SV (Results 1 - 25 of 81) sorted by relevance

1234

/external/elfutils/src/backends/
H A Ds390_cfi.c50 #define SV(n) DW_CFA_same_value, ULEB128_7 (n) macro
51 SV (6), SV (7), SV (8), SV (9), SV (10), /* r6-r13, r15 */
52 SV (11), SV (12), SV (13), SV (1
55 #undef SV macro
[all...]
H A Daarch64_cfi.c57 #define SV(n) DW_CFA_same_value, ULEB128_7 (n) macro
59 SV (19), SV (20), SV (21), SV (22), SV (23),
60 SV (24), SV (25), SV (26), SV (2
68 #undef SV macro
[all...]
H A Dppc_cfi.c53 #define SV(n) DW_CFA_same_value, ULEB128_7 (n) macro
54 SV (2), /* r2 is TOC pointer. */
55 SV (13), /* Reserved as system thread id (is it for CFI?). */
57 SV (14), SV (15), SV (16), SV (17), SV (18), SV (19), SV (2
63 #undef SV macro
[all...]
H A Darm_cfi.c60 #define SV(n) DW_CFA_same_value, ULEB128_7 (n) macro
62 SV (4), SV (5), SV (6), SV (7), SV (8), SV (10), SV (11),
65 SV (14),
67 #undef SV macro
72 #define SV macro
81 #undef SV macro
[all...]
/external/llvm/include/llvm/ExecutionEngine/
H A DObjectMemoryBuffer.h40 ObjectMemoryBuffer(SmallVectorImpl<char> &&SV) argument
41 : SV(std::move(SV)), BufferName("<in-memory object>") {
42 init(this->SV.begin(), this->SV.end(), false);
47 ObjectMemoryBuffer(SmallVectorImpl<char> &&SV, StringRef Name) argument
48 : SV(std::move(SV)), BufferName(Name) {
49 init(this->SV.begin(), this->SV
57 SmallVector<char, 0> SV; member in class:llvm::ObjectMemoryBuffer
[all...]
/external/llvm/lib/ExecutionEngine/MCJIT/
H A DObjectBuffer.h27 ObjectMemoryBuffer(SmallVector<char, N> SV) argument
28 : SV(SV), BufferName("<in-memory object>") {
29 init(this->SV.begin(), this->SV.end(), false);
33 ObjectMemoryBuffer(SmallVector<char, N> SV, StringRef Name) argument
34 : SV(SV), BufferName(Name) {
35 init(this->SV.begin(), this->SV
42 SmallVector<char, 4096> SV; member in class:llvm::ObjectMemoryBuffer
[all...]
/external/libcxx/test/std/experimental/string.view/string.view.modifiers/
H A Dclear.pass.cpp20 typedef std::experimental::basic_string_view<CharT> SV; typedef
22 SV sv1 ( s );
29 assert ( sv1 == SV());
35 typedef std::experimental::basic_string_view<char> SV; typedef
36 SV sv1{ "ABCDEFGHIJKL", n };
H A Dswap.pass.cpp20 typedef std::experimental::basic_string_view<CharT> SV; typedef
22 SV sv1(s);
23 SV sv2;
39 typedef std::experimental::basic_string_view<char> SV; typedef
40 SV sv1{ "ABCDEFGHIJKL", n };
41 SV sv2 { sv1.data(), k };
H A Dremove_prefix.pass.cpp21 typedef std::experimental::basic_string_view<CharT> SV; typedef
23 SV sv1 ( s );
42 typedef std::experimental::basic_string_view<char> SV; typedef
43 SV sv1{ "ABCDEFGHIJKL", n };
H A Dremove_suffix.pass.cpp20 typedef std::experimental::basic_string_view<CharT> SV; typedef
22 SV sv1 ( s );
42 typedef std::experimental::basic_string_view<char> SV; typedef
43 SV sv1{ "ABCDEFGHIJKL", n };
/external/libcxx/test/std/experimental/string.view/string.view.find/
H A Dfind_first_not_of_char_size.pass.cpp73 typedef std::experimental::basic_string_view<char, constexpr_char_traits<char>> SV;
74 constexpr SV sv1;
75 constexpr SV sv2 { "abcde", 5 };
77 static_assert (sv1.find_first_not_of( 'q', 0 ) == SV::npos, "" );
78 static_assert (sv1.find_first_not_of( 'q', 1 ) == SV::npos, "" );
81 static_assert (sv2.find_first_not_of( 'q', 5 ) == SV::npos, "" );
H A Dfind_last_not_of_char_size.pass.cpp71 typedef std::experimental::basic_string_view<char, constexpr_char_traits<char>> SV;
72 constexpr SV sv1;
73 constexpr SV sv2 { "abcde", 5 };
75 static_assert (sv1.find_last_not_of( 'i', 0 ) == SV::npos, "" );
76 static_assert (sv1.find_last_not_of( 'i', 1 ) == SV::npos, "" );
77 static_assert (sv2.find_last_not_of( 'a', 0 ) == SV::npos, "" );
H A Drfind_char_size.pass.cpp70 typedef std::experimental::basic_string_view<char, constexpr_char_traits<char>> SV; typedef
71 constexpr SV sv1;
72 constexpr SV sv2 { "abcde", 5 };
74 static_assert (sv1.rfind( 'b', 0 ) == SV::npos, "" );
75 static_assert (sv1.rfind( 'b', 1 ) == SV::npos, "" );
76 static_assert (sv2.rfind( 'b', 0 ) == SV::npos, "" );
H A Dfind_char_size.pass.cpp71 typedef std::experimental::basic_string_view<char, constexpr_char_traits<char>> SV; typedef
72 constexpr SV sv1;
73 constexpr SV sv2 { "abcde", 5 };
75 static_assert (sv1.find( 'c', 0 ) == SV::npos, "" );
76 static_assert (sv1.find( 'c', 1 ) == SV::npos, "" );
80 static_assert (sv2.find( 'c', 3 ) == SV::npos, "" );
81 static_assert (sv2.find( 'c', 4 ) == SV::npos, "" );
H A Dfind_first_of_char_size.pass.cpp71 typedef std::experimental::basic_string_view<char, constexpr_char_traits<char>> SV;
72 constexpr SV sv1;
73 constexpr SV sv2 { "abcde", 5 };
75 static_assert (sv1.find_first_of( 'e', 0 ) == SV::npos, "" );
76 static_assert (sv1.find_first_of( 'e', 1 ) == SV::npos, "" );
77 static_assert (sv2.find_first_of( 'q', 0 ) == SV::npos, "" );
79 static_assert (sv2.find_first_of( 'e', 5 ) == SV::npos, "" );
/external/libcxx/test/std/experimental/string.view/string.view.comparison/
H A Dopeq.string_view.string_view.pass.cpp53 typedef std::experimental::basic_string_view<char, constexpr_char_traits<char>> SV; typedef
54 constexpr SV sv1;
55 constexpr SV sv2;
56 constexpr SV sv3 { "abcde", 5 };
H A Dopne.string_view.string_view.pass.cpp53 typedef std::experimental::basic_string_view<char, constexpr_char_traits<char>> SV; typedef
54 constexpr SV sv1;
55 constexpr SV sv2;
56 constexpr SV sv3 { "abcde", 5 };
H A Dopeq.string_view.pointer.pass.cpp54 typedef std::experimental::basic_string_view<char, constexpr_char_traits<char>> SV; typedef
55 constexpr SV sv1;
56 constexpr SV sv2 { "abcde", 5 };
H A Dopge.string_view.pointer.pass.cpp54 typedef std::experimental::basic_string_view<char, constexpr_char_traits<char>> SV; typedef
55 constexpr SV sv1;
56 constexpr SV sv2 { "abcde", 5 };
H A Dopge.string_view.string_view.pass.cpp53 typedef std::experimental::basic_string_view<char, constexpr_char_traits<char>> SV; typedef
54 constexpr SV sv1;
55 constexpr SV sv2 { "abcde", 5 };
H A Dopgt.string_view.pointer.pass.cpp54 typedef std::experimental::basic_string_view<char, constexpr_char_traits<char>> SV; typedef
55 constexpr SV sv1;
56 constexpr SV sv2 { "abcde", 5 };
H A Dopgt.string_view.string_view.pass.cpp53 typedef std::experimental::basic_string_view<char, constexpr_char_traits<char>> SV; typedef
54 constexpr SV sv1;
55 constexpr SV sv2 { "abcde", 5 };
H A Dople.string_view.pointer.pass.cpp54 typedef std::experimental::basic_string_view<char, constexpr_char_traits<char>> SV; typedef
55 constexpr SV sv1;
56 constexpr SV sv2 { "abcde", 5 };
H A Dople.string_view.string_view.pass.cpp53 typedef std::experimental::basic_string_view<char, constexpr_char_traits<char>> SV; typedef
54 constexpr SV sv1;
55 constexpr SV sv2 { "abcde", 5 };
H A Doplt.string_view.pointer.pass.cpp54 typedef std::experimental::basic_string_view<char, constexpr_char_traits<char>> SV; typedef
55 constexpr SV sv1;
56 constexpr SV sv2 { "abcde", 5 };

Completed in 276 milliseconds

1234