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

/art/compiler/dex/
H A Ddex_to_dex_compiler.cc215 if (fast_path && !is_volatile && IsUint(16, field_offset.Int32Value())) {
251 if (vtable_idx >= 0 && IsUint(16, vtable_idx)) {
/art/runtime/
H A Dutils.h122 static inline bool IsUint(int N, word value) { function in namespace:art
133 return IsUint(N, value);
H A Ddex_file.cc1158 CHECK(IsUint(16, jval_.i));
H A Dclass_linker.cc4542 if (!IsUint(16, count)) {
4622 if (!IsUint(16, actual_count)) {
4639 if (!IsUint(16, num_virtual_methods)) {
/art/compiler/utils/x86/
H A Dassembler_x86.h39 bool is_uint8() const { return IsUint(8, value_); }
40 bool is_uint16() const { return IsUint(16, value_); }
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.h46 bool is_uint8() const { return IsUint(8, value_); }
47 bool is_uint16() const { return IsUint(16, value_); }
/art/compiler/dex/quick/mips/
H A Dutility_mips.cc55 return ((value == 0) || IsUint(16, value) || ((value < 0) && (value >= -32768)));
/art/compiler/utils/arm/
H A Dassembler_thumb2.cc1934 CHECK(IsUint(8, imm8)) << imm8;
1943 CHECK(IsUint(8, imm8)) << imm8;
H A Dassembler_arm32.cc1146 CHECK(IsUint(24, imm24)) << imm24;

Completed in 758 milliseconds