Home
last modified time | relevance | path

Searched refs:amount (Results 1 – 5 of 5) sorted by relevance

/art/tools/jfuzz/
DREADME.md107 in an unexpected way. Fuzzing refers to feeding a large amount of random data
/art/tools/ahat/
DREADME.txt47 * That we can view the list of all objects in a reasonably short amount of
/art/test/800-smali/smali/
Db_22881413.smali38 # Empty, ignore this. We want to see if the other method can be verified in a reasonable amount of
/art/compiler/utils/arm/
Dassembler_thumb2.cc1795 uint8_t amount, in EmitShift() argument
1798 CHECK_LT(amount, (1 << 5)); in EmitShift()
1807 case RRX: opcode = 3U /* 0b11 */; amount = 0; break; in EmitShift()
1815 uint32_t imm3 = amount >> 2; in EmitShift()
1816 uint32_t imm2 = amount & 3U /* 0b11 */; in EmitShift()
1831 int16_t encoding = opcode << 11 | amount << 6 | static_cast<int16_t>(rm) << 3 | in EmitShift()
Dassembler_thumb2.h793 void EmitShift(Register rd, Register rm, Shift shift, uint8_t amount,