HomeSort by relevance Sort by last modified time
    Searched refs:DOUBLE (Results 126 - 150 of 625) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/protobuf/src/google/protobuf/
generated_message_reflection.cc 262 HANDLE_TYPE(DOUBLE, double);
359 SWAP_ARRAYS(DOUBLE, double);
386 SWAP_VALUES(DOUBLE, double);
423 double temp_double;
445 GET_TEMP_VALUE(DOUBLE, double);
477 SET_ONEOF_VALUE1(DOUBLE, double)
    [all...]
dynamic_message.cc 102 case FD::CPPTYPE_DOUBLE : return sizeof(RepeatedField<double >);
122 case FD::CPPTYPE_DOUBLE : return sizeof(double );
153 case FD::CPPTYPE_DOUBLE : return sizeof(double );
315 HANDLE_TYPE(DOUBLE, double);
417 HANDLE_TYPE(DOUBLE, double);
714 HANDLE_TYPE(DOUBLE, double);
  /external/clang/test/Modules/
macros.c 40 // CHECK-PREPROCESSED: double d
41 double d;
42 DOUBLE *dp = &d;
103 #define LEFT_RIGHT_DIFFERENT2 double // FIXME: expected-warning{{'LEFT_RIGHT_DIFFERENT2' macro redefined}} \
126 double d;
135 #define LEFT_RIGHT_DIFFERENT double // FIXME: expected-warning{{'LEFT_RIGHT_DIFFERENT' macro redefined}}
138 double d;
  /external/javassist/src/main/javassist/bytecode/
StackMapTable.java 111 public static final int DOUBLE = 3;
452 * unless the descriptor is either D (double), F (float),
461 return DOUBLE;
499 int typeSize = (varTag == LONG || varTag == DOUBLE) ? 2 : 1;
763 case DOUBLE :
764 msg = "double";
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
Opcodes.java 132 Integer DOUBLE = new Integer(3);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
EncodedValueWriter.java 106 public void writeDouble(double value) throws IOException {
107 writer.writeEncodedDouble(ValueType.DOUBLE, value);
  /external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
SmaliMethodParameter.java 143 * Returns the number of registers required for this parameter. 1 for most types, but 2 for double/long.
147 if (type == PsiType.DOUBLE || type == PsiType.LONG) {
  /external/v8/test/mjsunit/
array-store-and-grow.js 178 // Grow the empty array with a double store.
221 f(a, 1, "hi"); // DOUBLE packed array -> tagged packed grow
243 f(a, 0, "hi"); // DOUBLE packed array -> tagged packed grow
array-literal-feedback.js 34 fast_double : 'fast double elements',
43 external_double : 'external double elements',
80 // We should have transitioned the boilerplate array to double, and
96 // transition from SMI->DOUBLE->FAST
  /libcore/ojluni/src/main/java/java/nio/
DirectByteBuffer.java 727 private double getDouble(long a) {
729 return Double.longBitsToDouble(x);
732 public double getDouble() {
736 return getDouble(ix(nextGetIndex(SizeOf.DOUBLE)));
739 public double getDouble(int i) {
743 return getDouble(ix(checkIndex(i, SizeOf.DOUBLE)));
746 double getDoubleUnchecked(int i) {
750 void getUnchecked(int pos, double[] dst, int dstOffset, int length) {
755 private ByteBuffer putDouble(long a, double x) {
756 long y = Double.doubleToRawLongBits(x)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/
wintypes.py 16 DOUBLE = c_double
170 __all__ = ['ATOM', 'BOOL', 'BOOLEAN', 'BYTE', 'COLORREF', 'DOUBLE', 'DWORD',
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/
wintypes.py 16 DOUBLE = c_double
170 __all__ = ['ATOM', 'BOOL', 'BOOLEAN', 'BYTE', 'COLORREF', 'DOUBLE', 'DWORD',
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
wintypes.py 16 DOUBLE = c_double
170 __all__ = ['ATOM', 'BOOL', 'BOOLEAN', 'BYTE', 'COLORREF', 'DOUBLE', 'DWORD',
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
wintypes.py 16 DOUBLE = c_double
170 __all__ = ['ATOM', 'BOOL', 'BOOLEAN', 'BYTE', 'COLORREF', 'DOUBLE', 'DWORD',
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
StubMethodAdapter.java 137 case Type.DOUBLE:
176 case Type.DOUBLE:
  /external/eigen/blas/fortran/
ztbmv.f 7 DOUBLE COMPLEX A(LDA,*),X(*)
142 DOUBLE COMPLEX ZERO
146 DOUBLE COMPLEX TEMP
  /dalvik/dx/src/com/android/dx/cf/code/
Simulator.java 272 machine.popArgs(frame, Type.DOUBLE);
362 machine.popArgs(frame, Type.DOUBLE, Type.DOUBLE);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
Target.java 46 DOUBLE
91 } else if (mReturnType == ReturnType.DOUBLE) {
92 // We only have NORMAL functions for DOUBLE, with no relaxed precison - subnormal values
113 Floaty newFloaty(double a) {
114 return new Floaty(mFloatSize, new double [] { a });
117 Floaty newFloaty(double a, double b) {
118 return new Floaty(mFloatSize, new double [] { a, b });
121 Floaty newFloaty(double a, double b, double c)
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Type.java 47 /** Represents the double primitive type */
48 public static final Type DOUBLE = new Type(CtClass.doubleType);
83 /** A placeholder used by the analyzer for the second word position of a double-word type */
105 prims.put(CtClass.doubleType, DOUBLE);
153 * Gets the word size of this type. Double-word types, such as long and double
  /external/javassist/src/main/javassist/compiler/
MemberResolver.java 389 case DOUBLE :
390 cname = "double";
530 return DOUBLE;
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
TypeUtils.java 33 transforms.put("double", "D");
249 case Type.DOUBLE:
367 public static int DCONST(double value) {
383 case Type.DOUBLE:
  /frameworks/base/core/tests/coretests/src/android/widget/espresso/
TextViewActions.java 88 * Returns an action that double-clicks on text at an index on the TextView.<br>
95 * @param index The index of the TextView's text to double-click on.
99 new ViewClickAction(Tap.DOUBLE, new TextCoordinates(index), Press.FINGER));
103 * Returns an action that double-clicks by mouse on text at an index on the TextView.<br>
110 * @param index The index of the TextView's text to double-click on.
114 new MouseClickAction(Tap.DOUBLE, new TextCoordinates(index)));
185 * Returns an action that double taps then drags on text from startIndex to endIndex on the
229 * Returns an action that double click then drags by mouse on text from startIndex to endIndex
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
AnnotationClass.java 150 case DOUBLE:
194 return mTypeMirror.getKind() == TypeKind.DOUBLE;
  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
primtypes.swg 32 double
154 /* double */
156 %ensure_type_fragments(double)
202 fragment=SWIG_AsVal_frag(double),
206 SWIG_CanCastAsInteger(double *d, double min, double max) {
207 double x = *d;
209 double fx = floor(x);
210 double cx = ceil(x)
    [all...]
  /external/eigen/blas/testing/
zblat3.f 57 DOUBLE PRECISION RZERO, RHALF, RONE
64 DOUBLE PRECISION EPS, ERR, THRESH
78 DOUBLE PRECISION G( NMAX )
83 DOUBLE PRECISION DDIFF
384 DOUBLE PRECISION RZERO
387 DOUBLE PRECISION EPS, THRESH
397 DOUBLE PRECISION G( NMAX )
401 DOUBLE PRECISION ERR, ERRMAX
669 DOUBLE PRECISION RZERO
672 DOUBLE PRECISION EPS, THRES
    [all...]

Completed in 1497 milliseconds

1 2 3 4 56 7 8 91011>>