OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:double
(Results
1876 - 1900
of
10768
) sorted by null
<<
71
72
73
74
75
76
77
78
79
80
>>
/external/valgrind/main/none/tests/x86/
fcmovnu.c
4
double
zzz;
fxtract.c
5
double
arg, res1, res2;
18
void try (
double
x )
33
try( 1.27 + (
double
)(i*10 - 200) );
67
try( - (1.27 + (
double
)(i*10 - 200)) );
/external/webkit/LayoutTests/dom/xhtml/level3/core/
datatype_normalization.svg.xsd
43
<xsd:attribute name="x" type="xsd:
double
" use="required"/>
44
<xsd:attribute name="y" type="xsd:
double
" use="required"/>
45
<xsd:attribute name="height" type="xsd:
double
" use="required"/>
46
<xsd:attribute name="width" type="xsd:
double
" use="required"/>
datatype_normalization2.svg.xsd
43
<xsd:attribute name="x" type="xsd:
double
" use="required"/>
44
<xsd:attribute name="y" type="xsd:
double
" use="required"/>
45
<xsd:attribute name="height" type="xsd:
double
" use="required"/>
46
<xsd:attribute name="width" type="xsd:
double
" use="required"/>
hc_staff.svg.xsd
43
<xsd:attribute name="x" type="xsd:
double
" use="required"/>
44
<xsd:attribute name="y" type="xsd:
double
" use="required"/>
45
<xsd:attribute name="height" type="xsd:
double
" use="required"/>
46
<xsd:attribute name="width" type="xsd:
double
" use="required"/>
typeinfo.svg.xsd
43
<xsd:attribute name="x" type="xsd:
double
" use="required"/>
44
<xsd:attribute name="y" type="xsd:
double
" use="required"/>
45
<xsd:attribute name="height" type="xsd:
double
" use="required"/>
46
<xsd:attribute name="width" type="xsd:
double
" use="required"/>
/external/webkit/Source/JavaScriptCore/runtime/
JSValue.cpp
39
static const
double
D32 = 4294967296.0;
42
double
JSValue::toInteger(ExecState* exec) const
46
double
d = toNumber(exec);
50
double
JSValue::toIntegerPreserveNaN(ExecState* exec) const
120
snprintf(description, size, "
Double
: %lf", asDouble());
145
int32_t toInt32(
double
number)
168
// IEEE-754
double
precision values are stored omitting an implicit 1 before
183
NEVER_INLINE
double
nonInlineNaN()
188
return std::numeric_limits<
double
>::quiet_NaN();
/external/webkit/Source/WebCore/page/
WebKitAnimation.cpp
47
double
WebKitAnimation::duration() const
52
double
WebKitAnimation::elapsedTime() const
57
void WebKitAnimation::setElapsedTime(
double
time)
62
double
WebKitAnimation::delay() const
/external/webkit/Source/WebCore/platform/
RunLoopTimer.h
48
void start(
double
nextFireInterval,
double
repeatInterval);
50
void startRepeating(
double
repeatInterval) { start(repeatInterval, repeatInterval); }
51
void startOneShot(
double
interval) { start(interval, 0); }
/external/webkit/Source/WebCore/platform/audio/
AudioDSPKernel.h
48
AudioDSPKernel(
double
sampleRate)
60
double
sampleRate() const { return m_sampleRate; }
61
double
nyquist() const { return 0.5 * sampleRate(); }
68
double
m_sampleRate;
SincResampler.cpp
68
SincResampler::SincResampler(
double
scaleFactor, unsigned kernelSize, unsigned numberOfKernelOffsets)
85
double
alpha = 0.16;
86
double
a0 = 0.5 * (1.0 - alpha);
87
double
a1 = 0.5;
88
double
a2 = 0.5 * alpha;
91
double
sincScaleFactor = m_scaleFactor > 1.0 ? 1.0 / m_scaleFactor : 1.0;
105
double
subsampleOffset = static_cast<
double
>(offsetIndex) / m_numberOfKernelOffsets;
109
double
s = sincScaleFactor * piDouble * (i - halfSize - subsampleOffset);
110
double
sinc = !s ? 1.0 : sin(s) / s
[
all
...]
/external/webkit/Source/WebCore/platform/graphics/
TiledBackingStore.h
59
double
tileCreationDelay() const { return m_tileCreationDelay; }
60
void setTileCreationDelay(
double
delay);
98
double
tileDistance(const IntRect& viewport, const Tile::Coordinate&);
112
double
m_tileCreationDelay;
/external/webkit/Source/WebCore/platform/graphics/android/
ZoomManager.cpp
68
void ZoomManager::scheduleUpdate(const
double
& currentTime,
99
double
ZoomManager::zoomInTransitionTime(
double
currentTime)
106
double
ZoomManager::zoomOutTransitionTime(
double
currentTime)
113
float ZoomManager::zoomInTransparency(
double
currentTime)
120
float ZoomManager::zoomOutTransparency(
double
currentTime)
134
void ZoomManager::processNewScale(
double
currentTime, float scale)
183
void ZoomManager::processTransition(
double
currentTime, float scale,
/external/webkit/Source/WebCore/platform/haiku/
SharedTimerHaiku.cpp
46
void start(
double
);
85
void SharedTimerHaiku::start(
double
fireTime)
89
double
intervalInSeconds = fireTime - currentTime();
114
void setSharedTimerFireTime(
double
fireTime)
/external/webkit/Source/WebCore/platform/text/mac/
LocalizedNumberMac.mm
58
double
parseLocalizedNumber(const String& numberString)
61
return numeric_limits<
double
>::quiet_NaN();
64
return numeric_limits<
double
>::quiet_NaN();
68
String formatLocalizedNumber(
double
inputNumber, unsigned fractionDigits)
/external/webkit/Source/WebCore/webaudio/
BiquadDSPKernel.cpp
43
double
value1 = biquadProcessor()->parameter1()->smoothedValue();
44
double
value2 = biquadProcessor()->parameter2()->smoothedValue();
47
double
nyquist = this->nyquist();
48
double
normalizedValue1 = value1 / nyquist;
/external/webkit/Source/WebKit/mac/WebView/
WebGeolocationPosition.mm
73
- (id)initWithTimestamp:(
double
)timestamp latitude:(
double
)latitude longitude:(
double
)longitude accuracy:(
double
)accuracy
/external/webkit/Source/WebKit/win/
WebGeolocationPosition.cpp
84
HRESULT WebGeolocationPosition::initWithTimestamp(
double
timestamp,
double
latitude,
double
longitude,
double
accuracy)
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundleFrame.h
69
WK_EXPORT bool WKBundleFrameGetDocumentBackgroundColor(WKBundleFrameRef frame,
double
* red,
double
* green,
double
* blue,
double
* alpha);
WKBundlePage.cpp
180
double
WKBundlePageGetTextZoomFactor(WKBundlePageRef pageRef)
185
void WKBundlePageSetTextZoomFactor(WKBundlePageRef pageRef,
double
zoomFactor)
190
double
WKBundlePageGetPageZoomFactor(WKBundlePageRef pageRef)
195
void WKBundlePageSetPageZoomFactor(WKBundlePageRef pageRef,
double
zoomFactor)
200
void WKBundlePageSetScaleAtOrigin(WKBundlePageRef pageRef,
double
scale, WKPoint origin)
247
WKImageRef WKBundlePageCreateScaledSnapshotInDocumentCoordinates(WKBundlePageRef pageRef, WKRect rect,
double
scaleFactor, WKImageOptions options)
265
void WKBundlePageSimulateMouseDown(WKBundlePageRef page, int button, WKPoint position, int clickCount, WKEventModifiers modifiers,
double
time)
270
void WKBundlePageSimulateMouseUp(WKBundlePageRef page, int button, WKPoint position, int clickCount, WKEventModifiers modifiers,
double
time)
275
void WKBundlePageSimulateMouseMotion(WKBundlePageRef page, WKPoint position,
double
time)
/external/webkit/Tools/DumpRenderTree/
AccessibilityUIElement.h
121
double
x();
122
double
y();
123
double
width();
124
double
height();
125
double
intValue() const;
126
double
minValue();
127
double
maxValue();
151
double
clickPointX();
152
double
clickPointY();
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/mac/
ConvertPoint.cpp
38
bool testConvert(
double
x,
double
y, NPCoordinateSpace sourceSpace, NPCoordinateSpace destSpace)
41
double
destX, destY;
46
double
srcX, srcY;
/frameworks/base/core/jni/
BindTest.cpp
135
/* native
double
addDoubles(
double
a,
double
b); */
140
double
a = JARG_get_double(1);
141
double
b = JARG_get_double(3);
146
/* native void setAll (Object obj, boolean bool, int i, String str,
double
d, long l) */
156
double
d = JARG_get_double(5);
171
/* native void compareAll (Object obj, boolean bool, int i, String str,
double
d, long l) */
181
double
d = JARG_get_double(5);
/frameworks/base/core/tests/coretests/src/android/database/
CursorWindowTest.java
50
double
db1 = 1.26;
52
double
db2 = window.getDouble(0, 0);
68
assertTrue(window.putString(
Double
.toString(42.0), 0, 4));
69
assertEquals(
Double
.toString(42.0), window.getString(0, 4));
/frameworks/compile/libbcc/runtime/lib/
floatdidf.c
18
/* Returns: convert a to a
double
, rounding toward even. */
20
/* Assumption:
double
is a IEEE 64 bit floating point type
32
double
35
static const
double
twop52 = 0x1.0p52;
36
static const
double
twop32 = 0x1.0p32;
38
union { int64_t x;
double
d; } low = { .d = twop52 };
40
const
double
high = (int32_t)(a >> 32) * twop32;
43
const
double
result = (high - twop52) + low.d;
52
double
Completed in 618 milliseconds
<<
71
72
73
74
75
76
77
78
79
80
>>