Home
last modified time | relevance | path

Searched refs:formatDec (Results 1 – 15 of 15) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/MCTargetDesc/
DAMDGPUInstPrinter.cpp62 O << formatDec(MI->getOperand(OpNo).getImm() & 0xf); in printU4ImmDecOperand()
67 O << formatDec(MI->getOperand(OpNo).getImm() & 0xff); in printU8ImmDecOperand()
72 O << formatDec(MI->getOperand(OpNo).getImm() & 0xffff); in printU16ImmDecOperand()
135 O << formatDec(SignExtend32<12>(MI->getOperand(OpNo).getImm())); in printFlatOffset()
137 O << formatDec(SignExtend32<13>(MI->getOperand(OpNo).getImm())); in printFlatOffset()
561 O << formatDec(Op.getImm()); in printOperand()
689 O << " dpp8:[" << formatDec(Imm & 0x7); in printDPP8()
691 O << ',' << formatDec((Imm >> (3 * i)) & 0x7); in printDPP8()
704 O << formatDec(Imm & 0x3) << ','; in printDPPCtrl()
705 O << formatDec((Imm & 0xc) >> 2) << ','; in printDPPCtrl()
[all …]
/external/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
DAMDGPUInstPrinter.cpp85 O << formatDec(MI->getOperand(OpNo).getImm() & 0xf); in printU4ImmDecOperand()
90 O << formatDec(MI->getOperand(OpNo).getImm() & 0xff); in printU8ImmDecOperand()
95 O << formatDec(MI->getOperand(OpNo).getImm() & 0xffff); in printU16ImmDecOperand()
159 O << formatDec(SignExtend32<12>(MI->getOperand(OpNo).getImm())); in printFlatOffset()
161 O << formatDec(SignExtend32<13>(MI->getOperand(OpNo).getImm())); in printFlatOffset()
651 O << formatDec(Op.getImm()); in printOperand()
787 O << "dpp8:[" << formatDec(Imm & 0x7); in printDPP8()
789 O << ',' << formatDec((Imm >> (3 * i)) & 0x7); in printDPP8()
802 O << formatDec(Imm & 0x3) << ','; in printDPPCtrl()
803 O << formatDec((Imm & 0xc) >> 2) << ','; in printDPPCtrl()
[all …]
/external/llvm/include/llvm/MC/
DMCInstPrinter.h97 return PrintImmHex ? formatHex(Value) : formatDec(Value); in formatImm()
101 format_object<int64_t> formatDec(int64_t Value) const;
/external/llvm/lib/Target/AMDGPU/InstPrinter/
DAMDGPUInstPrinter.cpp56 O << formatDec(MI->getOperand(OpNo).getImm() & 0xf); in printU4ImmDecOperand()
61 O << formatDec(MI->getOperand(OpNo).getImm() & 0xff); in printU8ImmDecOperand()
66 O << formatDec(MI->getOperand(OpNo).getImm() & 0xffff); in printU16ImmDecOperand()
401 O << formatDec(Op.getImm()); in printOperand()
456 O << formatDec(Imm & 0x3) << ','; in printDPPCtrl()
457 O << formatDec((Imm & 0xc) >> 2) << ','; in printDPPCtrl()
458 O << formatDec((Imm & 0x30) >> 4) << ','; in printDPPCtrl()
459 O << formatDec((Imm & 0xc0) >> 6) << ']'; in printDPPCtrl()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
DMCInstPrinter.h105 return PrintImmHex ? formatHex(Value) : formatDec(Value); in formatImm()
109 format_object<int64_t> formatDec(int64_t Value) const;
/external/llvm-project/llvm/include/llvm/MC/
DMCInstPrinter.h132 return PrintImmHex ? formatHex(Value) : formatDec(Value); in formatImm()
136 format_object<int64_t> formatDec(int64_t Value) const;
/external/llvm/lib/Target/BPF/InstPrinter/
DBPFInstPrinter.cpp72 O << formatDec(OffsetOp.getImm()); in printMemOperand()
/external/llvm/lib/MC/
DMCInstPrinter.cpp81 format_object<int64_t> MCInstPrinter::formatDec(int64_t Value) const { in formatDec() function in MCInstPrinter
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DNumberRegressionTests.java1095 DecimalFormat formatDec = new DecimalFormat ("000.00"); in Test4125885() local
1096 logln("toPattern: " + formatDec.toPattern()); in Test4125885()
1097 String rateString= formatDec.format(rate); in Test4125885()
1101 formatDec = null; in Test4125885()
1102 formatDec = new DecimalFormat ("+000.00%;-000.00%"); in Test4125885()
1103 logln("toPattern: " + formatDec.toPattern()); in Test4125885()
1104 rateString= formatDec.format(rate); in Test4125885()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DNumberRegressionTests.java1092 DecimalFormat formatDec = new DecimalFormat ("000.00"); in Test4125885() local
1093 logln("toPattern: " + formatDec.toPattern()); in Test4125885()
1094 String rateString= formatDec.format(rate); in Test4125885()
1098 formatDec = null; in Test4125885()
1099 formatDec = new DecimalFormat ("+000.00%;-000.00%"); in Test4125885()
1100 logln("toPattern: " + formatDec.toPattern()); in Test4125885()
1101 rateString= formatDec.format(rate); in Test4125885()
/external/icu/icu4c/source/test/intltest/
Dnumrgts.cpp1777 DecimalFormat *formatDec = new DecimalFormat ("000.00", status); in Test4125885() local
1780 delete formatDec; in Test4125885()
1785 logln("toPattern: " + formatDec->toPattern(temp)); in Test4125885()
1788 rateString = formatDec->format(rate, rateString, pos); in Test4125885()
1792 delete formatDec;// = null; in Test4125885()
1793 formatDec = new DecimalFormat ("+000.00%;-000.00%", status); in Test4125885()
1795 logln("toPattern: " + formatDec->toPattern(temp)); in Test4125885()
1797 rateString = formatDec->format(rate, rateString, pos); in Test4125885()
1801 delete formatDec; in Test4125885()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCInstPrinter.cpp171 format_object<int64_t> MCInstPrinter::formatDec(int64_t Value) const { in formatDec() function in MCInstPrinter
/external/llvm-project/llvm/lib/MC/
DMCInstPrinter.cpp193 format_object<int64_t> MCInstPrinter::formatDec(int64_t Value) const { in formatDec() function in MCInstPrinter
/external/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
DAArch64InstPrinter.cpp1537 O << '#' << formatDec(Value); in printImmSVE()
1542 *CommentStream << '=' << formatDec(HexValue) << '\n'; in printImmSVE()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/MCTargetDesc/
DAArch64InstPrinter.cpp1507 O << '#' << formatDec(Value); in printImmSVE()
1512 *CommentStream << '=' << formatDec(HexValue) << '\n'; in printImmSVE()