Home
last modified time | relevance | path

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

1234

/art/test/003-omnibus-opcodes/src/
DFloatMath.java25 float f; in convTest() local
194 static float unopTest(float f) { in unopTest()
199 static int[] convI(long l, float f, double d, float zero) { in convI()
219 static long[] convL(int i, float f, double d, double zero) { in convL()
254 static double[] convD(int i, long l, float f) { in convD()
272 float f = 10.0f; // const/special in checkConsts() local
/art/runtime/base/
Dcasts.h48 inline To implicit_cast(From const &f) { in implicit_cast()
71 inline To down_cast(From* f) { // so we only accept pointers in down_cast()
/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/test/100-reflect2/src/
DMain.java25 private static float f = 3.14f; field in Main
31 Field f; in testFieldReflection() local
251 …private static void ZBCDFIJSV(boolean z, byte b, char c, double d, float f, int i, long l, short s… in ZBCDFIJSV()
255 …private static void ZBCDLFIJSV(boolean z, byte b, char c, double d, String string, float f, int i,… in ZBCDLFIJSV()
/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/450-checker-types/src/
DMain.java19 void f(); in f() method
23 public void f() { in f() method in Super
29 public void f() { in f() method in SubclassA
46 public void f() { in f() method in SubclassB
/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/484-checker-register-hints/src/
DMain.java37 int f = live2; in test1() local
72 int f = live2; in test2() local
108 int f = live2; in test3() local
/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/src/
DSuperMain.java18 public int f = 456; field in SuperMain
/art/test/073-mismatched-field/src2/
DIMain.java18 static int f = 123; field
/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/arch/
Dstub_test.cc1558 static void GetSetBooleanStatic(ArtField* f, Thread* self, in GetSetBooleanStatic()
1589 static void GetSetByteStatic(ArtField* f, Thread* self, ArtMethod* referrer, in GetSetByteStatic()
1620 static void GetSetBooleanInstance(Handle<mirror::Object>* obj, ArtField* f, Thread* self, in GetSetBooleanInstance()
1655 static void GetSetByteInstance(Handle<mirror::Object>* obj, ArtField* f, in GetSetByteInstance()
1690 static void GetSetCharStatic(ArtField* f, Thread* self, ArtMethod* referrer, in GetSetCharStatic()
1720 static void GetSetShortStatic(ArtField* f, Thread* self, in GetSetShortStatic()
1751 static void GetSetCharInstance(Handle<mirror::Object>* obj, ArtField* f, in GetSetCharInstance()
1785 static void GetSetShortInstance(Handle<mirror::Object>* obj, ArtField* f, in GetSetShortInstance()
1820 static void GetSet32Static(ArtField* f, Thread* self, ArtMethod* referrer, in GetSet32Static()
1856 static void GetSet32Instance(Handle<mirror::Object>* obj, ArtField* f, in GetSet32Instance()
[all …]
/art/test/ExceptionHandle/
DExceptionHandle.java20 int f() throws Exception { in f() method in ExceptionHandle
/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/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/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
/art/test/012-math/src/
DMain.java76 double f, g, fres; in math_012() local
102 public static void math_012_numerator(int a, int b, int d, int e, int f) { in math_012_numerator()
/art/compiler/
Dcfi_test.h37 void GenerateExpected(FILE* f, InstructionSet isa, const char* isa_str, in GenerateExpected()
135 static void HexDump(FILE* f, const std::vector<uint8_t>& data) { in HexDump()
/art/test/468-checker-bool-simplifier-regression/src/
DMain.java37 Field f = c.getField("value"); in runTest() local
/art/test/006-args/src/
DArgsTest.java33 void argTest(int a, char c, double d, long j, float f) { in argTest()

1234