Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/InstPrinter/
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()
77 O << formatDec(SignExtend32<13>(MI->getOperand(OpNo).getImm())); in printS13ImmDecOperand()
549 O << formatDec(Op.getImm()); in printOperand()
639 O << formatDec(Imm & 0x3) << ','; in printDPPCtrl()
640 O << formatDec((Imm & 0xc) >> 2) << ','; in printDPPCtrl()
641 O << formatDec((Imm & 0x30) >> 4) << ','; in printDPPCtrl()
642 O << formatDec((Imm & 0xc0) >> 6) << ']'; in printDPPCtrl()
1105 O << formatDec(Imm & LANE_MASK); in printSwizzle()
[all …]
/external/swiftshader/third_party/llvm-7.0/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/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/BPF/InstPrinter/
DBPFInstPrinter.cpp72 O << formatDec(OffsetOp.getImm()); in printMemOperand()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
DMCInstPrinter.cpp84 format_object<int64_t> MCInstPrinter::formatDec(int64_t Value) const { in formatDec() function in MCInstPrinter
/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.cpp1779 DecimalFormat *formatDec = new DecimalFormat ("000.00", status); in Test4125885() local
1782 delete formatDec; in Test4125885()
1787 logln("toPattern: " + formatDec->toPattern(temp)); in Test4125885()
1790 rateString = formatDec->format(rate, rateString, pos); in Test4125885()
1794 delete formatDec;// = null; in Test4125885()
1795 formatDec = new DecimalFormat ("+000.00%;-000.00%", status); in Test4125885()
1797 logln("toPattern: " + formatDec->toPattern(temp)); in Test4125885()
1799 rateString = formatDec->format(rate, rateString, pos); in Test4125885()
1803 delete formatDec; in Test4125885()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/InstPrinter/
DAArch64InstPrinter.cpp1458 O << '#' << formatDec(Value); in printImmSVE()
1463 *CommentStream << '=' << formatDec(HexValue) << '\n'; in printImmSVE()