Searched refs:FloatValue (Results 1 - 25 of 35) sorted by relevance

12

/external/proguard/src/proguard/evaluation/value/
H A DUnknownFloatValue.java28 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 othe
[all...]
H A DSpecificFloatValue.java24 * 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 subtrac
[all...]
H A DFloatValue.java30 public abstract class FloatValue extends Category1Value class in inherits: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 othe
[all...]
H A DParticularFloatValue.java24 * 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)
87 public FloatValue subtrac
[all...]
H A DNegatedFloatValue.java24 * This FloatValue represents a float value that is negated.
30 private final FloatValue floatValue;
36 public NegatedFloatValue(FloatValue floatValue)
42 // Implementations of unary methods of FloatValue.
44 public FloatValue negate()
H A DCompositeFloatValue.java24 * 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)
H A DSpecificValueFactory.java41 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);
78 public FloatValue createFloatValue(float value)
H A DValueFactory.java36 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)
H A DIdentifiedValueFactory.java55 public FloatValue createFloatValue()
H A DUnknownDoubleValue.java47 public FloatValue convertToFloat()
H A DValue.java77 * Returns this Value as a FloatValue.
79 public FloatValue floatValue()
H A DUnknownLongValue.java42 public FloatValue convertToFloat()
H A DSpecificDoubleValue.java47 public FloatValue convertToFloat()
H A DUnknownIntegerValue.java57 public FloatValue convertToFloat()
H A DParticularDoubleValue.java67 public FloatValue convertToFloat()
H A DDoubleValue.java59 * Converts this DoubleValue to a FloatValue.
61 public abstract FloatValue convertToFloat();
H A DParticularLongValue.java62 public FloatValue convertToFloat()
H A DSpecificLongValue.java42 public FloatValue convertToFloat()
H A DLongValue.java55 * Converts this LongValue to a FloatValue.
57 public abstract FloatValue convertToFloat();
H A DParticularIntegerValue.java89 public FloatValue convertToFloat()
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDGPUMCInstLower.cpp41 const APFloat &FloatValue = MO.getFPImm()->getValueAPF(); local
42 assert(&FloatValue.getSemantics() == &APFloat::IEEEsingle &&
44 MCOp = MCOperand::CreateFPImm(FloatValue.convertToFloat());
/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDGPUMCInstLower.cpp41 const APFloat &FloatValue = MO.getFPImm()->getValueAPF(); local
42 assert(&FloatValue.getSemantics() == &APFloat::IEEEsingle &&
44 MCOp = MCOperand::CreateFPImm(FloatValue.convertToFloat());
/external/llvm/lib/Target/R600/
H A DAMDGPUMCInstLower.cpp65 const APFloat &FloatValue = MO.getFPImm()->getValueAPF(); local
66 assert(&FloatValue.getSemantics() == &APFloat::IEEEsingle &&
68 MCOp = MCOperand::CreateFPImm(FloatValue.convertToFloat());
/external/proguard/src/proguard/evaluation/
H A DVariables.java241 * Loads the FloatValue from the variable with the given index.
243 public FloatValue fload(int index)
H A DStack.java308 * Pops the top FloatValue from the stack.
310 public FloatValue fpop()

Completed in 1563 milliseconds

12