Home
last modified time | relevance | path

Searched refs:IsUint (Results 1 – 9 of 9) sorted by relevance

/art/compiler/dex/
Ddex_to_dex_compiler.cc215 if (fast_path && !is_volatile && IsUint(16, field_offset.Int32Value())) { in CompileInstanceFieldAccess()
251 if (vtable_idx >= 0 && IsUint(16, vtable_idx)) { in CompileInvokeVirtual()
/art/runtime/
Dutils.h122 static inline bool IsUint(int N, word value) { in IsUint() function
133 return IsUint(N, value); in IsAbsoluteUint()
Ddex_file.cc1165 CHECK(IsUint(16, jval_.i)); in Next()
Dclass_linker.cc4788 if (!IsUint(16, count)) { in LinkMethods()
5009 if (!IsUint(16, actual_count)) { in LinkVirtualMethods()
5025 if (!IsUint(16, num_virtual_methods)) { in LinkVirtualMethods()
/art/compiler/utils/x86/
Dassembler_x86.h39 bool is_uint8() const { return IsUint(8, value_); } in is_uint8()
40 bool is_uint16() const { return IsUint(16, value_); } in is_uint16()
/art/compiler/utils/x86_64/
Dassembler_x86_64.h46 bool is_uint8() const { return IsUint(8, value_); } in is_uint8()
47 bool is_uint16() const { return IsUint(16, value_); } in is_uint16()
/art/compiler/dex/quick/mips/
Dutility_mips.cc55 return ((value == 0) || IsUint(16, value) || ((value < 0) && (value >= -32768))); in InexpensiveConstantInt()
/art/compiler/utils/arm/
Dassembler_thumb2.cc1934 CHECK(IsUint(8, imm8)) << imm8; in svc()
1943 CHECK(IsUint(8, imm8)) << imm8; in bkpt()
Dassembler_arm32.cc1146 CHECK(IsUint(24, imm24)) << imm24; in svc()