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

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/libcore/util/
MutableBoolean.java 20 public boolean value; field in class:MutableBoolean
22 public MutableBoolean(boolean value) {
23 this.value = value;
MutableByte.java 20 public byte value; field in class:MutableByte
22 public MutableByte(byte value) {
23 this.value = value;
MutableChar.java 20 public char value; field in class:MutableChar
22 public MutableChar(char value) {
23 this.value = value;
MutableDouble.java 20 public double value; field in class:MutableDouble
22 public MutableDouble(double value) {
23 this.value = value;
MutableFloat.java 20 public float value; field in class:MutableFloat
22 public MutableFloat(float value) {
23 this.value = value;
MutableInt.java 20 public int value; field in class:MutableInt
22 public MutableInt(int value) {
23 this.value = value;
MutableLong.java 20 public long value; field in class:MutableLong
22 public MutableLong(long value) {
23 this.value = value;
MutableShort.java 20 public short value; field in class:MutableShort
22 public MutableShort(short value) {
23 this.value = value;
  /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;
  /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/clang/test/SemaTemplate/
fibonacci.cpp 8 enum { value = FibonacciEval<I-1>::value + FibonacciEval<I-2>::value }; enumerator in enum:Fibonacci::__anon5306
13 enum { value = Fibonacci<I>::value }; enumerator in enum:FibonacciEval::__anon5307
17 enum { value = 0 }; enumerator in enum:Fibonacci::__anon5308
21 enum { value = 1 }; enumerator in enum:Fibonacci::__anon5309
24 int array5[Fibonacci<5>::value == 5? 1 : -1];
25 int array10[Fibonacci<10>::value == 55? 1 : -1];
32 static const unsigned value member in struct:Fibonacci2
38 static const unsigned value = Fibonacci2<I>::value; member in struct:FibonacciEval2
42 static const unsigned value = 0; member in struct:Fibonacci2
46 static const unsigned value = 1; member in struct:Fibonacci2
54 static const unsigned value = Fibonacci3<I-1>::value + Fibonacci3<I-2>::value; member in struct:Fibonacci3
58 static const unsigned value = 0; member in struct:Fibonacci3
62 static const unsigned value = 1; member in struct:Fibonacci3
    [all...]
ackermann.cpp 6 // value = M ? (N ? Ackermann<M-1, Ackermann<M, N-1> >::value
7 // : Ackermann<M-1, 1>::value)
15 value = Ackermann<M-1, Ackermann<M, N-1>::value >::value enumerator in enum:Ackermann::__anon5294
21 value = Ackermann<M-1, 1>::value enumerator in enum:Ackermann::__anon5295
27 value = N + 1 enumerator in enum:Ackermann::__anon5296
33 value = enumerator in enum:Ackermann::__anon5297
    [all...]
  /external/icu4c/layout/
LESwaps.h 25 #define SWAPW(value) LESwaps::swapWord((le_uint16)(value))
33 #define SWAPL(value) LESwaps::swapLong((le_uint32)(value))
51 * @param value - the word to be byte swapped
57 static le_uint16 swapWord(le_uint16 value)
59 return (le_uint16)((value << 8) | (value >> 8));
66 * @param value - the long to be byte swapped
72 static le_uint32 swapLong(le_uint32 value)
    [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...]
  /external/chromium/net/socket/
tcp_client_socket.cc 11 void set_tcp_fastopen_enabled(bool value) {
12 g_tcp_fastopen_enabled = value;
  /external/webrtc/src/common_audio/signal_processing_library/main/source/
norm_w32.c 22 int WebRtcSpl_NormW32(WebRtc_Word32 value)
26 if (value <= 0)
27 value ^= 0xFFFFFFFF;
30 // the value
31 if (!(0xFFFF8000 & value))
33 if (!(0xFF800000 & (value << zeros)))
35 if (!(0xF8000000 & (value << zeros)))
37 if (!(0xE0000000 & (value << zeros)))
39 if (!(0xC0000000 & (value << zeros)))

Completed in 699 milliseconds

1 2 3 4 5 6 7 8 91011>>