Home
last modified time | relevance | path

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

/art/test/474-fp-sub-neg/
Dinfo.txt4 fp calculation because we can lose the sign of zero for
/art/disassembler/
Ddisassembler_arm.cc556 const char *sign = U ? "+" : "-"; in DumpThumb32() local
558 args << "], #" << sign << (imm8 << 2); in DumpThumb32()
560 args << ", #" << sign << (imm8 << 2) << "]"; in DumpThumb32()
651 const char *sign = U ? "+" : "-"; in DumpThumb32() local
653 args << "], #" << sign << imm8; in DumpThumb32()
655 args << ", #" << sign << imm8 << "]"; in DumpThumb32()
1380 const char* sign = is_signed ? "s" : ""; in DumpThumb32() local
1388 opcode << ldr_str << sign << type << ".w"; in DumpThumb32()
1405 opcode << ldr_str << sign << type << ".w"; in DumpThumb32()
1423 opcode << ldr_str << sign << type << t << ".w"; in DumpThumb32()
/art/runtime/arch/mips/
Dquick_entrypoints_mips.S1164 # result sign extension is handled in C code
1310 sra $a3, $a1, 31 # $a3<- sign(ah)
1319 move $v1, $a3 # rhi<- sign(ahi) (if shift&0x20)
/art/compiler/dex/quick/arm64/
Dtarget_arm64.cc328 int sign = ((small_float & 0x80) == 0) ? 1 : -1; in DecodeImmSingle() local
329 float signed_mantissa = static_cast<float>(sign*mantissa); in DecodeImmSingle()
/art/runtime/arch/mips64/
Dquick_entrypoints_mips64.S1438 # result sign extension is handled in C code