OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FloatValue
(Results
1 - 25
of
35
) sorted by null
1
2
/external/proguard/src/proguard/evaluation/value/
UnknownFloatValue.java
28
public class UnknownFloatValue extends
FloatValue
32
public
FloatValue
negate()
55
public
FloatValue
generalize(
FloatValue
other)
60
public
FloatValue
add(
FloatValue
other)
65
public
FloatValue
subtract(
FloatValue
other)
70
public
FloatValue
subtractFrom(
FloatValue
other
[
all
...]
FloatValue.java
30
public abstract class
FloatValue
extends Category1Value
44
* Returns the negated value of this
FloatValue
.
46
public abstract
FloatValue
negate();
49
* Converts this
FloatValue
to an IntegerValue.
54
* Converts this
FloatValue
to a LongValue.
59
* Converts this
FloatValue
to a DoubleValue.
67
* Returns the generalization of this
FloatValue
and the given other
68
*
FloatValue
.
70
public abstract
FloatValue
generalize(
FloatValue
other)
[
all
...]
SpecificFloatValue.java
24
* This
FloatValue
represents a specific float value.
28
abstract class SpecificFloatValue extends
FloatValue
30
// Implementations of unary methods of
FloatValue
.
32
public
FloatValue
negate()
53
// Implementations of binary methods of
FloatValue
.
55
public
FloatValue
generalize(
FloatValue
other)
60
public
FloatValue
add(
FloatValue
other)
65
public
FloatValue
subtract(FloatValue other
[
all
...]
ParticularFloatValue.java
24
* This
FloatValue
represents a particular float value.
42
// Implementations for
FloatValue
.
50
// Implementations of unary methods of
FloatValue
.
52
public
FloatValue
negate()
73
// Implementations of binary methods of
FloatValue
.
75
public
FloatValue
generalize(
FloatValue
other)
80
public
FloatValue
add(
FloatValue
other)
85
public
FloatValue
subtract(FloatValue other
[
all
...]
NegatedFloatValue.java
24
* This
FloatValue
represents a float value that is negated.
30
private final
FloatValue
floatValue
;
36
public NegatedFloatValue(
FloatValue
floatValue
)
38
this.
floatValue
=
floatValue
;
42
// Implementations of unary methods of
FloatValue
.
44
public
FloatValue
negate()
46
return
floatValue
;
[
all
...]
CompositeFloatValue.java
24
* This
FloatValue
represents the result of a binary operation on two float
38
private final
FloatValue
floatValue1;
40
private final
FloatValue
floatValue2;
47
public CompositeFloatValue(
FloatValue
floatValue1,
49
FloatValue
floatValue2)
SpecificValueFactory.java
41
static final
FloatValue
FLOAT_VALUE_0 = new ParticularFloatValue(0.0f);
42
static final
FloatValue
FLOAT_VALUE_1 = new ParticularFloatValue(1.0f);
43
static final
FloatValue
FLOAT_VALUE_2 = new ParticularFloatValue(2.0f);
74
public
FloatValue
createFloatValue(float value)
ValueFactory.java
36
static final
FloatValue
FLOAT_VALUE = new UnknownFloatValue();
105
* Creates a new
FloatValue
with an undefined value.
107
public
FloatValue
createFloatValue()
113
* Creates a new
FloatValue
with a given particular value.
115
public
FloatValue
createFloatValue(float value)
IdentifiedValueFactory.java
55
public
FloatValue
createFloatValue()
UnknownDoubleValue.java
47
public
FloatValue
convertToFloat()
Value.java
77
* Returns this Value as a
FloatValue
.
79
public
FloatValue
floatValue
()
UnknownLongValue.java
42
public
FloatValue
convertToFloat()
UnknownIntegerValue.java
57
public
FloatValue
convertToFloat()
ParticularDoubleValue.java
67
public
FloatValue
convertToFloat()
SpecificDoubleValue.java
47
public
FloatValue
convertToFloat()
DoubleValue.java
59
* Converts this DoubleValue to a
FloatValue
.
61
public abstract
FloatValue
convertToFloat();
ParticularLongValue.java
62
public
FloatValue
convertToFloat()
SpecificLongValue.java
42
public
FloatValue
convertToFloat()
LongValue.java
55
* Converts this LongValue to a
FloatValue
.
57
public abstract
FloatValue
convertToFloat();
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDGPUMCInstLower.cpp
41
const APFloat &
FloatValue
= MO.getFPImm()->getValueAPF();
42
assert(&
FloatValue
.getSemantics() == &APFloat::IEEEsingle &&
44
MCOp = MCOperand::CreateFPImm(
FloatValue
.convertToFloat());
/external/llvm/lib/Target/R600/
AMDGPUMCInstLower.cpp
44
const APFloat &
FloatValue
= MO.getFPImm()->getValueAPF();
45
assert(&
FloatValue
.getSemantics() == &APFloat::IEEEsingle &&
47
MCOp = MCOperand::CreateFPImm(
FloatValue
.convertToFloat());
AMDGPUISelDAGToDAG.cpp
335
float
FloatValue
= Value.convertToFloat();
336
if (
FloatValue
== 0.0) {
338
} else if (
FloatValue
== 0.5) {
340
} else if (
FloatValue
== 1.0) {
/external/mesa3d/src/gallium/drivers/radeon/
AMDGPUMCInstLower.cpp
41
const APFloat &
FloatValue
= MO.getFPImm()->getValueAPF();
42
assert(&
FloatValue
.getSemantics() == &APFloat::IEEEsingle &&
44
MCOp = MCOperand::CreateFPImm(
FloatValue
.convertToFloat());
/external/proguard/src/proguard/evaluation/
Variables.java
242
* Loads the
FloatValue
from the variable with the given index.
244
public
FloatValue
fload(int index)
246
return load(index).
floatValue
();
Stack.java
309
* Pops the top
FloatValue
from the stack.
311
public
FloatValue
fpop()
313
return pop().
floatValue
();
Completed in 88 milliseconds
1
2