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

1 2 3 4 5 6 7 8

  /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/skia/legacy/include/utils/
SkWGL.h 71 BOOL choosePixelFormat(HDC hdc, const int*, const FLOAT*, UINT, int*, UINT*) const;
73 BOOL getPixelFormatAttribfv(HDC hdc, int, int, UINT, const int*, FLOAT*) const;
78 typedef BOOL (WINAPI *ChoosePixelFormatProc)(HDC hdc, const int *, const FLOAT *, UINT, int *, UINT *);
80 typedef BOOL (WINAPI *GetPixelFormatAttribfvProc)(HDC hdc, int, int, UINT, const int*, 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/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnShader.cpp 46 float matrix[16];
50 m_context->vertexAttribPointer(m_positionLocation, 2, GraphicsContext3D::FLOAT, false, 0, vertexOffset);
54 m_context->vertexAttribPointer(m_klmLocation, 3, GraphicsContext3D::FLOAT, false, 0, klmOffset);
  /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/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/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;
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/format/
GLDataTypeSpec.java 45 } else if (type.contains("float") || type.contains("clampf")) { //$NON-NLS-1$ //$NON-NLS-2$
46 return Type.FLOAT;
  /external/clang/test/Modules/
macros.c 26 #ifdef FLOAT
27 # error FLOAT macro should not be visible
113 float f;
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
Type.java 13 FLOAT(0, "0f", ".floatValue()", "java.lang.Float", Float.TYPE),
67 return FLOAT;
  /external/webkit/Source/WebCore/platform/graphics/chromium/
GeometryBinding.cpp 45 float vertices[] = { -0.5f, 0.5f, 0.0f, 0.0f, 1.0f,
73 GLC(m_context, m_context->vertexAttribPointer(positionAttribLocation(), 3, GraphicsContext3D::FLOAT, false, 5 * sizeof(float), offset));
74 offset += 3 * sizeof(float);
75 GLC(m_context, m_context->vertexAttribPointer(texCoordAttribLocation(), 2, GraphicsContext3D::FLOAT, false, 5 * sizeof(float), offset));
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
Rops.java 45 /** {@code r,x: float :: r = x;} */
47 new Rop(RegOps.MOVE, Type.FLOAT, StdTypeList.FLOAT, "move-float");
77 /** {@code r,param(x): float :: r = param(x);} */
79 new Rop(RegOps.MOVE_PARAM, Type.FLOAT, StdTypeList.EMPTY,
80 "move-param-float");
100 /** {@code r, literal: float :: r = literal;} */
102 new Rop(RegOps.CONST, Type.FLOAT, StdTypeList.EMPTY, "const-float");
    [all...]

Completed in 660 milliseconds

1 2 3 4 5 6 7 8