/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
H A D | X86TargetTransformInfo.cpp | 180 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, Ty); in getArithmeticInstrCost() local 194 LT.second)) in getArithmeticInstrCost() 195 return LT.first * Entry->Cost; in getArithmeticInstrCost() 222 if (Args.size() == 2 && ISD == ISD::MUL && LT.second == MVT::v4i32) { in getArithmeticInstrCost() 233 return LT.first * 3; // pmullw/sext in getArithmeticInstrCost() 235 return LT.first * 3; // pmullw/zext in getArithmeticInstrCost() 237 return LT.first * 5; // pmullw/pmulhw/pshuf in getArithmeticInstrCost() 239 return LT.first * 5; // pmullw/pmulhw/pshuf in getArithmeticInstrCost() 243 LT.second)) { in getArithmeticInstrCost() 244 return LT in getArithmeticInstrCost() 893 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, Tp); getShuffleCost() local 1706 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, ValTy); getCmpSelInstrCost() local 2207 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, OpTy); getIntrinsicInstrCost() local 2362 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, RetTy); getIntrinsicInstrCost() local 2399 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, Val); getVectorInstrCost() local 2465 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, Src); getMemoryOpCost() local 2512 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, SrcVTy); getMaskedMemoryOpCost() local 2663 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, ValTy); getArithmeticReductionCost() local 2761 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, ValTy); getMinMaxReductionCost() local [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | ffv1_template.c | 25 const int LT = last[-1]; in predict() local 29 return mid_pred(L, L + T - LT, T); in predict() 35 const int LT = last[-1]; in get_context() local 43 return p->quant_table[0][(L - LT) & 0xFF] + in get_context() 44 p->quant_table[1][(LT - T) & 0xFF] + in get_context() 49 return p->quant_table[0][(L - LT) & 0xFF] + in get_context() 50 p->quant_table[1][(LT - T) & 0xFF] + in get_context()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | Chrono.cpp | 30 struct tm *LT = ::localtime_r(&OurTime, &Storage); in getStructTM() local 31 assert(LT); in getStructTM() 32 (void)LT; in getStructTM() 44 struct tm LT = getStructTM(TP); in operator <<() local 46 strftime(Buffer, sizeof(Buffer), "%Y-%m-%d %H:%M:%S", <); in operator <<() 58 struct tm LT = getStructTM(Truncated); in format() local 89 size_t Len = strftime(Buffer, sizeof(Buffer), Format.c_str(), <); in format()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUTargetTransformInfo.cpp | 355 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, Ty); in getArithmeticInstrCost() local 360 unsigned NElts = LT.second.isVector() ? in getArithmeticInstrCost() 361 LT.second.getVectorNumElements() : 1; in getArithmeticInstrCost() 363 MVT::SimpleValueType SLT = LT.second.getScalarType().SimpleTy; in getArithmeticInstrCost() 370 return get64BitInstrCost() * LT.first * NElts; in getArithmeticInstrCost() 376 return getFullRateInstrCost() * LT.first * NElts; in getArithmeticInstrCost() 384 return 2 * getFullRateInstrCost() * LT.first * NElts; in getArithmeticInstrCost() 390 return LT.first * NElts * getFullRateInstrCost(); in getArithmeticInstrCost() 395 return (4 * QuarterRateCost + (2 * 2) * FullRateCost) * LT.first * NElts; in getArithmeticInstrCost() 402 return QuarterRateCost * NElts * LT in getArithmeticInstrCost() 479 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, RetTy); getIntrinsicInstrCost() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/Utils/ |
H A D | ARMBaseInfo.h | 42 LT, // Less than Less than, or unordered enumerator 61 case GE: return LT; in getOppositeCondition() 62 case LT: return GE; in getOppositeCondition() 81 case ARMCC::LT: return ARMCC::GT; in getSwappedCondition() 82 case ARMCC::GT: return ARMCC::LT; in getSwappedCondition() 159 case ARMCC::LT: return "lt"; in ARMCondCodeToString() 182 .Case("lt", ARMCC::LT) in ARMCondCodeFromString()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
H A D | PPCTargetTransformInfo.cpp | 209 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, U->getType()); in getUserCost() local 210 return LT.first * BaseT::getUserCost(U, Operands); in getUserCost() 731 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, Tp); in getShuffleCost() local 738 return vectorCostAdjustment(LT.first, Instruction::ShuffleVector, Tp, in getShuffleCost() 833 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, Src); in getMemoryOpCost() local 841 (LT.second == MVT::v16i8 || LT.second == MVT::v8i16 || in getMemoryOpCost() 842 LT.second == MVT::v4i32 || LT.second == MVT::v4f32); in getMemoryOpCost() 844 (LT in getMemoryOpCost() 918 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, VecTy); getInterleavedMemoryOpCost() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
H A D | BasicTTIImpl.h | 643 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(DL, Ty); in getArithmeticInstrCost() local 650 if (TLI->isOperationLegalOrPromote(ISD, LT.second)) { in getArithmeticInstrCost() 653 return LT.first * OpCost; in getArithmeticInstrCost() 656 if (!TLI->isOperationExpand(ISD, LT.second)) { in getArithmeticInstrCost() 659 return LT.first * 2 * OpCost; in getArithmeticInstrCost() 848 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(DL, ValTy); in getCmpSelInstrCost() local 850 if (!(ValTy->isVectorTy() && !LT.second.isVector()) && in getCmpSelInstrCost() 851 !TLI->isOperationExpand(ISD, LT.second)) { in getCmpSelInstrCost() 854 return LT.first * 1; in getCmpSelInstrCost() 877 std::pair<unsigned, MVT> LT in getVectorInstrCost() local 887 std::pair<unsigned, MVT> LT = getTLI()->getTypeLegalizationCost(DL, Src); getMemoryOpCost() local 1472 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(DL, RetTy); getIntrinsicInstrCost() local 1562 std::pair<unsigned, MVT> LT = getTLI()->getTypeLegalizationCost(DL, Tp); getNumberOfParts() local 1615 std::pair<unsigned, MVT> LT = getArithmeticReductionCost() local 1674 std::pair<unsigned, MVT> LT = getMinMaxReductionCost() local [all...] |
/third_party/mesa3d/src/gallium/drivers/etnaviv/ |
H A D | etnaviv_compiler_nir_emit.c | 68 OPC(fmin, SELECT, 0_1_0, GT), OPC(fmax, SELECT, 0_1_0, LT), 73 OPC(seq, SET, 0_1_X, EQ), OPC(sne, SET, 0_1_X, NE), OPC(sge, SET, 0_1_X, GE), OPC(slt, SET, 0_1_X, LT), 96 IOPC(imax, SELECT, 0_1_0, LT), 98 UOPC(umax, SELECT, 0_1_0, LT), 107 OPC(flt32, CMP, 0_1_X, LT), 111 IOPC(ilt32, CMP, 0_1_X, LT), 113 UOPC(ult32, CMP, 0_1_X, LT),
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
H A D | AArch64ConditionOptimizer.cpp | 14 // * LT -> LE 15 // * LE -> LT 233 case AArch64CC::LT: return AArch64CC::LE; in getAdjustedCmp() 234 case AArch64CC::LE: return AArch64CC::LT; in getAdjustedCmp() 240 // Transforms GT -> GE, GE -> GT, LT -> LE, LE -> LT by updating comparison 399 if (((HeadCmp == AArch64CC::GT && TrueCmp == AArch64CC::LT) || in runOnMachineFunction() 400 (HeadCmp == AArch64CC::LT && TrueCmp == AArch64CC::GT)) && in runOnMachineFunction() 421 (HeadCmp == AArch64CC::LT && TrueCmp == AArch64CC::LT)) in runOnMachineFunction() [all...] |
H A D | AArch64TargetTransformInfo.cpp | 466 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, Val); in getVectorInstrCost() local 469 if (!LT.second.isVector()) in getVectorInstrCost() 473 unsigned Width = LT.second.getVectorNumElements(); in getVectorInstrCost() 491 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, Ty); in getArithmeticInstrCost() local 576 return (Cost + 1) * LT.first; in getArithmeticInstrCost() 645 auto LT = TLI->getTypeLegalizationCost(DL, Ty); in getMemoryOpCost() local 648 LT.second.is128BitVector() && (!Alignment || *Alignment < Align(16))) { in getMemoryOpCost() 656 return LT.first * 2 * AmortizationCost; in getMemoryOpCost() 677 return LT.first; in getMemoryOpCost() 934 std::pair<int, MVT> LT in getArithmeticReductionCost() 1001 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, Tp); getShuffleCost() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
H A D | HexagonTargetTransformInfo.cpp | 142 std::pair<int, MVT> LT = TLI.getTypeLegalizationCost(DL, RetTy); in getIntrinsicInstrCost() local 143 return LT.first + 2; in getIntrinsicInstrCost() 232 std::pair<int, MVT> LT = TLI.getTypeLegalizationCost(DL, ValTy); in getCmpSelInstrCost() local 234 return LT.first + FloatFactor * getTypeNumElements(ValTy); in getCmpSelInstrCost() 245 std::pair<int, MVT> LT = TLI.getTypeLegalizationCost(DL, Ty); in getArithmeticInstrCost() local 246 if (LT.second.isFloatingPoint()) in getArithmeticInstrCost() 247 return LT.first + FloatFactor * getTypeNumElements(Ty); in getArithmeticInstrCost()
|
/third_party/ltp/testcases/lib/ |
H A D | tst_kvcmp.c | 18 LT, enumerator 42 return LT; in strtop() 132 case LT: in main() 181 case LT: in main()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
H A D | ARMTargetTransformInfo.cpp | 168 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, Src); in getCastInstrCost() local 169 if (const auto *Entry = CostTableLookup(NEONFltDblTbl, ISD, LT.second)) in getCastInstrCost() 170 return LT.first * Entry->Cost; in getCastInstrCost() 468 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, ValTy); in getCmpSelInstrCost() local 469 return LT.first; in getCmpSelInstrCost() 593 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, Tp); in getShuffleCost() local 596 CostTableLookup(NEONDupTbl, ISD::VECTOR_SHUFFLE, LT.second)) in getShuffleCost() 597 return LT.first * Entry->Cost; in getShuffleCost() 615 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, Tp); in getShuffleCost() local 618 CostTableLookup(NEONShuffleTbl, ISD::VECTOR_SHUFFLE, LT in getShuffleCost() 640 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, Tp); getShuffleCost() local 656 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, Tp); getShuffleCost() local 677 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, Ty); getArithmeticInstrCost() local 796 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, Src); getMemoryOpCost() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/ |
H A D | NVPTXTargetTransformInfo.cpp | 120 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, Ty); in getArithmeticInstrCost() local 136 if (LT.second.SimpleTy == MVT::i64) in getArithmeticInstrCost() 137 return 2 * LT.first; in getArithmeticInstrCost()
|
H A D | NVPTX.h | 30 LT, enumerator 134 LT, enumerator
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/GSYM/ |
H A D | LineTable.cpp | 253 LineTable LT; in decode() local 255 LT.Lines.push_back(Row); in decode() 260 return LT; in decode() 289 raw_ostream &llvm::gsym::operator<<(raw_ostream &OS, const LineTable <) { in operator <<() argument 290 for (const auto &LineEntry : LT) in operator <<()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/ |
H A D | Period.java | 67 return new Period(ETimeLimit.LT, false, count, unit); in lessThan() 120 return setTimeLimit(ETimeLimit.LT); in lessThan() 236 return timeLimit == ETimeLimit.LT; in isLessThan()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/duration/ |
H A D | Period.java | 69 return new Period(ETimeLimit.LT, false, count, unit); in lessThan() 122 return setTimeLimit(ETimeLimit.LT); in lessThan() 238 return timeLimit == ETimeLimit.LT; in isLessThan()
|
/third_party/node/deps/openssl/openssl/crypto/perlasm/ |
H A D | x86masm.pl | 88 IF \@Version LT 800 94 IF \@Version LT 800 129 IF \@Version LT 800
|
/third_party/openssl/crypto/perlasm/ |
H A D | x86masm.pl | 88 IF \@Version LT 800 94 IF \@Version LT 800 129 IF \@Version LT 800
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DWARFLinker/ |
H A D | DWARFLinkerDeclContext.cpp | 123 if (const auto *LT = U.getOrigUnit().getContext().getLineTableForUnit( in getChildDeclContext() 131 if (LT->hasFileAtIndex(FileNum)) { in getChildDeclContext() 140 bool FoundFileName = LT->getFileNameByIndex( in getChildDeclContext()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFDebugLine.cpp | 450 DWARFDebugLine::ParsingState::ParsingState(struct LineTable *LT) in ParsingState() argument 451 : LineTable(LT) { in ParsingState() 499 LineTable *LT = &Pos.first->second; in getOrParseLineTable() local 502 LT->parse(DebugLineData, &Offset, Ctx, U, RecoverableErrorCallback)) in getOrParseLineTable() 504 return LT; in getOrParseLineTable() 506 return LT; in getOrParseLineTable() 1145 LineTable LT; in parseNext() local 1146 if (Error Err = LT.parse(DebugLineData, &Offset, Context, U, in parseNext() 1149 moveToNextTable(OldOffset, LT.Prologue); in parseNext() 1150 return LT; in parseNext() 1159 LineTable LT; skip() local [all...] |
/third_party/toybox/toys/pending/ |
H A D | expr.c | 132 enum { OR = 1, AND, EQ, NE, GT, GTE, LT, LTE, ADD, SUB, MUL, DIVI, MOD, RE }; enumerator 145 {"<", 3, SI_TO_I, LT }, {"<=", 3, SI_TO_I, LTE }, 182 case LT: x = cmp < 0; break; in eval_op()
|
/third_party/node/deps/v8/src/base/ |
H A D | logging.h | 326 DEFINE_SIGNED_MISMATCH_COMP(is_signed_vs_unsigned, LT, 337 DEFINE_SIGNED_MISMATCH_COMP(is_unsigned_vs_signed, LT, CmpGTImpl(rhs, lhs)) 372 DEFINE_CHECK_OP_IMPL(LT, < ) 380 #define CHECK_LT(lhs, rhs) CHECK_OP(LT, <, lhs, rhs) 399 #define DCHECK_LT(lhs, rhs) DCHECK_OP(LT, <, lhs, rhs)
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/ |
H A D | Pipeline.cpp | 281 LT, enumerator 293 case LT: in CompareBy() 365 if (int s = SaturateVectorOf<TBasicType::EbtInt, LT, 4, 4>(field)) in externalStructModifyConfig() 369 if (int s = SaturateVectorOf<TBasicType::EbtUInt, LT, 4, 4>(field)) in externalStructModifyConfig() 373 if (int s = SaturateVectorOf<TBasicType::EbtFloat, LT, 4, 4>(field)) in externalStructModifyConfig()
|