HomeSort by relevance Sort by last modified time
    Searched full:constexpr (Results 576 - 600 of 1617) sorted by null

<<21222324252627282930>>

  /external/clang/test/Lexer/
cxx1y_digit_separators.cpp 58 constexpr int x = { M(1'2,3'4) };
65 constexpr int c {M(0\u1234'0,0'1)};
66 constexpr int d {M(00'\u1234,0'1)};
75 constexpr int c {M(0?'0,0'1)};
76 constexpr int d {M(00'?,0'1)};
  /art/compiler/optimizing/
code_generator_arm.h 34 static constexpr size_t kArmWordSize = kArmPointerSize;
35 static constexpr size_t kArmBitsPerWord = kArmWordSize * kBitsPerByte;
37 static constexpr Register kParameterCoreRegisters[] = { R1, R2, R3 };
38 static constexpr size_t kParameterCoreRegistersLength = arraysize(kParameterCoreRegisters);
39 static constexpr SRegister kParameterFpuRegisters[] =
41 static constexpr size_t kParameterFpuRegistersLength = arraysize(kParameterFpuRegisters);
43 static constexpr Register kArtMethodRegister = R0;
45 static constexpr Register kRuntimeParameterCoreRegisters[] = { R0, R1, R2, R3 };
46 static constexpr size_t kRuntimeParameterCoreRegistersLength =
48 static constexpr SRegister kRuntimeParameterFpuRegisters[] = { S0, S1, S2, S3 }
    [all...]
code_generator_x86.h 32 static constexpr size_t kX86WordSize = kX86PointerSize;
36 static constexpr Register kParameterCoreRegisters[] = { ECX, EDX, EBX };
37 static constexpr RegisterPair kParameterCorePairRegisters[] = { ECX_EDX, EDX_EBX };
38 static constexpr size_t kParameterCoreRegistersLength = arraysize(kParameterCoreRegisters);
39 static constexpr XmmRegister kParameterFpuRegisters[] = { XMM0, XMM1, XMM2, XMM3 };
40 static constexpr size_t kParameterFpuRegistersLength = arraysize(kParameterFpuRegisters);
42 static constexpr Register kRuntimeParameterCoreRegisters[] = { EAX, ECX, EDX, EBX };
43 static constexpr size_t kRuntimeParameterCoreRegistersLength =
45 static constexpr XmmRegister kRuntimeParameterFpuRegisters[] = { XMM0, XMM1, XMM2, XMM3 };
46 static constexpr size_t kRuntimeParameterFpuRegistersLength
    [all...]
code_generator_x86_64.h 32 static constexpr size_t kX86_64WordSize = kX86_64PointerSize;
35 static constexpr Register TMP = R11;
37 static constexpr Register kParameterCoreRegisters[] = { RSI, RDX, RCX, R8, R9 };
38 static constexpr FloatRegister kParameterFloatRegisters[] =
41 static constexpr size_t kParameterCoreRegistersLength = arraysize(kParameterCoreRegisters);
42 static constexpr size_t kParameterFloatRegistersLength = arraysize(kParameterFloatRegisters);
44 static constexpr Register kRuntimeParameterCoreRegisters[] = { RDI, RSI, RDX, RCX };
45 static constexpr size_t kRuntimeParameterCoreRegistersLength =
47 static constexpr FloatRegister kRuntimeParameterFpuRegisters[] = { XMM0, XMM1 };
48 static constexpr size_t kRuntimeParameterFpuRegistersLength
    [all...]
nodes_shared.h 36 static constexpr int kInputAccumulatorIndex = 0;
37 static constexpr int kInputMulLeftIndex = 1;
38 static constexpr int kInputMulRightIndex = 2;
reference_type_propagation.h 45 static constexpr const char* kReferenceTypePropagationPassName = "reference_type_propagation";
105 static constexpr size_t kDefaultWorklistSize = 8;
  /art/runtime/gc/accounting/
read_barrier_table.h 83 static constexpr size_t kRegionSize = 1 * MB;
86 static constexpr uint64_t kHeapCapacity = 4ULL * GB; // low 4gb.
87 static constexpr uint8_t kSetEntryValue = 0x01;
  /bionic/libc/malloc_debug/
Config.cpp 48 static constexpr uint8_t DEFAULT_FILL_ALLOC_VALUE = 0xeb;
49 static constexpr uint8_t DEFAULT_FILL_FREE_VALUE = 0xef;
51 static constexpr uint8_t DEFAULT_FRONT_GUARD_VALUE = 0xaa;
52 static constexpr uint8_t DEFAULT_REAR_GUARD_VALUE = 0xbb;
55 static constexpr size_t DEFAULT_GUARD_BYTES = 32;
56 static constexpr size_t MAX_GUARD_BYTES = 16384;
58 static constexpr size_t DEFAULT_BACKTRACE_FRAMES = 16;
59 static constexpr size_t MAX_BACKTRACE_FRAMES = 256;
61 static constexpr size_t DEFAULT_EXPAND_BYTES = 16;
62 static constexpr size_t MAX_EXPAND_BYTES = 16384
    [all...]
  /external/clang/test/CodeGenCXX/
const-init-cxx1y.cpp 5 constexpr A() : n(1) {}
11 constexpr B() {
24 constexpr int f(int &r) { r *= 9; return r - 12; }
  /external/clang/test/SemaCXX/
access.cpp 46 static constexpr I x = 0; // expected-note {{implicitly declared private here}}
47 static constexpr I y = 42; // expected-note {{implicitly declared private here}}
77 static constexpr I x = 0; // expected-note {{implicitly declared private here}}
  /external/libcxx/test/std/algorithms/alg.sorting/alg.min.max/
max_element_comp.pass.cpp 79 constexpr int il[] = { 2, 4, 6, 8, 7, 5, 3, 1 };
80 struct less { constexpr bool operator ()( const int &x, const int &y) const { return x < y; }};
86 constexpr auto p = std::max_element(il, il+8, less());
min_element_comp.pass.cpp 79 constexpr int il[] = { 2, 4, 6, 8, 7, 5, 3, 1 };
80 struct less { constexpr bool operator ()( const int &x, const int &y) const { return x < y; }};
86 constexpr auto p = std::min_element(il, il+8, less());
minmax_element_comp.pass.cpp 83 constexpr int il[] = { 2, 4, 6, 8, 7, 5, 3, 1 };
84 struct less { constexpr bool operator ()( const int &x, const int &y) const { return x < y; }};
90 constexpr auto p = std::minmax_element(il, il+8, less());
  /external/libcxx/test/std/experimental/string.view/string.view.find/
find_char_size.pass.cpp 12 // constexpr size_type find(charT c, size_type pos = 0) const;
72 constexpr SV sv1;
73 constexpr SV sv2 { "abcde", 5 };
find_first_not_of_char_size.pass.cpp 12 // constexpr size_type find_first_not_of(charT c, size_type pos = 0) const;
74 constexpr SV sv1;
75 constexpr SV sv2 { "abcde", 5 };
find_first_of_char_size.pass.cpp 12 // constexpr size_type find_first_of(charT c, size_type pos = 0) const;
72 constexpr SV sv1;
73 constexpr SV sv2 { "abcde", 5 };
find_last_of_char_size.pass.cpp 12 // constexpr size_type find_last_of(charT c, size_type pos = npos) const;
72 constexpr SV sv1;
73 constexpr SV sv2 { "abcde", 5 };
rfind_char_size.pass.cpp 11 // constexpr size_type rfind(charT c, size_type pos = npos) const;
71 constexpr SV sv1;
72 constexpr SV sv2 { "abcde", 5 };
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.cnstr/
const_Types.pass.cpp 28 constexpr std::tuple<int> t(2);
32 constexpr std::tuple<int> t;
43 constexpr std::tuple<int, char*> t(2, nullptr);
  /system/bt/service/common/bluetooth/
uuid.h 30 static constexpr size_t kNumBytes128 = 16;
31 static constexpr size_t kNumBytes32 = 4;
32 static constexpr size_t kNumBytes16 = 2;
  /external/clang/test/FixIt/
fixit-cxx0x.cpp 126 constexpr int i; // expected-error {{non-static data member cannot be constexpr; did you intend to make it const?}}
127 constexpr int j = 7; // expected-error {{non-static data member cannot be constexpr; did you intend to make it static?}}
128 constexpr const int k; // expected-error {{non-static data member cannot be constexpr; did you intend to make it const?}}
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
alloc_traits.h 172 static constexpr bool _S_propagate_on_copy_assign()
175 static constexpr bool _S_propagate_on_move_assign()
178 static constexpr bool _S_propagate_on_swap()
181 static constexpr bool _S_always_equal()
184 static constexpr bool _S_nothrow_move()
187 static constexpr bool _S_nothrow_swap()
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
alloc_traits.h 172 static constexpr bool _S_propagate_on_copy_assign()
175 static constexpr bool _S_propagate_on_move_assign()
178 static constexpr bool _S_propagate_on_swap()
181 static constexpr bool _S_always_equal()
184 static constexpr bool _S_nothrow_move()
187 static constexpr bool _S_nothrow_swap()
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
alloc_traits.h 172 static constexpr bool _S_propagate_on_copy_assign()
175 static constexpr bool _S_propagate_on_move_assign()
178 static constexpr bool _S_propagate_on_swap()
181 static constexpr bool _S_always_equal()
184 static constexpr bool _S_nothrow_move()
187 static constexpr bool _S_nothrow_swap()
  /art/runtime/base/
time_utils.h 66 static constexpr inline uint64_t NsToMs(uint64_t ns) {
71 static constexpr inline uint64_t MsToNs(uint64_t ms) {

Completed in 739 milliseconds

<<21222324252627282930>>