HomeSort by relevance Sort by last modified time
    Searched refs:value (Results 1 - 25 of 5672) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/gui/splash/
ConstantDouble.java 30 private final double value; field in class:ConstantDouble
35 * @param value the constant value.
37 public ConstantDouble(double value)
39 this.value = value;
47 return value;
ConstantInt.java 30 private final int value; field in class:ConstantInt
35 * @param value the constant value.
37 public ConstantInt(int value)
39 this.value = value;
47 return value;
ConstantColor.java 32 private final Color value; field in class:ConstantColor
37 * @param value the constant value.
39 public ConstantColor(Color value)
41 this.value = value;
49 return value;
ConstantFont.java 32 private final Font value; field in class:ConstantFont
34 public ConstantFont(Font value)
36 this.value = value;
44 return value;
ConstantString.java 30 private final String value; field in class:ConstantString
35 * @param value the constant value.
37 public ConstantString(String value)
39 this.value = value;
47 return value;
  /external/fdlibm/
s_ldexp.c 18 double ieee_ldexp(double value, int exp)
20 double ieee_ldexp(value, exp)
21 double value; int exp;
24 if(!ieee_finite(value)||value==0.0) return value;
25 value = ieee_scalbn(value,exp);
26 if(!ieee_finite(value)||value==0.0) errno = ERANGE
    [all...]
  /external/proguard/src/proguard/evaluation/value/
ConvertedByteValue.java 21 package proguard.evaluation.value;
24 * This IntegerValue represents a byte value that is converted from an
25 * integer value.
31 private final IntegerValue value; field in class:ConvertedByteValue
35 * Creates a new converted byte value of the given integer value.
37 public ConvertedByteValue(IntegerValue value)
39 this.value = value;
49 this.value.equals(((ConvertedByteValue)object).value)
    [all...]
ConvertedCharacterValue.java 21 package proguard.evaluation.value;
24 * This IntegerValue represents a character value that is converted from an
25 * integer value.
31 private final IntegerValue value; field in class:ConvertedCharacterValue
35 * Creates a new converted character value of the given integer value.
37 public ConvertedCharacterValue(IntegerValue value)
39 this.value = value;
49 this.value.equals(((ConvertedCharacterValue)object).value)
    [all...]
ConvertedDoubleValue.java 21 package proguard.evaluation.value;
24 * This DoubleValue represents a double value that is converted from another
25 * scalar value.
31 private final Value value; field in class:ConvertedDoubleValue
35 * Creates a new converted double value of the given value.
37 public ConvertedDoubleValue(Value value)
39 this.value = value
    [all...]
ConvertedFloatValue.java 21 package proguard.evaluation.value;
24 * This FloatValue represents a float value that is converted from another
25 * scalar value.
31 private final Value value; field in class:ConvertedFloatValue
35 * Creates a new converted float value of the given value.
37 public ConvertedFloatValue(Value value)
39 this.value = value
    [all...]
ConvertedIntegerValue.java 21 package proguard.evaluation.value;
24 * This IntegerValue represents a integer value that is converted from another
25 * scalar value.
31 private final Value value; field in class:ConvertedIntegerValue
35 * Creates a new converted integer value of the given value.
37 public ConvertedIntegerValue(Value value)
39 this.value = value
    [all...]
ConvertedLongValue.java 21 package proguard.evaluation.value;
24 * This LongValue represents a long value that is converted from another
25 * scalar value.
31 private final Value value; field in class:ConvertedLongValue
35 * Creates a new converted long value of the given value.
37 public ConvertedLongValue(Value value)
39 this.value = value
    [all...]
ConvertedShortValue.java 21 package proguard.evaluation.value;
24 * This IntegerValue represents a short value that is converted from an
25 * integer value.
31 private final IntegerValue value; field in class:ConvertedShortValue
35 * Creates a new converted short value of the given integer value.
37 public ConvertedShortValue(IntegerValue value)
39 this.value = value;
49 this.value.equals(((ConvertedShortValue)object).value)
    [all...]
  /external/qemu/
varint.c 27 // Encodes the 64-bit value "value" using the varint encoding. The varint
42 char *varint_encode(uint64_t value, char *buf) {
43 if (value < k2Exp7) {
44 *buf++ = value;
45 } else if (value < k2Exp14) {
46 *buf++ = (2 << 6) | (value >> 8);
47 *buf++ = value & 0xff;
48 } else if (value < k2Exp21) {
49 *buf++ = (6 << 5) | (value >> 16)
    [all...]
varint.h 14 extern char *varint_encode(uint64_t value, char *buf);
15 extern char *varint_encode_signed(int64_t value, char *buf);
  /external/opencore/codecs_v2/audio/gsm_amr/amr_wb/dec/src/
get_amr_wb_bits.cpp 121 int16 value = 0; local
125 value <<= 2;
129 value |= 2;
134 value |= 1;
141 value <<= 1;
145 value |= 1;
150 return (value);
156 int16 value = 0; local
160 value = 1;
162 return (value);
    [all...]
  /external/opencore/oscl/oscl/osclutil/src/
oscl_math.h 51 * @param value source value
53 OSCL_COND_IMPORT_REF double oscl_log(double value);
57 * @param value source value
59 OSCL_COND_IMPORT_REF double oscl_log10(double value);
63 * @param value source value
65 OSCL_COND_IMPORT_REF double oscl_sqrt(double value);
67 * Calculates the value of x to the power of
    [all...]
oscl_math.inl 19 OSCL_COND_EXPORT_REF OSCL_INLINE double oscl_log(double value)
21 return (double) log(value);
24 OSCL_COND_EXPORT_REF OSCL_INLINE double oscl_log10(double value)
26 return (double) log10(value);
29 OSCL_COND_EXPORT_REF OSCL_INLINE double oscl_sqrt(double value)
31 return (double) sqrt(value);
39 OSCL_COND_EXPORT_REF OSCL_INLINE double oscl_exp(double value)
41 return (double) exp(value);
44 OSCL_COND_EXPORT_REF OSCL_INLINE double oscl_sin(double value)
46 return (double) sin(value);
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrwb/src/
get_amr_wb_bits.cpp 121 int16 value = 0; local
125 value <<= 2;
129 value |= 2;
134 value |= 1;
141 value <<= 1;
145 value |= 1;
150 return (value);
156 int16 value = 0; local
160 value = 1;
162 return (value);
    [all...]
  /frameworks/base/core/java/android/util/
FloatMath.java 34 * positive infinity) integer value which is less than the argument.
36 * @param value to be converted
37 * @return the floor of value
39 public static native float floor(float value);
43 * negative infinity) integer value which is greater than the argument.
45 * @param value to be converted
46 * @return the ceiling of value
48 public static native float ceil(float value);
70 * @param value to compute sqrt of
71 * @return the square root of value
    [all...]
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/misc/
HashCode.java 66 * The hashCode value before any data is appended, equals to 1.
81 * Combines hashCode of previous elements sequence and value's hashCode.
82 * @param hashCode previous hashCode value
83 * @param value new element
86 public static int combine(int hashCode, boolean value) {
87 int v = value ? 1231 : 1237;
92 * Combines hashCode of previous elements sequence and value's hashCode.
93 * @param hashCode previous hashCode value
94 * @param value new element
97 public static int combine(int hashCode, long value) {
    [all...]
  /dalvik/libcore/text/src/main/java/java/text/
Annotation.java 21 * Wrapper for a text attribute value which represents an annotation. An
27 * value is the same.</li>
39 private Object value; field in class:Annotation
48 value = attribute;
52 * Returns the value of this annotation. The value may be {@code null}.
54 * @return the value of this annotation or {@code null}.
57 return value;
67 return getClass().getName() + "[value=" + value + ']'; //$NON-NLS-1
    [all...]
  /dalvik/tests/078-polymorphic-virtual/src/
Derived1.java 19 value += 1;
Derived2.java 19 value += 2;
Derived3.java 19 value += 3;

Completed in 683 milliseconds

1 2 3 4 5 6 7 8 91011>>