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

1 2 3

  /external/clang/test/CXX/temp/temp.param/
p8.cpp 5 template<int f(float, double)> struct B;
6 typedef float FLOAT;
7 template<int (*f)(FLOAT, double)> struct B;
  /external/clang/test/Modules/Inputs/
macros.h 3 #define FLOAT float
7 #__private_macro FLOAT
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
math-cordic.js 35 function FLOAT(X)
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
math-cordic.js 35 function FLOAT(X)
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
math-cordic.js 35 function FLOAT(X)
81 return FLOAT(X) * FLOAT(Y);
  /external/javassist/src/main/javassist/bytecode/stackmap/
TypeTag.java 23 TypeData FLOAT = new TypeData.BasicType("float", StackMapTable.FLOAT);
  /external/clang/test/SemaTemplate/
class-template-id.cpp 2 template<typename T, typename U = float> struct A { };
6 typedef float FLOAT;
8 A<int, FLOAT> *foo(A<int> *ptr, A<int> const *ptr2, A<int, double> *ptr3) {
12 return ptr2; // expected-error{{cannot initialize return object of type 'A<int, FLOAT> *' with an lvalue of type 'const A<int> *'}}
14 return ptr3; // expected-error{{cannot initialize return object of type 'A<int, FLOAT> *' with an lvalue of type 'A<int, double> *'}}
38 typedef N::C<float> c2;
class-template-spec.cpp 7 template<> struct A<float, float> { // expected-note{{previous definition}}
11 template<> struct A<float> { // expected-note{{previous definition}}
15 int test_specs(A<float, float> *a1, A<float, int> *a2) {
26 typedef float FLOAT;
28 template<> struct A<float, FLOAT>;
    [all...]
  /dalvik/hit/src/com/android/hit/
Types.java 25 public static final int FLOAT = 6;
42 case 'F': return 4; // float
52 case FLOAT: return 4;
69 case 'F': return "float";
79 case FLOAT: return "float";
  /external/clang/test/SemaCXX/
overloaded-operator-decl.cpp 23 X operator+(int, float); // expected-error{{overloaded 'operator+' must have at least one parameter of class or enumeration type}}
34 typedef float FLOAT;
37 X operator++(X&, FLOAT); // expected-error{{parameter of overloaded post-increment operator must have type 'int' (not 'FLOAT' (aka 'float'))}}
  /external/chromium_org/third_party/opus/src/celt/dump_modes/
dump_modes.c 41 #define FLOAT "%#0.8gf"
47 #define WORD16 FLOAT
48 #define WORD32 FLOAT
  /external/deqp/framework/randomshaders/
rsgVariableType.cpp 223 case 1: str << Token::FLOAT; break;
  /external/dexmaker/src/main/java/com/google/dexmaker/
TypeId.java 49 /** The {@code float} primitive type. */
50 public static final TypeId<Float> FLOAT = new TypeId<Float>(com.android.dx.rop.type.Type.FLOAT);
77 PRIMITIVE_TO_TYPE.put(float.class, FLOAT);
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstType.java 46 /** {@code non-null;} instance corresponding to the class {@code Float} */
47 public static final CstType FLOAT = intern(Type.FLOAT_CLASS);
73 /** {@code non-null;} instance corresponding to the type {@code float[]} */
109 case Type.BT_FLOAT: return FLOAT;
  /dalvik/dx/src/com/android/dx/rop/cst/
CstType.java 46 /** {@code non-null;} instance corresponding to the class {@code Float} */
47 public static final CstType FLOAT = intern(Type.FLOAT_CLASS);
73 /** {@code non-null;} instance corresponding to the type {@code float[]} */
109 case Type.BT_FLOAT: return FLOAT;
  /external/chromium_org/third_party/webrtc/base/
flags.h 52 static FlagValue New_FLOAT(float f) {
74 enum Type { BOOL, INT, FLOAT, STRING };
100 assert(type_ == FLOAT);
121 assert(type_ == FLOAT);
177 DEFINE_FLAG(FLOAT, double, name, default, comment)
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstType.java 46 /** {@code non-null;} instance corresponding to the class {@code Float} */
47 public static final CstType FLOAT = intern(Type.FLOAT_CLASS);
73 /** {@code non-null;} instance corresponding to the type {@code float[]} */
109 case Type.BT_FLOAT: return FLOAT;
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
Type.java 75 * The sort of the <tt>float</tt> type. See {@link #getSort getSort}.
77 public static final int FLOAT = 6;
130 * The <tt>float</tt> type.
132 public static final Type FLOAT_TYPE = new Type(FLOAT);
243 } else if (c == Float.TYPE) {
389 * {@link #INT INT}, {@link #FLOAT FLOAT}, {@link #LONG LONG},
440 case FLOAT:
441 return "float";
534 case FLOAT:
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_exr.cpp 65 #undef FLOAT
66 #define FLOAT ((Imf::PixelType)2)
135 // the type HALF is converted to 32 bit float
186 m_type = (chcnt == uintcnt) ? UINT : FLOAT;
188 m_isfloat = (m_type == FLOAT);
214 buffer = (char *)new float[ m_width * 3 ];
334 UpSampleX( (float *)buffer, 3, xsample[0] );
336 UpSampleX( (float *)buffer + 4, 3, xsample[1] );
338 UpSampleX( (float *)buffer + 8, 3, xsample[2] );
340 RGBToGray( (float *)buffer, (float *)out )
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
StdTypeList.java 35 /** {@code non-null;} the list {@code [float]} */
36 public static final StdTypeList FLOAT = StdTypeList.make(Type.FLOAT);
60 /** {@code non-null;} the list {@code [float, float]} */
62 StdTypeList.make(Type.FLOAT, Type.FLOAT);
80 /** {@code non-null;} the list {@code [float, Object]} */
82 StdTypeList.make(Type.FLOAT, Type.OBJECT);
100 /** {@code non-null;} the list {@code [float[], int]} *
    [all...]
  /dalvik/dx/src/com/android/dx/rop/type/
StdTypeList.java 35 /** {@code non-null;} the list {@code [float]} */
36 public static final StdTypeList FLOAT = StdTypeList.make(Type.FLOAT);
60 /** {@code non-null;} the list {@code [float, float]} */
62 StdTypeList.make(Type.FLOAT, Type.FLOAT);
80 /** {@code non-null;} the list {@code [float, Object]} */
82 StdTypeList.make(Type.FLOAT, Type.OBJECT);
100 /** {@code non-null;} the list {@code [float[], int]} *
    [all...]
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
module.py 89 FLOAT = Kind('f')
116 FLOAT,
338 return kind.spec == FLOAT.spec
  /external/chromium_org/ui/views/bubble/
bubble_border.h 82 FLOAT = 17, // No arrow. Centered over the supplied rect.
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
StdTypeList.java 35 /** {@code non-null;} the list {@code [float]} */
36 public static final StdTypeList FLOAT = StdTypeList.make(Type.FLOAT);
60 /** {@code non-null;} the list {@code [float, float]} */
62 StdTypeList.make(Type.FLOAT, Type.FLOAT);
80 /** {@code non-null;} the list {@code [float, Object]} */
82 StdTypeList.make(Type.FLOAT, Type.OBJECT);
100 /** {@code non-null;} the list {@code [float[], int]} *
    [all...]
  /external/javassist/src/main/javassist/bytecode/
StackMap.java 83 public static final int FLOAT = 2;

Completed in 1116 milliseconds

1 2 3