Home
last modified time | relevance | path

Searched defs:f (Results 1 – 25 of 92) sorted by relevance

1234

/art/test/608-checker-unresolved-lse/src/
DMain.java45 Foo f = new Foo(); in instanceFieldTest() local
72 Foo f = new Foo(); in instanceFieldTest2() local
95 Foo f = new Foo(); in staticFieldTest() local
/art/test/003-omnibus-opcodes/src/
DFloatMath.java25 float f; in convTest() local
232 static float unopTest(float f) { in unopTest()
237 static int[] convI(long l, float f, double d, float zero) { in convI()
257 static long[] convL(int i, float f, double d, double zero) { in convL()
291 static double[] convD(int i, long l, float f) { in convD()
308 float f = 10.0f; // const/special in checkConsts() local
/art/tools/
Dstream-trace-converter.py29 def ReadShortLE(f): argument
38 def WriteShortLE(f, val): argument
43 def ReadIntLE(f): argument
58 def WriteIntLE(f, val): argument
/art/runtime/entrypoints/
Dmath_entrypoints.cc39 extern "C" int64_t art_f2l(float f) { in art_f2l()
47 extern "C" int32_t art_f2i(float f) { in art_f2i()
/art/test/528-long-hint/src/
DMain.java28 Main f = new Main(); in main() local
41 Field f = Unsafe.class.getDeclaredField("theUnsafe"); in getUnsafe() local
/art/runtime/base/
Dcasts.h49 inline To implicit_cast(From const &f) { in implicit_cast()
72 inline To down_cast(From* f) { // so we only accept pointers in down_cast()
/art/test/529-long-split/src/
DMain.java35 int f = myField1; // EBX in testOddLow1() local
77 int f = myField1; // EBX in testNonFollowingHigh() local
117 int f = myField1; // EBX in testOddLow2() local
/art/test/474-fp-sub-neg/src/
DMain.java19 float f = 0; in floatTest() local
59 float f=-0.0f; in bug_1() local
/art/test/439-swap-double/src/
DMain.java35 double a, double b, double c, double d, double e, double f, double g) { in callWithDoubles()
44 double f = 6.0; field in Main
/art/test/100-reflect2/src/
DMain.java25 private static float f = 3.14f; field in Main
31 Field f; in testFieldReflection() local
269 …private static void ZBCDFIJSV(boolean z, byte b, char c, double d, float f, int i, long l, short s… in ZBCDFIJSV()
273 …private static void ZBCDLFIJSV(boolean z, byte b, char c, double d, String string, float f, int i,… in ZBCDLFIJSV()
/art/test/454-get-vreg/src/
DMain.java21 int testSimpleVReg(int a, float f, short s, boolean z, byte b, char c) { in testSimpleVReg()
28 long f = doCall(); in testPairVReg() local
/art/test/027-arithmetic/src/
DMain.java58 long f = 0x66; in shiftTest2() local
70 float f; in convTest() local
/art/test/073-mismatched-field/src2/
DIMain.java18 static int f = 123; field
/art/test/073-mismatched-field/src/
DSuperMain.java18 public int f = 456; field in SuperMain
/art/runtime/
Ddex_instruction_visitor.h35 #define INSTRUCTION_CASE(o, cname, p, f, r, i, a, v) \ in Visit() argument
53 #define INSTRUCTION_VISITOR(o, cname, p, f, r, i, a, v) \ argument
/art/runtime/native/
Djava_lang_reflect_Field.cc61 ALWAYS_INLINE inline static bool GetFieldValue(mirror::Object* o, mirror::Field* f, in GetFieldValue()
106 jobject j_rcvr, mirror::Field** f, in CheckReceiver()
135 mirror::Field* f = soa.Decode<mirror::Field*>(javaField); in Field_get() local
161 mirror::Field* f = soa.Decode<mirror::Field*>(javaField); in GetPrimitiveField() local
232 ALWAYS_INLINE inline static void SetFieldValue(mirror::Object* o, mirror::Field* f, in SetFieldValue()
305 mirror::Field* f = soa.Decode<mirror::Field*>(javaField); in Field_set() local
341 mirror::Field* f = soa.Decode<mirror::Field*>(javaField); in SetPrimitiveField() local
394 static void Field_setFloat(JNIEnv* env, jobject javaField, jobject javaObj, jfloat f) { in Field_setFloat()
/art/test/962-iface-static/src/
DIface.java17 public static final Displayer f = new Displayer(); field
/art/test/484-checker-register-hints/src/
DMain.java45 int f = live2; in test1() local
80 int f = live2; in test2() local
117 int f = live2; in test3() local
/art/test/ExceptionHandle/
DExceptionHandle.java20 int f() throws Exception { in f() method in ExceptionHandle
/art/test/405-optimizing-long-allocator/src/
DMain.java92 long f = 0; in $opt$TestMultipleLive() local
135 …public static long $opt$TestAgressiveLive1(long a, long b, long c, long d, long e, long f, long g)… in $opt$TestAgressiveLive1()
156 …public static long $opt$TestAgressiveLive2(long a, long b, long c, long d, long e, long f, long g)… in $opt$TestAgressiveLive2()
/art/test/404-optimizing-allocator/src/
DMain.java86 int f = 0; in $opt$reg$TestMultipleLive() local
129 public static int $opt$reg$TestAgressiveLive1(int a, int b, int c, int d, int e, int f, int g) { in $opt$reg$TestAgressiveLive1()
150 public static int $opt$reg$TestAgressiveLive2(int a, int b, int c, int d, int e, int f, int g) { in $opt$reg$TestAgressiveLive2()
/art/test/497-inlining-and-class-loader/src/
DMain.java28 Field f = baseDexClassLoader.getDeclaredField("pathList"); in MyClassLoader() local
108 Field f = Class.class.getDeclaredField("dexCache"); in $noinline$bar() local
/art/test/562-bce-preheader/src/
DMain.java26 float f = 0; in doit() local
50 float f = 0; in foo() local
/art/test/440-stmp/src/
DMain.java27 public static void baz(float a, float b, float c, float d, float e, float f, float g, in baz()
37 float f = 6.0f; field in Main
/art/test/017-float/src/
DMain.java22 float f = 3.1415926535f; in float_017() local

1234