Home
last modified time | relevance | path

Searched refs:LC (Results 1 – 25 of 774) sorted by relevance

12345678910>>...31

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DMachOEmitter.cpp108 size_t writeLoadCommandData(MachOYAML::LoadCommand &LC, raw_ostream &OS, in writeLoadCommandData() argument
114 size_t writeLoadCommandData<MachO::segment_command>(MachOYAML::LoadCommand &LC, in writeLoadCommandData() argument
118 for (const auto &Sec : LC.Sections) { in writeLoadCommandData()
131 MachOYAML::LoadCommand &LC, raw_ostream &OS, bool IsLittleEndian) { in writeLoadCommandData() argument
133 for (const auto &Sec : LC.Sections) { in writeLoadCommandData()
145 size_t writePayloadString(MachOYAML::LoadCommand &LC, raw_ostream &OS) { in writePayloadString() argument
147 if (!LC.PayloadString.empty()) { in writePayloadString()
148 OS.write(LC.PayloadString.c_str(), LC.PayloadString.length()); in writePayloadString()
149 BytesWritten = LC.PayloadString.length(); in writePayloadString()
155 size_t writeLoadCommandData<MachO::dylib_command>(MachOYAML::LoadCommand &LC, in writeLoadCommandData() argument
[all …]
DCodeViewYAMLDebugSections.cpp421 for (const auto &LC : Lines.Blocks) { in toCodeViewSubsection() local
422 Result->createBlock(LC.FileName); in toCodeViewSubsection()
424 for (auto Item : zip(LC.Lines, LC.Columns)) { in toCodeViewSubsection()
433 for (const auto &L : LC.Lines) { in toCodeViewSubsection()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DLegalizeIntegerTypes.cpp1939 RTLIB::Libcall LC = RTLIB::getSYNC(Opc, VT); in ExpandAtomic() local
1940 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected atomic op or value type!"); in ExpandAtomic()
1945 return TLI.makeLibCall(DAG, LC, RetVT, Ops, CallOptions, SDLoc(Node), in ExpandAtomic()
2692 RTLIB::Libcall LC = RTLIB::getFPTOSINT(Op.getValueType(), VT); in ExpandIntRes_FP_TO_SINT() local
2693 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-sint conversion!"); in ExpandIntRes_FP_TO_SINT()
2696 std::pair<SDValue, SDValue> Tmp = TLI.makeLibCall(DAG, LC, VT, Op, in ExpandIntRes_FP_TO_SINT()
2715 RTLIB::Libcall LC = RTLIB::getFPTOUINT(Op.getValueType(), VT); in ExpandIntRes_FP_TO_UINT() local
2716 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!"); in ExpandIntRes_FP_TO_UINT()
2718 std::pair<SDValue, SDValue> Tmp = TLI.makeLibCall(DAG, LC, VT, Op, in ExpandIntRes_FP_TO_UINT()
2735 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL; in ExpandIntRes_LLROUND_LLRINT() local
[all …]
DLegalizeFloatTypes.cpp143 SDValue DAGTypeLegalizer::SoftenFloatRes_Unary(SDNode *N, RTLIB::Libcall LC) { in SoftenFloatRes_Unary() argument
154 std::pair<SDValue, SDValue> Tmp = TLI.makeLibCall(DAG, LC, NVT, Op, in SoftenFloatRes_Unary()
162 SDValue DAGTypeLegalizer::SoftenFloatRes_Binary(SDNode *N, RTLIB::Libcall LC) { in SoftenFloatRes_Binary() argument
175 std::pair<SDValue, SDValue> Tmp = TLI.makeLibCall(DAG, LC, NVT, Ops, in SoftenFloatRes_Binary()
492 RTLIB::Libcall LC = RTLIB::getFPEXT(Op.getValueType(), N->getValueType(0)); in SoftenFloatRes_FP_EXTEND() local
493 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!"); in SoftenFloatRes_FP_EXTEND()
497 std::pair<SDValue, SDValue> Tmp = TLI.makeLibCall(DAG, LC, NVT, Op, in SoftenFloatRes_FP_EXTEND()
519 RTLIB::Libcall LC = RTLIB::getFPEXT(MVT::f32, N->getValueType(0)); in SoftenFloatRes_FP16_TO_FP() local
520 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!"); in SoftenFloatRes_FP16_TO_FP()
521 return TLI.makeLibCall(DAG, LC, NVT, Res32, CallOptions, SDLoc(N)).first; in SoftenFloatRes_FP16_TO_FP()
[all …]
DLegalizeDAG.cpp140 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned);
2029 SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, in ExpandLibCall() argument
2042 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC), in ExpandLibCall()
2068 .setLibCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, in ExpandLibCall()
2094 RTLIB::Libcall LC; in ExpandFPLibCall() local
2097 case MVT::f32: LC = Call_F32; break; in ExpandFPLibCall()
2098 case MVT::f64: LC = Call_F64; break; in ExpandFPLibCall()
2099 case MVT::f80: LC = Call_F80; break; in ExpandFPLibCall()
2100 case MVT::f128: LC = Call_F128; break; in ExpandFPLibCall()
2101 case MVT::ppcf128: LC = Call_PPCF128; break; in ExpandFPLibCall()
[all …]
/third_party/boost/boost/geometry/srs/projections/proj/
Dgstmerc.hpp93 T L, LC, sinC; in inv() local
97 LC= log(pj_tsfn(-1.0*asin(sinC),0.0,0.0)); in inv()
99 lp_lat= -1.0*pj_phi2(exp((LC-this->m_proj_parm.c)/this->m_proj_parm.n1), par.e); in inv()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMSelectionDAGInfo.cpp25 SDValue Size, unsigned Align, RTLIB::Libcall LC) const { in EmitSpecializedLibcall()
32 if (std::strncmp(TLI->getLibcallName(LC), "__aeabi", 7) != 0) in EmitSpecializedLibcall()
44 switch (LC) { in EmitSpecializedLibcall()
117 TLI->getLibcallCallingConv(LC), Type::getVoidTy(*DAG.getContext()), in EmitSpecializedLibcall()
DARMSelectionDAGInfo.h63 RTLIB::Libcall LC) const;
DARMFastISel.cpp1704 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL; in SelectDiv() local
1706 LC = isSigned ? RTLIB::SDIV_I8 : RTLIB::UDIV_I8; in SelectDiv()
1708 LC = isSigned ? RTLIB::SDIV_I16 : RTLIB::UDIV_I16; in SelectDiv()
1710 LC = isSigned ? RTLIB::SDIV_I32 : RTLIB::UDIV_I32; in SelectDiv()
1712 LC = isSigned ? RTLIB::SDIV_I64 : RTLIB::UDIV_I64; in SelectDiv()
1714 LC = isSigned ? RTLIB::SDIV_I128 : RTLIB::UDIV_I128; in SelectDiv()
1715 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SDIV!"); in SelectDiv()
1717 return ARMEmitLibcall(I, LC); in SelectDiv()
1733 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL; in SelectRem() local
1735 LC = isSigned ? RTLIB::SREM_I8 : RTLIB::UREM_I8; in SelectRem()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/MSP430/
DMSP430ISelLowering.cpp249 for (const auto &LC : LibraryCalls) { in MSP430TargetLowering() local
250 setLibcallName(LC.Op, LC.Name); in MSP430TargetLowering()
251 if (LC.Cond != ISD::SETCC_INVALID) in MSP430TargetLowering()
252 setCmpLibcallCC(LC.Op, LC.Cond); in MSP430TargetLowering()
267 for (const auto &LC : LibraryCalls) { in MSP430TargetLowering() local
268 setLibcallName(LC.Op, LC.Name); in MSP430TargetLowering()
282 for (const auto &LC : LibraryCalls) { in MSP430TargetLowering() local
283 setLibcallName(LC.Op, LC.Name); in MSP430TargetLowering()
297 for (const auto &LC : LibraryCalls) { in MSP430TargetLowering() local
298 setLibcallName(LC.Op, LC.Name); in MSP430TargetLowering()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DIRBuilder.h1167 auto *LC = dyn_cast<Constant>(L); in foldConstant() local
1169 return (LC && RC) ? Insert(Folder.CreateBinOp(Opc, LC, RC), Name) : nullptr; in foldConstant()
1213 if (auto *LC = dyn_cast<Constant>(LHS)) variable
1215 return Insert(Folder.CreateAdd(LC, RC, HasNUW, HasNSW), Name);
1230 if (auto *LC = dyn_cast<Constant>(LHS)) variable
1232 return Insert(Folder.CreateSub(LC, RC, HasNUW, HasNSW), Name);
1247 if (auto *LC = dyn_cast<Constant>(LHS)) variable
1249 return Insert(Folder.CreateMul(LC, RC, HasNUW, HasNSW), Name);
1264 if (auto *LC = dyn_cast<Constant>(LHS)) variable
1266 return Insert(Folder.CreateUDiv(LC, RC, isExact), Name);
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
DWebAssemblyRuntimeLibcallSignatures.h26 RTLIB::Libcall LC,
/third_party/flutter/skia/third_party/externals/icu/source/data/region/
Den_GB.txt8 LC{"St Lucia"}
Dzh_Hant_HK.txt50 LC{"聖盧西亞"}
Dzgh.txt116 LC{"ⵙⴰⵏⵜⵍⵓⵙⵉ"}
Dshi.txt116 LC{"ⵙⴰⵏⵜⵍⵓⵙⵉ"}
Ddyo.txt95 LC{"Saŋ Lusia"}
/third_party/icu/icu4c/source/data/region/
Den_GB.txt9 LC{"St Lucia"}
Dzh_Hant_HK.txt51 LC{"聖盧西亞"}
Dzgh.txt117 LC{"ⵙⴰⵏⵜⵍⵓⵙⵉ"}
/third_party/skia/third_party/externals/icu/source/data/region/
Den_GB.txt9 LC{"St Lucia"}
Dzh_Hant_HK.txt51 LC{"聖盧西亞"}
Dzgh.txt117 LC{"ⵙⴰⵏⵜⵍⵓⵙⵉ"}
/third_party/libffi/src/powerpc/
Daix_closure.S90 LC..60:
178 ld r4, LC..60(2) /* get address of jump table */
359 lwz r4, LC..60(2) /* get address of jump table */
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DLoopCacheAnalysis.cpp448 for (const auto &LC : CC.LoopCosts) { in operator <<() local
449 const Loop *L = LC.first; in operator <<()
450 OS << "Loop '" << L->getName() << "' has cost = " << LC.second << "\n"; in operator <<()

12345678910>>...31