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

1 2 3

  /external/clang/test/Modules/Inputs/
macros.h 4 #define DOUBLE double
  /external/javassist/src/main/javassist/bytecode/stackmap/
TypeTag.java 24 TypeData DOUBLE = new TypeData.BasicType("double", StackMapTable.DOUBLE);
  /external/bison/lib/
frexp.c 1 /* Split a double into fraction and mantissa.
41 # define DOUBLE long double
49 # define DOUBLE double
57 DOUBLE
58 FUNC (DOUBLE x, int *expptr)
83 DOUBLE pow2[64]; /* pow2[i] = 2^2^i */
84 DOUBLE powh[64]; /* powh[i] = 2^-2^i */
91 DOUBLE pow2_i; /* = pow2[i] *
    [all...]
isnan.c 24 extern int rpl_isnanl (long double x) _GL_ATTRIBUTE_CONST;
27 extern int rpl_isnand (double x);
40 # define DOUBLE long double
52 # define DOUBLE double
64 # define DOUBLE float
79 ((sizeof (DOUBLE) + sizeof (unsigned int) - 1) / sizeof (unsigned int))
80 typedef union { DOUBLE value; unsigned int word[NWORDS]; } memory_double;
83 FUNC (DOUBLE x
    [all...]
printf-frexp.c 1 /* Split a double into fraction and mantissa, for hexadecimal printf.
40 # define DOUBLE long double
53 # define DOUBLE double
66 DOUBLE
67 FUNC (DOUBLE x, int *expptr)
90 DOUBLE pow2[64]; /* pow2[i] = 2^2^i */
91 DOUBLE powh[64]; /* powh[i] = 2^-2^i */
99 DOUBLE pow2_i; /* = pow2[i] *
    [all...]
  /external/conscrypt/src/main/java/org/conscrypt/util/
EmptyArray.java 27 public static final double[] DOUBLE = new double[0];
  /external/droiddriver/src/com/google/android/droiddriver/actions/accessibility/
AccessibilityClickAction.java 31 public static final AccessibilityClickAction DOUBLE = new DoubleClick(1000L);
  /external/libhevc/common/
ihevc_typedefs.h 49 typedef double DOUBLE;
  /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/chromium_org/chrome/browser/history/android/
sqlite_cursor.h 39 DOUBLE = 8,
104 // Returns the given column value as double.
  /external/droiddriver/src/com/google/android/droiddriver/actions/
ClickAction.java 33 public static final ClickAction DOUBLE = new DoubleClick(1000L);
  /external/chromium_org/v8/src/
string-stream.h 43 explicit FmtElm(double value) : type_(DOUBLE) {
64 enum Type { INT, DOUBLE, C_STR, LC_STR, OBJ, HANDLE, POINTER };
68 double u_double_;
  /external/dexmaker/src/main/java/com/google/dexmaker/
TypeId.java 46 /** The {@code double} primitive type. */
47 public static final TypeId<Double> DOUBLE = new TypeId<Double>(com.android.dx.rop.type.Type.DOUBLE);
76 PRIMITIVE_TO_TYPE.put(double.class, DOUBLE);
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
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/
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/chromium_org/dbus/
message.h 75 DOUBLE = DBUS_TYPE_DOUBLE,
281 void AppendDouble(double value);
343 void AppendVariantOfDouble(double value);
391 bool PopDouble(double* value);
457 bool PopVariantOfDouble(double* value);
  /external/chromium_org/tools/json_schema_compiler/
model.py 212 elif (json_type == 'double' or
214 self.property_type = PropertyType.DOUBLE
468 DOUBLE = _PropertyTypeInfo(True, "double")
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
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/mockito/cglib-and-asm/src/org/mockito/asm/
Type.java 85 * The sort of the <tt>double</tt> type. See {@link #getSort getSort}.
87 public static final int DOUBLE = 8;
140 * The <tt>double</tt> type.
142 public static final Type DOUBLE_TYPE = new Type(DOUBLE);
241 } else if (c == Double.TYPE) {
390 * {@link #DOUBLE DOUBLE}, {@link #ARRAY ARRAY} or
444 case DOUBLE:
445 return "double";
540 case DOUBLE:
    [all...]
Frame.java 83 * The LONG and DOUBLE types are always represented by using two slots (LONG +
84 * TOP or DOUBLE + TOP), for local variable types as well as in the operand
199 * The DOUBLE type. This is a BASE type.
201 static final int DOUBLE = BASE | 3;
594 if (type == LONG || type == DOUBLE) {
624 return DOUBLE;
660 data = DOUBLE;
805 if (t == LONG || t == DOUBLE) {
871 push(DOUBLE);
886 case ClassWriter.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...]
  /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/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
module.py 90 DOUBLE = Kind('d')
117 DOUBLE,
  /external/dexmaker/src/dx/java/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/javassist/src/main/javassist/bytecode/
StackMap.java 88 public static final int DOUBLE = 3;

Completed in 1432 milliseconds

1 2 3