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

1 2 3 4

  /libcore/luni/src/main/java/libcore/io/
SizeOf.java 21 public static final int DOUBLE = 8;
  /dalvik/hit/src/com/android/hit/
Types.java 26 public static final int DOUBLE = 7;
43 case 'D': return 8; // double
53 case DOUBLE: return 8;
70 case 'D': return "double";
80 case DOUBLE: return "double";
  /external/dbus/test/data/valid-messages/
opposite-endian.message 25 TYPE DOUBLE
26 DOUBLE 3.14159
recursive-types.message 62 STRING 'double-array'
64 TYPE DOUBLE
  /external/javassist/src/main/javassist/bytecode/stackmap/
TypeTag.java 24 TypeData DOUBLE = new TypeData.BasicType("double", StackMapTable.DOUBLE);
Tracer.java 183 stackTypes[stackTop++] = DOUBLE;
204 return doXLOAD(DOUBLE, code, pos);
230 stackTypes[stackTop++] = DOUBLE;
251 stackTypes[stackTop - 2] = DOUBLE;
289 stackTypes[stackTop++] = DOUBLE;
327 return doXSTORE(pos, code, DOUBLE);
360 localsTypes[var] = DOUBLE;
485 stackTypes[stackTop] = DOUBLE;
496 stackTypes[stackTop - 1] = DOUBLE;
507 stackTypes[stackTop++] = DOUBLE;
    [all...]
  /libcore/luni/src/main/java/java/nio/
DoubleToByteBufferAdapter.java 22 * This class wraps a byte buffer to be a double buffer.
45 super(byteBuffer.capacity() / SizeOf.DOUBLE);
66 byteBuffer.limit(limit * SizeOf.DOUBLE);
67 byteBuffer.position(position * SizeOf.DOUBLE);
87 public double get() {
91 return byteBuffer.getDouble(position++ * SizeOf.DOUBLE);
95 public double get(int index) {
97 return byteBuffer.getDouble(index * SizeOf.DOUBLE);
101 public DoubleBuffer get(double[] dst, int dstOffset, int doubleCount) {
102 byteBuffer.limit(limit * SizeOf.DOUBLE);
    [all...]
  /external/clang/test/Modules/
macros.c 8 #define DOUBLE double
32 // CHECK-PREPROCESSED: double d
33 double d;
34 DOUBLE *dp = &d;
  /libcore/luni/src/main/java/libcore/util/
EmptyArray.java 25 public static final double[] DOUBLE = new double[0];
  /libcore/luni/src/main/java/java/sql/
Types.java 94 * The type code that identifies the SQL type {@code DOUBLE}.
96 public static final int DOUBLE = 8;
  /external/protobuf/java/src/main/java/com/google/protobuf/
WireFormat.java 81 DOUBLE(0D),
108 DOUBLE (JavaType.DOUBLE , WIRETYPE_FIXED64 ),
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstDouble.java 29 new CstDouble(Double.doubleToLongBits(0.0));
33 new CstDouble(Double.doubleToLongBits(1.0));
39 * @param bits the {@code double} value as {@code long} bits
52 * @param bits the {@code double} value as {@code long} bits
62 return "double{0x" + Hex.u8(bits) + " / " +
63 Double.longBitsToDouble(bits) + '}';
68 return Type.DOUBLE;
74 return "double";
79 return Double.toString(Double.longBitsToDouble(getLongBits()))
    [all...]
CstType.java 43 /** {@code non-null;} instance corresponding to the class {@code Double} */
44 public static final CstType DOUBLE = intern(Type.DOUBLE_CLASS);
70 /** {@code non-null;} instance corresponding to the type {@code double[]} */
108 case Type.BT_DOUBLE: return DOUBLE;
  /dalvik/dx/src/com/android/dx/rop/cst/
CstDouble.java 29 new CstDouble(Double.doubleToLongBits(0.0));
33 new CstDouble(Double.doubleToLongBits(1.0));
39 * @param bits the {@code double} value as {@code long} bits
52 * @param bits the {@code double} value as {@code long} bits
62 return "double{0x" + Hex.u8(bits) + " / " +
63 Double.longBitsToDouble(bits) + '}';
68 return Type.DOUBLE;
74 return "double";
79 return Double.toString(Double.longBitsToDouble(getLongBits()))
    [all...]
CstType.java 43 /** {@code non-null;} instance corresponding to the class {@code Double} */
44 public static final CstType DOUBLE = intern(Type.DOUBLE_CLASS);
70 /** {@code non-null;} instance corresponding to the type {@code double[]} */
108 case Type.BT_DOUBLE: return DOUBLE;
  /external/javassist/src/main/javassist/bytecode/analysis/
Executor.java 99 frame.push(Type.DOUBLE);
123 evalLoad(Type.DOUBLE, iter.byteAt(pos + 1), frame, subroutine);
150 evalLoad(Type.DOUBLE, opcode - DLOAD_0, frame, subroutine);
168 evalArrayLoad(Type.DOUBLE, frame);
188 evalStore(Type.DOUBLE, iter.byteAt(pos + 1), frame, subroutine);
215 evalStore(Type.DOUBLE, opcode - DSTORE_0, frame, subroutine);
233 evalArrayStore(Type.DOUBLE, frame);
316 evalBinaryMath(Type.DOUBLE, frame);
328 evalBinaryMath(Type.DOUBLE, frame);
340 evalBinaryMath(Type.DOUBLE, frame)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
Rops.java 49 /** {@code r,x: double :: r = x;} */
51 new Rop(RegOps.MOVE, Type.DOUBLE, StdTypeList.DOUBLE, "move-double");
82 /** {@code r,param(x): double :: r = param(x);} */
84 new Rop(RegOps.MOVE_PARAM, Type.DOUBLE, StdTypeList.EMPTY,
85 "move-param-double");
104 /** {@code r, literal: double :: r = literal;} */
106 new Rop(RegOps.CONST, Type.DOUBLE, StdTypeList.EMPTY, "const-double");
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
Rops.java 49 /** {@code r,x: double :: r = x;} */
51 new Rop(RegOps.MOVE, Type.DOUBLE, StdTypeList.DOUBLE, "move-double");
82 /** {@code r,param(x): double :: r = param(x);} */
84 new Rop(RegOps.MOVE_PARAM, Type.DOUBLE, StdTypeList.EMPTY,
85 "move-param-double");
104 /** {@code r, literal: double :: r = literal;} */
106 new Rop(RegOps.CONST, Type.DOUBLE, StdTypeList.EMPTY, "const-double");
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
StdTypeList.java 38 /** {@code non-null;} the list {@code [double]} */
39 public static final StdTypeList DOUBLE = StdTypeList.make(Type.DOUBLE);
64 /** {@code non-null;} the list {@code [double, double]} */
66 StdTypeList.make(Type.DOUBLE, Type.DOUBLE);
84 /** {@code non-null;} the list {@code [double, Object]} */
86 StdTypeList.make(Type.DOUBLE, Type.OBJECT);
104 /** {@code non-null;} the list {@code [double[], int]} *
    [all...]
Type.java 50 /** basic type constant for {@code double} */
83 /** {@code non-null;} instance representing {@code double} */
84 public static final Type DOUBLE = new Type("D", BT_DOUBLE);
115 putIntern(DOUBLE);
136 CLASS_TYPE_MAP.put(double.class, DOUBLE);
187 * {@code non-null;} instance representing {@code java.lang.Double}; the
191 public static final Type DOUBLE_CLASS = intern("Ljava/lang/Double;");
237 /** {@code non-null;} instance representing {@code double[]} */
238 public static final Type DOUBLE_ARRAY = DOUBLE.getArrayType()
    [all...]
  /dalvik/dx/src/com/android/dx/rop/type/
StdTypeList.java 38 /** {@code non-null;} the list {@code [double]} */
39 public static final StdTypeList DOUBLE = StdTypeList.make(Type.DOUBLE);
64 /** {@code non-null;} the list {@code [double, double]} */
66 StdTypeList.make(Type.DOUBLE, Type.DOUBLE);
84 /** {@code non-null;} the list {@code [double, Object]} */
86 StdTypeList.make(Type.DOUBLE, Type.OBJECT);
104 /** {@code non-null;} the list {@code [double[], int]} *
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TypesTest.java 41 assertEquals(DOUBLE, 8);
  /external/javassist/src/main/javassist/compiler/
TokenId.java 31 int DOUBLE = 312;
  /external/v8/src/
string-stream.h 78 explicit FmtElm(double value) : type_(DOUBLE) {
98 enum Type { INT, DOUBLE, C_STR, LC_STR, OBJ, HANDLE, POINTER };
102 double u_double_;
  /hardware/ti/omap3/dspbridge/inc/
dbtype.h 120 typedef double DOUBLE; /* dbl */

Completed in 419 milliseconds

1 2 3 4