Home
last modified time | relevance | path

Searched refs:mod (Results 1 – 11 of 11) sorted by relevance

/art/test/175-alloc-big-bignums/src/
DMain.java32 } else if (huge.mod(big2_20).compareTo(BigInteger.valueOf(nIters)) != 0) { in main()
33 System.out.println("Wrong answer: ..." + huge.mod(big2_20)); in main()
/art/disassembler/
Ddisassembler_x86.cc171 std::string DisassemblerX86::DumpAddress(uint8_t mod, uint8_t rm, uint8_t rex64, uint8_t rex_w, in DumpAddress() argument
177 if (mod == 0 && rm == 5) { in DumpAddress()
185 } else if (rm == 4 && mod != 3) { // SIB in DumpAddress()
200 if (base != 5 || mod != 0) { in DumpAddress()
216 if (mod == 0) { in DumpAddress()
227 } else if (mod == 1) { in DumpAddress()
230 } else if (mod == 2) { in DumpAddress()
236 if (mod == 3) { in DumpAddress()
244 if (mod == 1) { in DumpAddress()
247 } else if (mod == 2) { in DumpAddress()
[all …]
Ddisassembler_x86.h39 std::string DumpAddress(uint8_t mod, uint8_t rm, uint8_t rex64, uint8_t rex_w, bool no_ops,
/art/runtime/arch/x86/
Dfault_handler_x86.cc254 uint8_t mod = (modrm >> 6) & 3U /* 0b11 */; in GetInstructionSize() local
257 if (mod != 3U /* 0b11 */ && (modrm & 7U /* 0b111 */) == 4) { in GetInstructionSize()
261 switch (mod) { in GetInstructionSize()
/art/test/912-classes/src-art/art/
DTest912.java121 int mod = getClassModifiers(base); in testClass() local
122 if (mod != base.getModifiers()) { in testClass()
123 throw new RuntimeException("Unexpected modifiers: " + base.getModifiers() + " vs " + mod); in testClass()
125 System.out.println(Integer.toHexString(mod)); in testClass()
/art/test/912-classes/
Dclasses.cc94 jint mod; in Java_art_Test912_getClassModifiers() local
95 jvmtiError result = jvmti_env->GetClassModifiers(klass, &mod); in Java_art_Test912_getClassModifiers()
97 return mod; in Java_art_Test912_getClassModifiers()
/art/libdexfile/dex/
Ddex_file_verifier_test.cc314 uint8_t* mod = const_cast<uint8_t*>(ptr); in RemoveCode() local
316 *(mod++) = 0x80; in RemoveCode()
318 *mod = 0x00; in RemoveCode()
/art/compiler/utils/x86/
Dassembler_x86.h56 uint8_t mod() const { in mod() function
Dassembler_x86.cc36 switch (addr.mod()) { in operator <<()
/art/compiler/utils/x86_64/
Dassembler_x86_64.h64 uint8_t mod() const { in mod() function
Dassembler_x86_64.cc40 switch (addr.mod()) { in operator <<()