HomeSort by relevance Sort by last modified time
    Searched full:float_to_int (Results 1 - 25 of 48) sorted by null

1 2

  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/float_to_int/
Test_float_to_int.java 17 package dot.junit.opcodes.float_to_int;
21 import dot.junit.opcodes.float_to_int.d.T_float_to_int_1;
22 import dot.junit.opcodes.float_to_int.d.T_float_to_int_5;
104 load("dot.junit.opcodes.float_to_int.d.T_float_to_int_2", VerifyError.class);
113 load("dot.junit.opcodes.float_to_int.d.T_float_to_int_3", VerifyError.class);
122 load("dot.junit.opcodes.float_to_int.d.T_float_to_int_4", VerifyError.class);
130 load("dot.junit.opcodes.float_to_int.d.T_float_to_int_6", VerifyError.class);
139 load("dot.junit.opcodes.float_to_int.d.T_float_to_int_5", VerifyError.class);
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/float_to_int/d/
T_float_to_int_1.java 17 package dot.junit.opcodes.float_to_int.d;
T_float_to_int_5.java 17 package dot.junit.opcodes.float_to_int.d;
T_float_to_int_1.d 16 .class public dot.junit.opcodes.float_to_int.d.T_float_to_int_1
T_float_to_int_2.d 16 .class public dot.junit.opcodes.float_to_int.d.T_float_to_int_2
T_float_to_int_3.d 16 .class public dot.junit.opcodes.float_to_int.d.T_float_to_int_3
T_float_to_int_4.d 16 .class public dot.junit.opcodes.float_to_int.d.T_float_to_int_4
T_float_to_int_5.d 16 .class public dot.junit.opcodes.float_to_int.d.T_float_to_int_5
T_float_to_int_6.d 16 .class public dot.junit.opcodes.float_to_int.d.T_float_to_int_6
  /external/mesa3d/src/mesa/main/
light.c 383 params[0] = FLOAT_TO_INT(ctx->Light.Light[l].Ambient[0]);
384 params[1] = FLOAT_TO_INT(ctx->Light.Light[l].Ambient[1]);
385 params[2] = FLOAT_TO_INT(ctx->Light.Light[l].Ambient[2]);
386 params[3] = FLOAT_TO_INT(ctx->Light.Light[l].Ambient[3]);
389 params[0] = FLOAT_TO_INT(ctx->Light.Light[l].Diffuse[0]);
390 params[1] = FLOAT_TO_INT(ctx->Light.Light[l].Diffuse[1]);
391 params[2] = FLOAT_TO_INT(ctx->Light.Light[l].Diffuse[2]);
392 params[3] = FLOAT_TO_INT(ctx->Light.Light[l].Diffuse[3]);
395 params[0] = FLOAT_TO_INT(ctx->Light.Light[l].Specular[0]);
396 params[1] = FLOAT_TO_INT(ctx->Light.Light[l].Specular[1])
    [all...]
texenv.c 715 params[0] = FLOAT_TO_INT( texUnit->EnvColor[0] );
716 params[1] = FLOAT_TO_INT( texUnit->EnvColor[1] );
717 params[2] = FLOAT_TO_INT( texUnit->EnvColor[2] );
718 params[3] = FLOAT_TO_INT( texUnit->EnvColor[3] );
get.c     [all...]
samplerobj.c     [all...]
macros.h 106 #define FLOAT_TO_INT(X) ( (((GLint) (4294967294.0 * (X))) - 1) / 2 )
109 #define FLOAT_TO_INT(X) ( (GLint) (2147483647.0 * (X)) )
texparam.c     [all...]
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
Opcode.java 155 FLOAT_TO_INT,
  /art/tools/dexfuzz/src/dexfuzz/program/mutators/
ConversionRepeater.java 132 oppositeOpcode = Opcode.FLOAT_TO_INT;
146 case FLOAT_TO_INT:
ValuePrinter.java 236 || opcode == Opcode.LONG_TO_INT || opcode == Opcode.FLOAT_TO_INT
  /external/smali/dexlib2/src/main/ragel/
Opcodes.rl 127 define float_to_int 135
  /art/runtime/arch/mips64/
entrypoints_init_mips64.cc 72 extern "C" int32_t __fixsfsi(float op1); // FLOAT_TO_INT
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
Dops.java 577 public static final Dop FLOAT_TO_INT =
578 new Dop(DalvOps.FLOAT_TO_INT, DalvOps.FLOAT_TO_INT,
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
Dops.java 572 public static final Dop FLOAT_TO_INT =
573 new Dop(Opcodes.FLOAT_TO_INT, Opcodes.FLOAT_TO_INT,
    [all...]
RopToDop.java 164 // Opcodes.FLOAT_TO_INT
361 MAP.put(Rops.CONV_F2I, Dops.FLOAT_TO_INT);
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
p7-cxx11-nowarn.cpp 47 void float_to_int() { function
  /dalvik/dx/src/com/android/dx/io/
OpcodeInfo.java 566 public static final Info FLOAT_TO_INT =
567 new Info(Opcodes.FLOAT_TO_INT, "float-to-int",
    [all...]

Completed in 432 milliseconds

1 2