OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ReplaceFloat64
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/v8/src/compiler/
simplified-operator-reducer.h
31
Reduction
ReplaceFloat64
(double value);
machine-operator-reducer.h
39
Reduction
ReplaceFloat64
(volatile double value) {
machine-operator-reducer.cc
342
return
ReplaceFloat64
(m.left().Value() + m.right().Value());
349
return
ReplaceFloat64
(m.left().Value() - m.right().Value());
360
return
ReplaceFloat64
(m.left().Value() * m.right().Value());
374
return
ReplaceFloat64
(m.left().Value() / m.right().Value());
387
return
ReplaceFloat64
(modulo(m.left().Value(), m.right().Value()));
393
if (m.HasValue()) return
ReplaceFloat64
(m.Value());
410
if (m.HasValue()) return
ReplaceFloat64
(FastI2D(m.Value()));
420
if (m.HasValue()) return
ReplaceFloat64
(FastUI2D(m.Value()));
simplified-operator-reducer.cc
61
if (m.HasValue()) return
ReplaceFloat64
(m.Value());
113
Reduction SimplifiedOperatorReducer::
ReplaceFloat64
(double value) {
Completed in 224 milliseconds