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

1 2 3 4 5 6 7 8 91011

  /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
  /libcore/luni/src/main/java/libcore/io/
SizeOf.java 22 public static final int FLOAT = 4;
  /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/javassist/src/main/javassist/bytecode/stackmap/
TypeTag.java 23 TypeData FLOAT = new TypeData.BasicType("float", StackMapTable.FLOAT);
  /libcore/luni/src/main/java/java/nio/
ByteBufferAsFloatBuffer.java 22 * This class wraps a byte buffer to be a float buffer.
44 super(byteBuffer.capacity() / SizeOf.FLOAT);
65 byteBuffer.limit(limit * SizeOf.FLOAT);
66 byteBuffer.position(position * SizeOf.FLOAT);
86 public float get() {
90 return byteBuffer.getFloat(position++ * SizeOf.FLOAT);
94 public float get(int index) {
96 return byteBuffer.getFloat(index * SizeOf.FLOAT);
100 public FloatBuffer get(float[] dst, int dstOffset, int floatCount) {
101 byteBuffer.limit(limit * SizeOf.FLOAT);
    [all...]
  /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/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...]
  /external/chromium_org/third_party/skia/include/utils/
SkWGL.h 73 BOOL choosePixelFormat(HDC hdc, const int*, const FLOAT*, UINT, int*, UINT*) const;
75 BOOL getPixelFormatAttribfv(HDC hdc, int, int, UINT, const int*, FLOAT*) const;
97 typedef BOOL (WINAPI *ChoosePixelFormatProc)(HDC hdc, const int *, const FLOAT *, UINT, int *, UINT *);
99 typedef BOOL (WINAPI *GetPixelFormatAttribfvProc)(HDC hdc, int, int, UINT, const int*, FLOAT*);
  /external/skia/include/utils/
SkWGL.h 73 BOOL choosePixelFormat(HDC hdc, const int*, const FLOAT*, UINT, int*, UINT*) const;
75 BOOL getPixelFormatAttribfv(HDC hdc, int, int, UINT, const int*, FLOAT*) const;
97 typedef BOOL (WINAPI *ChoosePixelFormatProc)(HDC hdc, const int *, const FLOAT *, UINT, int *, UINT *);
99 typedef BOOL (WINAPI *GetPixelFormatAttribfvProc)(HDC hdc, int, int, UINT, const int*, FLOAT*);
  /libcore/luni/src/main/java/java/sql/
Types.java 99 * The type code that identifies the SQL type {@code FLOAT}.
101 public static final int FLOAT = 6;
  /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/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format_pack.py 68 elif channel.type == FLOAT:
72 print ' float %s;' % (channel.name)
86 elif channel.type == FLOAT:
90 print ' float %s;' % (channel.name)
122 if channel.type not in (VOID, UNSIGNED, SIGNED, FLOAT, FIXED):
124 if channel.type == FLOAT and channel.size not in (16, 32, 64):
169 elif channel.type == FLOAT:
173 return 'float'
200 if type.type == 'FLOAT':
215 if type.type == FLOAT
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_pack.py 68 elif channel.type == FLOAT:
72 print ' float %s;' % (channel.name)
86 elif channel.type == FLOAT:
90 print ' float %s;' % (channel.name)
122 if channel.type not in (VOID, UNSIGNED, SIGNED, FLOAT, FIXED):
124 if channel.type == FLOAT and channel.size not in (16, 32, 64):
169 elif channel.type == FLOAT:
173 return 'float'
200 if type.type == 'FLOAT':
215 if type.type == FLOAT
    [all...]
  /external/chromium_org/ui/views/bubble/
bubble_border_unittest.cc 47 EXPECT_EQ(BubbleBorder::FLOAT,
48 BubbleBorder::horizontal_mirror(BubbleBorder::FLOAT));
83 EXPECT_EQ(BubbleBorder::FLOAT,
84 BubbleBorder::vertical_mirror(BubbleBorder::FLOAT));
107 EXPECT_FALSE(BubbleBorder::has_arrow(BubbleBorder::FLOAT));
130 EXPECT_FALSE(BubbleBorder::is_arrow_on_left(BubbleBorder::FLOAT));
153 EXPECT_FALSE(BubbleBorder::is_arrow_on_top(BubbleBorder::FLOAT));
179 EXPECT_FALSE(BubbleBorder::is_arrow_on_horizontal(BubbleBorder::FLOAT));
202 EXPECT_FALSE(BubbleBorder::is_arrow_at_center(BubbleBorder::FLOAT));
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
WireFormat.java 80 FLOAT(0F),
109 FLOAT (JavaType.FLOAT , WIRETYPE_FIXED32 ),
  /external/protobuf/java/src/main/java/com/google/protobuf/
WireFormat.java 80 FLOAT(0F),
109 FLOAT (JavaType.FLOAT , WIRETYPE_FIXED32 ),
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstFloat.java 28 public static final CstFloat VALUE_0 = make(Float.floatToIntBits(0.0f));
31 public static final CstFloat VALUE_1 = make(Float.floatToIntBits(1.0f));
34 public static final CstFloat VALUE_2 = make(Float.floatToIntBits(2.0f));
40 * @param bits the {@code float} value as {@code int} bits
53 * @param bits the {@code float} value as {@code int} bits
63 return "float{0x" + Hex.u4(bits) + " / " +
64 Float.intBitsToFloat(bits) + '}';
69 return Type.FLOAT;
75 return "float";
80 return Float.toString(Float.intBitsToFloat(getIntBits()))
    [all...]
  /dalvik/dx/src/com/android/dx/rop/cst/
CstFloat.java 28 public static final CstFloat VALUE_0 = make(Float.floatToIntBits(0.0f));
31 public static final CstFloat VALUE_1 = make(Float.floatToIntBits(1.0f));
34 public static final CstFloat VALUE_2 = make(Float.floatToIntBits(2.0f));
40 * @param bits the {@code float} value as {@code int} bits
53 * @param bits the {@code float} value as {@code int} bits
63 return "float{0x" + Hex.u4(bits) + " / " +
64 Float.intBitsToFloat(bits) + '}';
69 return Type.FLOAT;
75 return "float";
80 return Float.toString(Float.intBitsToFloat(getIntBits()))
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
flags.h 64 static FlagValue New_FLOAT(float f) {
86 enum Type { BOOL, INT, FLOAT, STRING };
112 assert(type_ == FLOAT);
133 assert(type_ == FLOAT);
189 DEFINE_FLAG(FLOAT, double, name, default, comment)
  /external/chromium_org/third_party/libjingle/source/talk/base/
flags.h 67 static FlagValue New_FLOAT(float f) {
89 enum Type { BOOL, INT, FLOAT, STRING };
115 assert(type_ == FLOAT);
136 assert(type_ == FLOAT);
192 DEFINE_FLAG(FLOAT, double, name, default, comment)
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstFloat.java 28 public static final CstFloat VALUE_0 = make(Float.floatToIntBits(0.0f));
31 public static final CstFloat VALUE_1 = make(Float.floatToIntBits(1.0f));
34 public static final CstFloat VALUE_2 = make(Float.floatToIntBits(2.0f));
40 * @param bits the {@code float} value as {@code int} bits
53 * @param bits the {@code float} value as {@code int} bits
63 return "float{0x" + Hex.u4(bits) + " / " +
64 Float.intBitsToFloat(bits) + '}';
69 return Type.FLOAT;
75 return "float";
80 return Float.toString(Float.intBitsToFloat(getIntBits()))
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Executor.java 95 frame.push(Type.FLOAT);
120 evalLoad(Type.FLOAT, iter.byteAt(pos + 1), frame, subroutine);
144 evalLoad(Type.FLOAT, opcode - FLOAD_0, frame, subroutine);
165 evalArrayLoad(Type.FLOAT, frame);
185 evalStore(Type.FLOAT, iter.byteAt(pos + 1), frame, subroutine);
209 evalStore(Type.FLOAT, opcode - FSTORE_0, frame, subroutine);
230 evalArrayStore(Type.FLOAT, frame);
313 evalBinaryMath(Type.FLOAT, frame);
325 evalBinaryMath(Type.FLOAT, frame);
337 evalBinaryMath(Type.FLOAT, frame)
    [all...]
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
BinaryClassField.java 45 public static final byte FLOAT = 20;

Completed in 1168 milliseconds

1 2 3 4 5 6 7 8 91011