OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CONSTEXPR
(Results
1 - 10
of
10
) sorted by null
/system/core/include/utils/
Timers.h
38
static
CONSTEXPR
inline nsecs_t seconds_to_nanoseconds(nsecs_t secs)
43
static
CONSTEXPR
inline nsecs_t milliseconds_to_nanoseconds(nsecs_t secs)
48
static
CONSTEXPR
inline nsecs_t microseconds_to_nanoseconds(nsecs_t secs)
53
static
CONSTEXPR
inline nsecs_t nanoseconds_to_seconds(nsecs_t secs)
58
static
CONSTEXPR
inline nsecs_t nanoseconds_to_milliseconds(nsecs_t secs)
63
static
CONSTEXPR
inline nsecs_t nanoseconds_to_microseconds(nsecs_t secs)
68
static
CONSTEXPR
inline nsecs_t s2ns(nsecs_t v) {return seconds_to_nanoseconds(v);}
69
static
CONSTEXPR
inline nsecs_t ms2ns(nsecs_t v) {return milliseconds_to_nanoseconds(v);}
70
static
CONSTEXPR
inline nsecs_t us2ns(nsecs_t v) {return microseconds_to_nanoseconds(v);}
71
static
CONSTEXPR
inline nsecs_t ns2s(nsecs_t v) {return nanoseconds_to_seconds(v);
[
all
...]
Compat.h
57
* Needed for cases where something should be
constexpr
if possible, but not
58
* being
constexpr
is fine if in pre-C++11 code (such as a const static float
62
#define
CONSTEXPR
constexpr
64
#define
CONSTEXPR
/external/clang/test/CXX/basic/basic.start/basic.start.init/
p3.cpp
11
#elif
CONSTEXPR
12
constexpr
// expected-error {{'main' is not allowed to be declared
constexpr
}}
/frameworks/av/cmds/stagefright/
SineSource.h
28
static const
CONSTEXPR
double kFrequency = 500.0;
/frameworks/av/services/audioflinger/
AudioResampler.h
52
static const
CONSTEXPR
float UNITY_GAIN_FLOAT = 1.0f;
AudioResamplerFirGen.h
183
* We use a bit of template math here,
constexpr
would probably be
192
static const
CONSTEXPR
double value = I0Term<N-1>::value / (4. * N * N);
197
static const
CONSTEXPR
double value = 1.;
202
static const
CONSTEXPR
double value = I0ATerm<N-1>::value * (2.*N-1.) * (2.*N-1.) / (8. * N);
207
static const
CONSTEXPR
double value =
AudioMixer.h
63
static const
CONSTEXPR
float UNITY_GAIN_FLOAT = 1.0f;
/system/extras/tests/memtest/
bandwidth.h
97
static const
CONSTEXPR
double _NUM_NS_PER_SEC = 1000000000.0;
98
static const
CONSTEXPR
double _BYTES_PER_MB = 1024.0* 1024.0;
/frameworks/av/include/media/
ToneGenerator.h
214
static const
CONSTEXPR
float TONEGEN_GAIN = 0.9; // Default gain passed to WaveGenerator().
/frameworks/av/services/camera/libcameraservice/api1/client2/
Parameters.h
191
static const
CONSTEXPR
float ASPECT_RATIO_TOLERANCE = 0.001;
Completed in 480 milliseconds