Home
last modified time | relevance | path

Searched defs:v (Results 1 – 25 of 32) sorted by relevance

12

/art/test/551-checker-shifter-operand/src/
DMain.java53 static char $noinline$byteToChar (byte v) { if (doThrow) throw new Error(); return (char)v; } in $noinline$byteToChar()
54 static short $noinline$byteToShort (byte v) { if (doThrow) throw new Error(); return (short)v; } in $noinline$byteToShort()
55 static int $noinline$byteToInt (byte v) { if (doThrow) throw new Error(); return (int)v; } in $noinline$byteToInt()
56 static long $noinline$byteToLong (byte v) { if (doThrow) throw new Error(); return (long)v; } in $noinline$byteToLong()
57 static byte $noinline$charToByte (char v) { if (doThrow) throw new Error(); return (byte)v; } in $noinline$charToByte()
58 static short $noinline$charToShort (char v) { if (doThrow) throw new Error(); return (short)v; } in $noinline$charToShort()
59 static int $noinline$charToInt (char v) { if (doThrow) throw new Error(); return (int)v; } in $noinline$charToInt()
60 static long $noinline$charToLong (char v) { if (doThrow) throw new Error(); return (long)v; } in $noinline$charToLong()
61 static byte $noinline$shortToByte (short v) { if (doThrow) throw new Error(); return (byte)v; } in $noinline$shortToByte()
62 static char $noinline$shortToChar (short v) { if (doThrow) throw new Error(); return (char)v; } in $noinline$shortToChar()
[all …]
/art/runtime/
Dsafe_map.h91 iterator Put(const K& k, const V& v) { in Put()
96 iterator Put(const K& k, V&& v) { in Put()
103 iterator PutBefore(const_iterator pos, const K& k, const V& v) { in PutBefore()
109 iterator PutBefore(const_iterator pos, const K& k, V&& v) { in PutBefore()
119 iterator Overwrite(const K& k, const V& v) { in Overwrite()
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
Ddex_instruction.cc31 #define INSTRUCTION_NAME(o, c, pname, f, r, i, a, v) pname, argument
39 #define INSTRUCTION_FORMAT(o, c, p, format, r, i, a, v) format, argument
47 #define INSTRUCTION_INDEX_TYPE(o, c, p, f, r, index, a, v) index, argument
55 #define INSTRUCTION_FLAGS(o, c, p, f, r, i, flags, v) flags, argument
71 #define INSTRUCTION_SIZE(opcode, c, p, format, r, i, a, v) \ argument
Djni_internal.cc1237 mirror::Object* v = soa.Decode<mirror::Object*>(java_value); in SetObjectField() local
1245 mirror::Object* v = soa.Decode<mirror::Object*>(java_value); in SetStaticObjectField() local
1342 static void SetBooleanField(JNIEnv* env, jobject obj, jfieldID fid, jboolean v) { in SetBooleanField()
1346 static void SetByteField(JNIEnv* env, jobject obj, jfieldID fid, jbyte v) { in SetByteField()
1350 static void SetCharField(JNIEnv* env, jobject obj, jfieldID fid, jchar v) { in SetCharField()
1354 static void SetFloatField(JNIEnv* env, jobject obj, jfieldID fid, jfloat v) { in SetFloatField()
1358 static void SetDoubleField(JNIEnv* env, jobject obj, jfieldID fid, jdouble v) { in SetDoubleField()
1362 static void SetIntField(JNIEnv* env, jobject obj, jfieldID fid, jint v) { in SetIntField()
1366 static void SetLongField(JNIEnv* env, jobject obj, jfieldID fid, jlong v) { in SetLongField()
1370 static void SetShortField(JNIEnv* env, jobject obj, jfieldID fid, jshort v) { in SetShortField()
[all …]
Dart_method.h761 auto v = *reinterpret_cast<const uint64_t*>(addr); in GetNativePointer() local
Ddex_instruction.h83 #define INSTRUCTION_ENUM(opcode, cname, p, f, r, i, a, v) cname = opcode, argument
/art/runtime/base/
Dstl_util.h29 void STLSortAndRemoveDuplicates(T* v) { in STLSortAndRemoveDuplicates()
76 void STLDeleteValues(T *v) { in STLDeleteValues()
86 std::string ToString(const T& v) { in ToString()
/art/test/068-classloader/src-ex/
DMutator.java22 public static void mutate(int v) { in mutate()
/art/test/587-inline-class-error/src/
DMain.java22 Class<?> v = Class.forName("VerifyError"); in main() local
/art/compiler/utils/x86_64/
Dassembler_x86_64.h821 size_t AddDouble(double v) { return constant_area_.AddDouble(v); } in AddDouble()
825 size_t AddFloat(float v) { return constant_area_.AddFloat(v); } in AddFloat()
829 size_t AddInt32(int32_t v) { in AddInt32()
835 size_t AppendInt32(int32_t v) { in AppendInt32()
841 size_t AddInt64(int64_t v) { return constant_area_.AddInt64(v); } in AddInt64()
/art/compiler/utils/x86/
Dassembler_x86.h764 size_t AddDouble(double v) { return constant_area_.AddDouble(v); } in AddDouble()
768 size_t AddFloat(float v) { return constant_area_.AddFloat(v); } in AddFloat()
772 size_t AddInt32(int32_t v) { in AddInt32()
778 size_t AppendInt32(int32_t v) { in AppendInt32()
784 size_t AddInt64(int64_t v) { return constant_area_.AddInt64(v); } in AddInt64()
Dassembler_x86.cc2413 size_t ConstantArea::AppendInt32(int32_t v) { in AppendInt32()
2419 size_t ConstantArea::AddInt32(int32_t v) { in AddInt32()
2430 size_t ConstantArea::AddInt64(int64_t v) { in AddInt64()
2449 size_t ConstantArea::AddDouble(double v) { in AddDouble()
2454 size_t ConstantArea::AddFloat(float v) { in AddFloat()
/art/compiler/utils/
Darray_ref.h83 explicit ArrayRef(Vector& v) in ArrayRef()
92 explicit ArrayRef(const Vector& v) in ArrayRef()
Dswap_space_test.cc42 SwapVector<int32_t> v(alloc); in SwapTest() local
/art/test/080-oom-throw-with-finalizer/src/
DMain.java48 Vector v = new Vector(); in triggerInstanceFinalizerOOM() local
/art/compiler/optimizing/
Dinduction_var_range.cc64 static InductionVarRange::Value SimplifyMax(InductionVarRange::Value v) { in SimplifyMax()
79 static InductionVarRange::Value CorrectForType(InductionVarRange::Value v, Primitive::Type type) { in CorrectForType()
99 static bool IsConstantValue(InductionVarRange::Value v) { in IsConstantValue()
583 InductionVarRange::Value InductionVarRange::RefineOuter(Value v, bool is_min) const { in RefineOuter()
Dcode_generator_x86_64.cc2760 int32_t v = in.GetConstant()->AsIntConstant()->GetValue(); in VisitTypeConversion() local
2774 int64_t v = in.GetConstant()->AsLongConstant()->GetValue(); in VisitTypeConversion() local
2788 double v = in.GetConstant()->AsDoubleConstant()->GetValue(); in VisitTypeConversion() local
2815 int32_t v = in.GetConstant()->AsIntConstant()->GetValue(); in VisitTypeConversion() local
2829 int64_t v = in.GetConstant()->AsLongConstant()->GetValue(); in VisitTypeConversion() local
2843 float v = in.GetConstant()->AsFloatConstant()->GetValue(); in VisitTypeConversion() local
4262 int8_t v = CodeGenerator::GetInt32ValueOf(value.GetConstant()); in HandleFieldSet() local
4273 int16_t v = CodeGenerator::GetInt32ValueOf(value.GetConstant()); in HandleFieldSet() local
4284 int32_t v = CodeGenerator::GetInt32ValueOf(value.GetConstant()); in HandleFieldSet() local
4305 int64_t v = value.GetConstant()->AsLongConstant()->GetValue(); in HandleFieldSet() local
[all …]
Dcode_generator_x86.cc4764 int16_t v = CodeGenerator::GetInt32ValueOf(value.GetConstant()); in HandleFieldSet() local
4784 int32_t v = CodeGenerator::GetInt32ValueOf(value.GetConstant()); in HandleFieldSet() local
4803 int64_t v = CodeGenerator::GetInt64ValueOf(value.GetConstant()); in HandleFieldSet() local
4818 int32_t v = CodeGenerator::GetInt32ValueOf(value.GetConstant()); in HandleFieldSet() local
4828 int64_t v = CodeGenerator::GetInt64ValueOf(value.GetConstant()); in HandleFieldSet() local
5408 int32_t v = CodeGenerator::GetInt32ValueOf(value.GetConstant()); in VisitArraySet() local
5459 int32_t v = bit_cast<int32_t, float>(value.GetConstant()->AsFloatConstant()->GetValue()); in VisitArraySet() local
5479 int64_t v = bit_cast<int64_t, double>(value.GetConstant()->AsDoubleConstant()->GetValue()); in VisitArraySet() local
7308 Address CodeGeneratorX86::LiteralDoubleAddress(double v, Register reg) { in LiteralDoubleAddress()
7313 Address CodeGeneratorX86::LiteralFloatAddress(float v, Register reg) { in LiteralFloatAddress()
[all …]
/art/runtime/mirror/
Dobject.h534 int64_t v = GetField64<kVerifyFlags, kIsVolatile>(field_offset); in GetFieldPtrWithSize() local
/art/runtime/interpreter/
Dinterpreter_goto_table_impl.cc166 #define INSTRUCTION_HANDLER(o, code, n, f, r, i, a, v) &&op_##code, in ExecuteGotoImpl() argument
173 #define INSTRUCTION_HANDLER(o, code, n, f, r, i, a, v) &&alt_op_##code, in ExecuteGotoImpl() argument
2600 #define INSTRUMENTATION_INSTRUCTION_HANDLER(o, code, n, f, r, i, a, v) \ in ExecuteGotoImpl() argument
/art/test/068-classloader/src/
DMain.java137 private static void runMutator(Class c, int v) throws Exception { in runMutator()
/art/test/968-default-partial-compile-generated/util-src/
Dgenerate_smali.py429 def get_specific_version(self, v): argument
/art/test/971-iface-super/util-src/
Dgenerate_smali.py491 def get_specific_version(self, v): argument
/art/test/530-checker-loops2/src/
DMain.java752 int[] v, in dynamicBCEAndConstantIndicesAllPrimTypes()

12