Home
last modified time | relevance | path

Searched refs:itostr (Results 1 – 25 of 54) sorted by relevance

123

/external/llvm-project/llvm/utils/TableGen/
DCodeEmitterGen.cpp226 extractStr = "op.extractBits(" + itostr(hiBit - loBit) + ", " + in AddCodeToMergeInOperand()
227 itostr(loBit) + ")"; in AddCodeToMergeInOperand()
229 itostr(loInstBit) + ");\n"; in AddCodeToMergeInOperand()
231 extractStr = "op.extractBitsAsZExtValue(" + itostr(hiBit - loBit) + in AddCodeToMergeInOperand()
232 ", " + itostr(loBit) + ")"; in AddCodeToMergeInOperand()
234 itostr(loInstBit) + ", " + itostr(hiBit - loBit) + ");\n"; in AddCodeToMergeInOperand()
246 Case += " op <<= " + itostr(opShift) + ";\n"; in AddCodeToMergeInOperand()
248 Case += " op >>= " + itostr(-opShift) + ";\n"; in AddCodeToMergeInOperand()
254 itostr(opShift) + ";\n"; in AddCodeToMergeInOperand()
257 itostr(-opShift) + ";\n"; in AddCodeToMergeInOperand()
[all …]
DSubtargetEmitter.cpp311 ItinString += " { " + itostr(Cycles) + ", "; in FormItineraryStageString()
324 ItinString += ", " + itostr(TimeInc); in FormItineraryStageString()
327 ItinString += ", (llvm::InstrStage::ReservationKinds)" + itostr(Kind); in FormItineraryStageString()
352 ItinString += " " + itostr(OCycle); in FormItineraryOperandCycleString()
486 StageTable += ItinStageString + ", // " + itostr(StageCount); in EmitStageAndOperandCycleData()
488 StageTable += "-" + itostr(StageCount + NStages - 1); in EmitStageAndOperandCycleData()
504 std::string OperandIdxComment = itostr(OperandCycleCount); in EmitStageAndOperandCycleData()
507 + itostr(OperandCycleCount + NOperandCycles - 1); in EmitStageAndOperandCycleData()
/external/llvm-project/llvm/unittests/ADT/
DStringExtrasTest.cpp212 EXPECT_EQ("0", itostr(0)); in TEST()
213 EXPECT_EQ("1", itostr(1)); in TEST()
214 EXPECT_EQ("-1", itostr(-1)); in TEST()
215 EXPECT_EQ(std::to_string(MinInt64), itostr(MinInt64)); in TEST()
216 EXPECT_EQ(std::to_string(MaxInt64), itostr(MaxInt64)); in TEST()
/external/icu/icu4c/source/tools/genrb/
Drbutil.h29 int32_t itostr(char * buffer, int32_t i, uint32_t radix, int32_t pad);
Dwrtjava.cpp183 itostr(str+2,source[i],16,4); in uCharsToChars()
407 len=itostr(buf,res->fArray[i],10,0); in intvector_write_java()
419 len=itostr(buf,res->fArray[i],10,0); in intvector_write_java()
441 len=itostr(buf, res->fValue, 10, 0); in int_write_java()
Dwrtxml.cpp705 itostr(c, index, 10, 0); in array_write_xml()
740 itostr(c, i, 10, 0); in intvector_write_xml()
742 len = itostr(buf, res->fArray[i], 10, 0); in intvector_write_xml()
788 len = itostr(buf, res->fValue, 10, 0); in int_write_xml()
886 len = itostr(temp, res->fData[i], 16, 2); in bin_write_xml()
891 len = itostr(temp, crc, 10, 0); in bin_write_xml()
898 len = itostr(temp, res->fData[i], 16, 2); in bin_write_xml()
Drbutil.c68 itostr(char * buffer, int32_t i, uint32_t radix, int32_t pad) in itostr() function
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DDiagnosticInfo.cpp193 : Key(Key), Val(itostr(N)) {} in Argument()
199 : Key(Key), Val(itostr(N)) {} in Argument()
202 : Key(Key), Val(itostr(N)) {} in Argument()
/external/llvm-project/llvm/lib/IR/
DDiagnosticInfo.cpp194 : Key(std::string(Key)), Val(itostr(N)) {} in Argument()
200 : Key(std::string(Key)), Val(itostr(N)) {} in Argument()
203 : Key(std::string(Key)), Val(itostr(N)) {} in Argument()
/external/llvm/utils/TableGen/
DSubtargetEmitter.cpp289 ItinString += " { " + itostr(Cycles) + ", "; in FormItineraryStageString()
302 ItinString += ", " + itostr(TimeInc); in FormItineraryStageString()
305 ItinString += ", (llvm::InstrStage::ReservationKinds)" + itostr(Kind); in FormItineraryStageString()
330 ItinString += " " + itostr(OCycle); in FormItineraryOperandCycleString()
465 StageTable += ItinStageString + ", // " + itostr(StageCount); in EmitStageAndOperandCycleData()
467 StageTable += "-" + itostr(StageCount + NStages - 1); in EmitStageAndOperandCycleData()
483 std::string OperandIdxComment = itostr(OperandCycleCount); in EmitStageAndOperandCycleData()
486 + itostr(OperandCycleCount + NOperandCycles - 1); in EmitStageAndOperandCycleData()
DCodeEmitterGen.cpp166 itostr(opShift) + ";\n"; in AddCodeToMergeInOperand()
169 itostr(-opShift) + ";\n"; in AddCodeToMergeInOperand()
/external/llvm/include/llvm/ADT/
DStringExtras.h94 static inline std::string itostr(int64_t X) { in itostr() function
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGPrinter.cpp53 return itostr(I - SDNodeIterator::begin((const SDNode *) Node)); in getEdgeSourceLabel()
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DStringExtras.h95 static inline std::string itostr(int64_t X) { in itostr() function
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGPrinter.cpp50 return itostr(I - SDNodeIterator::begin((const SDNode *) Node)); in getEdgeSourceLabel()
/external/llvm-project/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGPrinter.cpp50 return itostr(I - SDNodeIterator::begin((const SDNode *) Node)); in getEdgeSourceLabel()
/external/llvm-project/clang-tools-extra/clang-tidy/
DClangTidyCheck.cpp169 store(Options, LocalName, llvm::itostr(Value)); in storeInt()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DHWAddressSanitizer.cpp449 itostr(1ULL << AccessSizeIndex) + EndingStr, in initializeCallbacks()
677 "int3\nnopl " + itostr(0x40 + AccessInfo) + "(%rax)", in instrumentMemAccessInline()
686 "brk #" + itostr(0x900 + AccessInfo), in instrumentMemAccessInline()
1035 AI->hasName() ? AI->getName().str() : "alloca." + itostr(N); in instrumentStack()
DThreadSanitizer.cpp269 SmallString<32> RMWName("__tsan_atomic" + itostr(BitSize) + NamePart); in initialize()
/external/llvm-project/llvm/lib/Transforms/Instrumentation/
DHWAddressSanitizer.cpp563 itostr(1ULL << AccessSizeIndex) + EndingStr, in initializeCallbacks()
795 itostr(0x40 + (AccessInfo & HWASanAccessInfo::RuntimeMask)) + in instrumentMemAccessInline()
806 itostr(0x900 + (AccessInfo & HWASanAccessInfo::RuntimeMask)), in instrumentMemAccessInline()
1142 AI->hasName() ? AI->getName().str() : "alloca." + itostr(N); in instrumentStack()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DStringExtras.h238 inline std::string itostr(int64_t X) { in itostr() function
/external/llvm-project/llvm/include/llvm/ADT/
DStringExtras.h292 inline std::string itostr(int64_t X) { in itostr() function
/external/llvm-project/llvm/lib/Target/AMDGPU/
DAMDGPUPrintfRuntimeBinding.cpp335 std::string fmtstr = itostr(++UniqID) + ":" + Sizes.str().c_str(); in lowerPrintfForGpu()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUPrintfRuntimeBinding.cpp335 std::string fmtstr = itostr(++UniqID) + ":" + Sizes.str().c_str(); in lowerPrintfForGpu()
/external/llvm/lib/Transforms/Instrumentation/
DThreadSanitizer.cpp211 SmallString<32> RMWName("__tsan_atomic" + itostr(BitSize) + NamePart); in initializeCallbacks()

123