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

1 2 3 4 5 6 78 91011

  /prebuilts/devtools/tools/lib/
rule-api.jar 
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
GraphicsContext3D.h 202 FLOAT = 0x1406,
    [all...]
GraphicsContext3D.cpp 727 case GraphicsContext3D::FLOAT: // OES_texture_float
    [all...]
GraphicsContext3DImagePacking.cpp 95 case GraphicsContext3D::FLOAT: // OES_texture_float
122 // Following Float to Half-Float converion code is from the implementation of ftp://www.fox-toolkit.org/pub/fasthalffloatconversion.pdf,
123 // "Fast Half Float Conversions" by Jeroen van der Zijp, November 2008 (Revised September 2010).
238 unsigned short convertFloatToHalfFloat(float f)
431 template<> void unpack<GraphicsContext3D::DataFormatRGBA8, uint8_t, float>(const uint8_t* source, float* destination, unsigned pixelsPerRow)
433 const float scaleFactor = 1.0f / 255.0f;
444 template<> void unpack<GraphicsContext3D::DataFormatBGRA8, uint8_t, float>(const uint8_t* source, float* destination, unsigned pixelsPerRow
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
nvc0_vbo.c 191 mode = VTX_ATTR(a, 4, FLOAT, 32);
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java 366 case FLOAT:
367 generator.print(((Float) value).toString());
811 * If the next token is a float, consume it and return its value.
814 public float consumeFloat() throws ParseException {
816 // Float.parseFloat() does not accept "inf", "infinity", or "nan".
820 return negative ? Float.NEGATIVE_INFINITY : Float.POSITIVE_INFINITY;
824 return Float.NaN;
827 final float result = Float.parseFloat(currentToken)
    [all...]
  /external/dexmaker/lib/
jarjar.jar 
  /external/dexmaker/src/main/java/com/google/dexmaker/stock/
ProxyBuilder.java 697 PRIMITIVE_TO_BOXED.put(float.class, Float.class);
    [all...]
  /external/javassist/src/main/javassist/compiler/
MemberCodeGen.java 359 case FLOAT :
    [all...]
TypeChecker.java 463 else if (value instanceof Double || value instanceof Float) {
    [all...]
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
BinaryOutputCapsule.java 118 public void write(float value, String name, float defVal)
122 writeAlias(name, BinaryClassField.FLOAT);
126 public void write(float[] value, String name, float[] defVal)
134 public void write(float[][] value, String name, float[][] defVal)
499 // float primitive
501 protected void write(float value) throws IOException {
505 protected void writeForBuffer(float value) throws IOException
    [all...]
BinaryInputCapsule.java 130 case BinaryClassField.FLOAT: {
358 public float readFloat(String name, float defVal) throws IOException {
362 return ((Float) fieldData.get(field.alias)).floatValue();
365 public float[] readFloatArray(String name, float[] defVal)
370 return (float[]) fieldData.get(field.alias);
373 public float[][] readFloatArray2D(String name, float[][] defVal)
378 return (float[][]) fieldData.get(field.alias)
    [all...]
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_vbo.c 191 mode = VTX_ATTR(a, 4, FLOAT, 32);
  /external/protobuf/src/google/protobuf/
text_format.cc 35 #include <float.h>
381 SET_FIELD(Float, static_cast<float>(value));
554 // We have found a float value for the double.
    [all...]
  /prebuilts/misc/common/jarjar/
jarjar-1.4.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jar 
org.eclipse.osgi.services_3.2.100.v20100503.jar 
org.objectweb.asm_3.2.0.v200909071300.jar 
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLRenderingContext.idl 38 typedef /*unrestricted*/ float GLfloat;
39 typedef /*unrestricted*/ float GLclampf;
237 const GLenum FLOAT = 0x1406;
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
parse.y 762 term(A) ::= INTEGER|FLOAT|BLOB(X). {spanExpr(&A, pParse, @X, &X);}
    [all...]
  /external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java 442 testReturnType(float.class, 5.0f);
567 Method intToFloat = numericCastingMethod(int.class, float.class);
579 Method longToFloat = numericCastingMethod(long.class, float.class);
593 Method floatToInt = numericCastingMethod(float.class, int.class);
598 assertEquals(Integer.MIN_VALUE, floatToInt.invoke(null, Float.NEGATIVE_INFINITY));
599 assertEquals(0, floatToInt.invoke(null, Float.NaN));
601 Method floatToLong = numericCastingMethod(float.class, long.class);
606 assertEquals(Long.MIN_VALUE, floatToLong.invoke(null, Float.NEGATIVE_INFINITY));
607 assertEquals(0L, floatToLong.invoke(null, Float.NaN));
627 Method floatToDouble = numericCastingMethod(float.class, double.class)
    [all...]
  /prebuilts/tools/common/asm-tools/
asm-debug-all-4.0.jar 
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
text_format.cc 35 #include <float.h>
572 SET_FIELD(Float, static_cast<float>(value));
690 // TYPE_IDENTIFIER after a '-' should be one of the float values listed
699 ReportError("Invalid float number: " + text);
816 // We have found a float value for the double.
    [all...]
  /cts/tools/dasm/src/dasm/
DAsm.java     [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCResultSet.java 479 public float getFloat(int columnIndex) throws SQLException {
480 Float f = internalGetFloat(columnIndex);
487 private Float internalGetFloat(int columnIndex) throws SQLException {
494 return Float.valueOf(lastg);
501 public float getFloat(String columnName) throws SQLException {
647 case Types.FLOAT:
1045 public void updateFloat(int colIndex, float f) throws SQLException {
1051 rowbuf[colIndex - 1] = Float.toString(f);
1172 public void updateFloat(String colName, float f) throws SQLException {
    [all...]

Completed in 1393 milliseconds

1 2 3 4 5 6 78 91011