OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:constexpr
(Results
651 - 675
of
1617
) sorted by null
<<
21
22
23
24
25
26
27
28
29
30
>>
/art/runtime/gc/accounting/
bitmap.h
49
static ALWAYS_INLINE
constexpr
size_t BitIndexToWordIndex(uintptr_t offset) {
54
static ALWAYS_INLINE
constexpr
T WordIndexToBitIndex(T word_index) {
58
static ALWAYS_INLINE
constexpr
uintptr_t BitIndexToMask(uintptr_t bit_index) {
103
static
constexpr
size_t kBitsPerBitmapWord = sizeof(uintptr_t) * kBitsPerByte;
card_table.cc
33
constexpr
size_t CardTable::kCardShift;
34
constexpr
size_t CardTable::kCardSize;
35
constexpr
uint8_t CardTable::kCardClean;
36
constexpr
uint8_t CardTable::kCardDirty;
card_table.h
50
static
constexpr
size_t kCardShift = 7;
51
static
constexpr
size_t kCardSize = 1 << kCardShift;
52
static
constexpr
uint8_t kCardClean = 0x0;
53
static
constexpr
uint8_t kCardDirty = 0x70;
/art/runtime/quick/
inline_method_analyser.h
224
static
constexpr
bool IsInstructionIGet(Instruction::Code opcode) {
228
static
constexpr
bool IsInstructionIPut(Instruction::Code opcode) {
232
static
constexpr
uint16_t IGetVariant(Instruction::Code opcode) {
236
static
constexpr
uint16_t IPutVariant(Instruction::Code opcode) {
/art/runtime/simulator/
code_simulator_arm64.h
49
static
constexpr
bool kCanSimulate = (kRuntimeISA == kX86_64);
/cts/tests/openglperf2/jni/reference/scene/flocking/
FlockingScene.h
44
static const
constexpr
float BOID_SCALE = 1.0f / 50.0f;
/external/clang/test/CXX/special/class.copy/
p8-cxx11.cpp
47
constexpr
friend F::F(const F &);
/external/clang/test/CXX/temp/temp.res/temp.dep/temp.dep.constexpr/
p2-0x.cpp
19
constexpr
const int *p = &k;
/external/clang/test/Modules/Inputs/
templates-left.h
22
constexpr
unsigned List<int>::*size_left = &List<int>::size;
/external/clang/test/SemaCXX/
constexpr-steps.cpp
11
constexpr
bool steps(int n) {
new-delete-0x.cpp
4
struct noreturn_t {}
constexpr
noreturn = {};
warn-unused-filescoped.cpp
37
static
constexpr
int constexpr1() { return 1; }
38
constexpr
int constexpr2() { return 2; }
206
static
constexpr
int constexpr3() { return 1; } // expected-warning {{unused}}
207
constexpr
int constexpr4() { return 2; }
/external/libcxx/test/std/experimental/string.view/string.view.ops/
compare.sv.pass.cpp
12
//
constexpr
int compare(basic_string_view str) const noexcept;
112
constexpr
SV sv1 { "abcde", 5 };
113
constexpr
SV sv2 { "abcde", 5 };
114
constexpr
SV sv3 { "edcba0", 6 };
/external/libcxx/test/std/experimental/utilities/tuple/
tuple_size_v.fail.cpp
14
// template <class T>
constexpr
size_t tuple_size_v = tuple_size<T>::value;
tuple_size_v_2.fail.cpp
14
// template <class T>
constexpr
size_t tuple_size_v = tuple_size<T>::value;
tuple_size_v_3.fail.cpp
14
// template <class T>
constexpr
size_t tuple_size_v = tuple_size<T>::value;
/external/libcxx/test/std/language.support/support.initlist/support.initlist.cons/
default.pass.cpp
26
constexpr
std::initializer_list<A> il2;
/external/libcxx/test/std/numerics/complex.number/complex.special/
double_long_double_implicit.fail.cpp
15
// explicit
constexpr
complex(const complex<long double>&);
float_double_implicit.fail.cpp
15
// explicit
constexpr
complex(const complex<double>&);
float_long_double_implicit.fail.cpp
15
// explicit
constexpr
complex(const complex<long double>&);
/external/libcxx/test/std/re/re.submatch/re.submatch.members/
default.pass.cpp
14
//
constexpr
sub_match();
/external/libcxx/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char/
eof.pass.cpp
14
// static
constexpr
int_type eof();
eq.pass.cpp
14
// static
constexpr
bool eq(char_type c1, char_type c2);
to_char_type.pass.cpp
14
// static
constexpr
char_type to_char_type(int_type c);
to_int_type.pass.cpp
14
// static
constexpr
int_type to_int_type(char_type c);
Completed in 462 milliseconds
<<
21
22
23
24
25
26
27
28
29
30
>>