HomeSort by relevance Sort by last modified time
    Searched defs:SV (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/elfutils/backends/
aarch64_cfi.c 57 #define SV(n) DW_CFA_same_value, ULEB128_7 (n)
59 SV (19), SV (20), SV (21), SV (22), SV (23),
60 SV (24), SV (25), SV (26), SV (27), SV (28)
    [all...]
ppc_cfi.c 53 #define SV(n) DW_CFA_same_value, ULEB128_7 (n)
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 (20), SV (21)
    [all...]
s390_cfi.c 50 #define SV(n) DW_CFA_same_value, ULEB128_7 (n)
51 SV (6), SV (7), SV (8), SV (9), SV (10), /* r6-r13, r15 */
52 SV (11), SV (12), SV (13), SV (15)
    [all...]
sparc_cfi.c 43 #define SV(n) DW_CFA_same_value, ULEB128_7 (n)
45 SV (0), SV (1), SV (2), SV (3), SV (4), SV (5), SV (6), SV (7),
47 SV (8), SV (9), SV (10), SV (11), SV (12), SV (13), SV (14), SV (15)
    [all...]
arm_cfi.c 60 #define SV(n) DW_CFA_same_value, ULEB128_7 (n)
62 SV (4), SV (5), SV (6), SV (7), SV (8), SV (10), SV (11),
65 SV (14),
67 #undef SV
    [all...]
  /external/libcxx/test/std/experimental/string.view/string.view.modifiers/
clear.pass.cpp 20 typedef std::experimental::basic_string_view<CharT> SV;
22 SV sv1 ( s );
29 assert ( sv1 == SV());
35 typedef std::experimental::basic_string_view<char> SV;
36 SV sv1{ "ABCDEFGHIJKL", n };
remove_prefix.pass.cpp 21 typedef std::experimental::basic_string_view<CharT> SV;
23 SV sv1 ( s );
42 typedef std::experimental::basic_string_view<char> SV;
43 SV sv1{ "ABCDEFGHIJKL", n };
remove_suffix.pass.cpp 20 typedef std::experimental::basic_string_view<CharT> SV;
22 SV sv1 ( s );
42 typedef std::experimental::basic_string_view<char> SV;
43 SV sv1{ "ABCDEFGHIJKL", n };
swap.pass.cpp 20 typedef std::experimental::basic_string_view<CharT> SV;
22 SV sv1(s);
23 SV sv2;
39 typedef std::experimental::basic_string_view<char> SV;
40 SV sv1{ "ABCDEFGHIJKL", n };
41 SV sv2 { sv1.data(), k };
  /external/libcxx/test/std/experimental/string.view/string.view.comparison/
opeq.string_view.pointer.pass.cpp 54 typedef std::experimental::basic_string_view<char, constexpr_char_traits<char>> SV;
55 constexpr SV sv1;
56 constexpr SV sv2 { "abcde", 5 };
opge.string_view.pointer.pass.cpp 54 typedef std::experimental::basic_string_view<char, constexpr_char_traits<char>> SV;
55 constexpr SV sv1;
56 constexpr SV sv2 { "abcde", 5 };
opge.string_view.string_view.pass.cpp 53 typedef std::experimental::basic_string_view<char, constexpr_char_traits<char>> SV;
54 constexpr SV sv1;
55 constexpr SV sv2 { "abcde", 5 };
opgt.string_view.pointer.pass.cpp 54 typedef std::experimental::basic_string_view<char, constexpr_char_traits<char>> SV;
55 constexpr SV sv1;
56 constexpr SV sv2 { "abcde", 5 };
opgt.string_view.string_view.pass.cpp 53 typedef std::experimental::basic_string_view<char, constexpr_char_traits<char>> SV;
54 constexpr SV sv1;
55 constexpr SV sv2 { "abcde", 5 };
ople.string_view.pointer.pass.cpp 54 typedef std::experimental::basic_string_view<char, constexpr_char_traits<char>> SV;
55 constexpr SV sv1;
56 constexpr SV sv2 { "abcde", 5 };
ople.string_view.string_view.pass.cpp 53 typedef std::experimental::basic_string_view<char, constexpr_char_traits<char>> SV;
54 constexpr SV sv1;
55 constexpr SV sv2 { "abcde", 5 };
oplt.string_view.pointer.pass.cpp 54 typedef std::experimental::basic_string_view<char, constexpr_char_traits<char>> SV;
55 constexpr SV sv1;
56 constexpr SV sv2 { "abcde", 5 };
oplt.string_view.string_view.pass.cpp 53 typedef std::experimental::basic_string_view<char, constexpr_char_traits<char>> SV;
54 constexpr SV sv1;
55 constexpr SV sv2 { "abcde", 5 };
opne.string_view.pointer.pass.cpp 54 typedef std::experimental::basic_string_view<char, constexpr_char_traits<char>> SV;
55 constexpr SV sv1;
56 constexpr SV sv2 { "abcde", 5 };
opeq.string_view.string_view.pass.cpp 53 typedef std::experimental::basic_string_view<char, constexpr_char_traits<char>> SV;
54 constexpr SV sv1;
55 constexpr SV sv2;
56 constexpr SV sv3 { "abcde", 5 };
opne.string_view.string_view.pass.cpp 53 typedef std::experimental::basic_string_view<char, constexpr_char_traits<char>> SV;
54 constexpr SV sv1;
55 constexpr SV sv2;
56 constexpr SV sv3 { "abcde", 5 };
  /external/llvm/include/llvm/ExecutionEngine/
ObjectMemoryBuffer.h 40 ObjectMemoryBuffer(SmallVectorImpl<char> &&SV)
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)
48 : SV(std::move(SV)), BufferName(Name) {
49 init(this->SV.begin(), this->SV.end(), false)
    [all...]
  /external/llvm/lib/ExecutionEngine/MCJIT/
ObjectBuffer.h 27 ObjectMemoryBuffer(SmallVector<char, N> SV)
28 : SV(SV), BufferName("<in-memory object>") {
29 init(this->SV.begin(), this->SV.end(), false);
33 ObjectMemoryBuffer(SmallVector<char, N> SV, StringRef Name)
34 : SV(SV), BufferName(Name) {
35 init(this->SV.begin(), this->SV.end(), false)
    [all...]
  /external/libcxx/test/std/experimental/string.view/string.view.find/
find_char_size.pass.cpp 71 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( '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, "" );
rfind_char_size.pass.cpp 70 typedef std::experimental::basic_string_view<char, constexpr_char_traits<char>> SV;
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, "" );

Completed in 484 milliseconds

1 2 3