OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:double
(Results
1001 - 1025
of
11433
) sorted by null
<<
41
42
43
44
45
46
47
48
49
50
>>
/external/stlport/test/unit/
valarray_test.cpp
36
valarray<
double
> darray;
37
valarray<
double
> tmp;
89
valarray<long
double
> ldarray;
90
valarray<long
double
> tmp;
115
valarray<
double
> v0(2, 10);
116
valarray<
double
> v1(v0[slice(0, 1, 5)]);
118
valarray<
double
> v2(v0[gslice()]);
119
//valarray<
double
> v3(v0[valarray<bool>()]);
120
valarray<
double
> v4(v0[valarray<size_t>()]);
/external/webkit/Source/WebCore/dom/
DeviceOrientation.cpp
36
PassRefPtr<DeviceOrientation> DeviceOrientation::create(bool canProvideAlpha,
double
alpha, bool canProvideBeta,
double
beta, bool canProvideGamma,
double
gamma)
49
DeviceOrientation::DeviceOrientation(bool canProvideAlpha,
double
alpha, bool canProvideBeta,
double
beta, bool canProvideGamma,
double
gamma)
59
double
DeviceOrientation::alpha() const
64
double
DeviceOrientation::beta() const
69
double
DeviceOrientation::gamma() const
/external/webkit/Source/WebCore/html/
WeekInputType.cpp
43
static const
double
weekDefaultStepBase = -259200000.0; // The first day of 1970-W01.
44
static const
double
weekDefaultStep = 1.0;
45
static const
double
weekStepScaleFactor = 604800000.0;
57
double
WeekInputType::minimum() const
62
double
WeekInputType::maximum() const
67
double
WeekInputType::stepBase() const
72
double
WeekInputType::defaultStep() const
77
double
WeekInputType::stepScaleFactor() const
94
bool WeekInputType::setMillisecondToDateComponents(
double
value, DateComponents* date) const
/external/webkit/Source/WebCore/platform/graphics/transforms/
SkewTransformOperation.h
34
static PassRefPtr<SkewTransformOperation> create(
double
angleX,
double
angleY, OperationType type)
39
double
angleX() const { return m_angleX; }
40
double
angleY() const { return m_angleY; }
61
virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from,
double
progress, bool blendToIdentity = false);
63
SkewTransformOperation(
double
angleX,
double
angleY, OperationType type)
70
double
m_angleX;
71
double
m_angleY;
/external/webkit/Source/WebCore/webaudio/
AudioBuffer.h
44
static PassRefPtr<AudioBuffer> create(unsigned numberOfChannels, size_t numberOfFrames,
double
sampleRate);
47
static PassRefPtr<AudioBuffer> createFromAudioFileData(const void* data, size_t dataSize, bool mixToMono,
double
sampleRate);
51
double
duration() const { return length() / sampleRate(); }
52
double
sampleRate() const { return m_sampleRate; }
60
double
gain() const { return m_gain; }
61
void setGain(
double
gain) { m_gain = gain; }
69
AudioBuffer(unsigned numberOfChannels, size_t numberOfFrames,
double
sampleRate);
72
double
m_gain; // scalar gain
73
double
m_sampleRate;
/external/webkit/Source/WebKit/chromium/public/
WebDeviceOrientation.h
38
WebDeviceOrientation(bool canProvideAlpha,
double
alpha, bool canProvideBeta,
double
beta, bool canProvideGamma,
double
gamma)
53
double
alpha() { return m_alpha; }
55
double
beta() { return m_beta; }
57
double
gamma() { return m_gamma; }
79
double
m_alpha;
81
double
m_beta;
83
double
m_gamma;
/ndk/tests/device/test-gnustl-full/unit/
valarray_test.cpp
36
valarray<
double
> darray;
37
valarray<
double
> tmp;
89
valarray<long
double
> ldarray;
90
valarray<long
double
> tmp;
115
valarray<
double
> v0(2, 10);
116
valarray<
double
> v1(v0[slice(0, 1, 5)]);
118
valarray<
double
> v2(v0[gslice()]);
119
//valarray<
double
> v3(v0[valarray<bool>()]);
120
valarray<
double
> v4(v0[valarray<size_t>()]);
/ndk/tests/device/test-stlport/unit/
valarray_test.cpp
36
valarray<
double
> darray;
37
valarray<
double
> tmp;
89
valarray<long
double
> ldarray;
90
valarray<long
double
> tmp;
115
valarray<
double
> v0(2, 10);
116
valarray<
double
> v1(v0[slice(0, 1, 5)]);
118
valarray<
double
> v2(v0[gslice()]);
119
//valarray<
double
> v3(v0[valarray<bool>()]);
120
valarray<
double
> v4(v0[valarray<size_t>()]);
/bionic/libm/src/
s_copysign.c
18
* copysign(
double
x,
double
y)
26
double
27
copysign(
double
x,
double
y)
/external/chromium/base/
rand_util.cc
25
double
RandDouble() {
31
COMPILE_ASSERT(std::numeric_limits<
double
>::radix == 2, otherwise_use_scalbn);
32
static const int kBits = std::numeric_limits<
double
>::digits;
34
double
result = ldexp(static_cast<
double
>(random_bits), -1 * kBits);
/external/clang/test/CodeGen/
conditional.c
7
double
test2(int cond, float a,
double
b) {
65
// CHECK: select i1 {{.*}},
double
4.0{{.*}},
double
2.0
66
double
test12(int c) {
/external/clang/test/Parser/
builtin_types_compatible.c
5
extern
double
funcDouble(
double
);
14
else if (__builtin_types_compatible_p(typeof(expr),
double
)) funcDouble(tmp); \
19
__builtin_choose_expr(__builtin_types_compatible_p(typeof(expr),
double
), funcDouble(expr), (void)0)))
25
double
d;
/external/compiler-rt/lib/arm/
adddf3vfp.S
13
//
double
__adddf3vfp(
double
a,
double
b) { return a + b; }
15
// Adds two
double
precision floating point numbers using the Darwin
16
// calling convention where
double
arguments are passsed in GPR pairs
divdf3vfp.S
13
// extern
double
__divdf3vfp(
double
a,
double
b);
15
// Divides two
double
precision floating point numbers using the Darwin
16
// calling convention where
double
arguments are passsed in GPR pairs
eqdf2vfp.S
13
// extern int __eqdf2vfp(
double
a,
double
b);
16
// Uses Darwin calling convention where
double
precision arguments are passsed
22
vmov d6, r0, r1 // load r0/r1 pair in
double
register
23
vmov d7, r2, r3 // load r2/r3 pair in
double
register
fixdfsivfp.S
13
// extern int __fixdfsivfp(
double
a);
15
// Converts
double
precision float to a 32-bit int rounding towards zero.
16
// Uses Darwin calling convention where a
double
precision parameter is
22
vmov d7, r0, r1 // load
double
register from R0/R1
23
vcvt.s32.f64 s15, d7 // convert
double
to 32-bit int into s15
fixunsdfsivfp.S
13
// extern unsigned int __fixunsdfsivfp(
double
a);
15
// Converts
double
precision float to a 32-bit unsigned int rounding towards
17
// Uses Darwin calling convention where a
double
precision parameter is
23
vmov d7, r0, r1 // load
double
register from R0/R1
24
vcvt.u32.f64 s15, d7 // convert
double
to 32-bit int into s15
gedf2vfp.S
13
// extern int __gedf2vfp(
double
a,
double
b);
16
// Uses Darwin calling convention where
double
precision arguments are passsed
22
vmov d6, r0, r1 // load r0/r1 pair in
double
register
23
vmov d7, r2, r3 // load r2/r3 pair in
double
register
muldf3vfp.S
13
// extern
double
__muldf3vfp(
double
a,
double
b);
15
// Multiplies two
double
precision floating point numbers using the Darwin
16
// calling convention where
double
arguments are passsed in GPR pairs
subdf3vfp.S
13
// extern
double
__subdf3vfp(
double
a,
double
b);
15
// Returns difference between two
double
precision floating point numbers using
16
// the Darwin calling convention where
double
arguments are passsed in GPR pairs
truncdfsf2vfp.S
13
// extern float __truncdfsf2vfp(
double
a);
15
// Converts
double
precision float to signle precision result.
16
// Uses Darwin calling convention where a
double
precision parameter is
22
vmov d7, r0, r1 // load
double
from r0/r1 pair
23
vcvt.f32.f64 s15, d7 // convert
double
to single (trucate precision)
unorddf2vfp.S
13
// extern int __unorddf2vfp(
double
a,
double
b);
16
// Uses Darwin calling convention where
double
precision arguments are passsed
22
vmov d6, r0, r1 // load r0/r1 pair in
double
register
23
vmov d7, r2, r3 // load r2/r3 pair in
double
register
/external/compiler-rt/lib/x86_64/
floatundixf.S
6
// long
double
__floatundixf(du_int a);
51
orq REL_ADDR(twop84), %rdi // 2^84 + hi (as a
double
)
52
orq REL_ADDR(twop52), %rsi // 2^52 + lo (as a
double
)
56
faddl -8(%rsp) // hi - 2^52 (as
double
extended, no rounding occurs)
57
faddl -16(%rsp) // hi + lo (as
double
extended)
/external/e2fsprogs/po/
en@boldquot.header
4
# and
double
quote (0x22). These substitutes look strange; see
12
# left
double
quotation mark (U+201C) and right
double
quotation mark (U+201D).
17
# grave/acute accent (by libiconv), and the
double
quotation marks are
20
# transliterated to apostrophes, and the
double
quotation marks are
en@quot.header
4
# and
double
quote (0x22). These substitutes look strange; see
12
# left
double
quotation mark (U+201C) and right
double
quotation mark (U+201D).
17
# grave/acute accent (by libiconv), and the
double
quotation marks are
20
# transliterated to apostrophes, and the
double
quotation marks are
Completed in 522 milliseconds
<<
41
42
43
44
45
46
47
48
49
50
>>