HomeSort by relevance Sort by last modified time
    Searched refs:IsUint (Results 1 - 9 of 9) sorted by null

  /art/compiler/dex/
dex_to_dex_compiler.cc 215 if (fast_path && !is_volatile && IsUint(16, field_offset.Int32Value())) {
251 if (vtable_idx >= 0 && IsUint(16, vtable_idx)) {
  /art/runtime/
utils.h 122 static inline bool IsUint(int N, word value) {
133 return IsUint(N, value);
dex_file.cc     [all...]
class_linker.cc     [all...]
  /art/compiler/utils/x86/
assembler_x86.h 39 bool is_uint8() const { return IsUint(8, value_); }
40 bool is_uint16() const { return IsUint(16, value_); }
  /art/compiler/utils/x86_64/
assembler_x86_64.h 46 bool is_uint8() const { return IsUint(8, value_); }
47 bool is_uint16() const { return IsUint(16, value_); }
  /art/compiler/dex/quick/mips/
utility_mips.cc 55 return ((value == 0) || IsUint(16, value) || ((value < 0) && (value >= -32768)));
  /art/compiler/utils/arm/
assembler_thumb2.cc     [all...]
assembler_arm32.cc     [all...]

Completed in 254 milliseconds