| /freebsd-10-stable/contrib/llvm/lib/Target/X86/ |
| D | X86TargetTransformInfo.cpp | 175 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(Ty); in getArithmeticInstrCost() local 217 int Idx = CostTableLookup(AVX2CostTable, ISD, LT.second); in getArithmeticInstrCost() 219 return LT.first * AVX2CostTable[Idx].Cost; in getArithmeticInstrCost() 244 int Idx = CostTableLookup(SSE2UniformConstCostTable, ISD, LT.second); in getArithmeticInstrCost() 246 return LT.first * SSE2UniformConstCostTable[Idx].Cost; in getArithmeticInstrCost() 291 int Idx = CostTableLookup(SSE2CostTable, ISD, LT.second); in getArithmeticInstrCost() 293 return LT.first * SSE2CostTable[Idx].Cost; in getArithmeticInstrCost() 315 int Idx = CostTableLookup(AVX1CostTable, ISD, LT.second); in getArithmeticInstrCost() 317 return LT.first * AVX1CostTable[Idx].Cost; in getArithmeticInstrCost() 327 int Idx = CostTableLookup(CustomLowered, ISD, LT.second); in getArithmeticInstrCost() [all …]
|
| /freebsd-10-stable/contrib/llvm/lib/CodeGen/ |
| D | BasicTargetTransformInfo.cpp | 237 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(Ty); in getArithmeticInstrCost() local 244 if (TLI->isOperationLegalOrPromote(ISD, LT.second)) { in getArithmeticInstrCost() 249 if (LT.first > 1) in getArithmeticInstrCost() 250 return LT.first * 2 * OpCost; in getArithmeticInstrCost() 251 return LT.first * 1 * OpCost; in getArithmeticInstrCost() 254 if (!TLI->isOperationExpand(ISD, LT.second)) { in getArithmeticInstrCost() 257 return LT.first * 2 * OpCost; in getArithmeticInstrCost() 385 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(ValTy); in getCmpSelInstrCost() local 387 if (!TLI->isOperationExpand(ISD, LT.second)) { in getCmpSelInstrCost() 390 return LT.first * 1; in getCmpSelInstrCost() [all …]
|
| /freebsd-10-stable/usr.bin/tset/ |
| D | map.c | 52 #define LT 0x04 macro 55 #define LE (LT | EQ) 111 mapp->conditional |= LT; in add_mapping() 114 if (mapp->conditional & LT) in add_mapping() 152 mapp->conditional = ~mapp->conditional & (EQ | GT | LT); in add_mapping() 174 if (mapp->conditional & LT) in add_mapping() 210 case LT: in mapped()
|
| /freebsd-10-stable/contrib/llvm/lib/Support/Windows/ |
| D | TimeValue.inc | 35 struct tm *LT; 40 LT = ::localtime(&OurTime); 41 assert(LT); 47 LT = &Storage; 52 strftime(Buffer, 25, "%b %d %H:%M %Y", LT);
|
| /freebsd-10-stable/contrib/llvm/lib/Target/ARM/ |
| D | ARMTargetTransformInfo.cpp | 197 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(Src); in getCastInstrCost() local 198 int Idx = CostTableLookup(NEONFltDblTbl, ISD, LT.second); in getCastInstrCost() 200 return LT.first * NEONFltDblTbl[Idx].Cost; in getCastInstrCost() 421 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(ValTy); in getCmpSelInstrCost() local 422 return LT.first; in getCmpSelInstrCost() 463 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(Tp); in getShuffleCost() local 465 int Idx = CostTableLookup(NEONShuffleTbl, ISD::VECTOR_SHUFFLE, LT.second); in getShuffleCost() 469 return LT.first * NEONShuffleTbl[Idx].Cost; in getShuffleCost() 476 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(Ty); in getArithmeticInstrCost() local 524 Idx = CostTableLookup(CostTbl, ISDOpcode, LT.second); in getArithmeticInstrCost() [all …]
|
| /freebsd-10-stable/sys/contrib/octeon-sdk/ |
| D | cvmx-access-native.h | 312 #define CVMX_BUILD_WRITE64(TYPE, LT) extern void cvmx_write64_##TYPE(uint64_t csr_addr, TYPE##_t va… argument 390 #define CVMX_BUILD_READ64(TYPE, LT) \ argument 401 #define CVMX_BUILD_READ64(TYPE, LT) \ argument 405 asm volatile (LT " %[v], 0(%[c])": [v] "=r" (val) : [c] "r" (addr));\ 412 #define CVMX_BUILD_READ64(TYPE, LT) extern TYPE##_t cvmx_read64_##TYPE(uint64_t csr_addr); argument 419 #define CVMX_BUILD_READ64(TYPE, LT) \ argument 436 LT " %[vall], 0(%[valh])\n" \ 460 LT " %[val], 0(%[val])\n" \
|
| /freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/ |
| D | NVPTX.h | 37 LT, enumerator 50 case NVPTXCC::LT: in NVPTXCondCodeToString() 156 LT, enumerator
|
| /freebsd-10-stable/contrib/llvm/lib/Support/Unix/ |
| D | TimeValue.inc | 27 struct tm *LT = ::localtime_r(&OurTime, &Storage); 28 assert(LT); 30 strftime(Buffer, 25, "%b %e %H:%M %Y", LT);
|
| /freebsd-10-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ |
| D | ARMBaseInfo.h | 41 LT, // Less than Less than, or unordered enumerator 60 case GE: return LT; in getOppositeCondition() 61 case LT: return GE; in getOppositeCondition() 81 case ARMCC::LT: return "lt"; in ARMCondCodeToString()
|
| /freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/ |
| D | PPCTargetTransformInfo.cpp | 234 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(Src); in getMemoryOpCost() local 239 unsigned Cost = LT.first * 1; in getMemoryOpCost() 243 unsigned SrcBytes = LT.second.getStoreSize(); in getMemoryOpCost()
|
| /freebsd-10-stable/contrib/gcc/config/s390/ |
| D | s390-modes.def | 47 CCS: EQ LT GT UNORDERED (LTGFR, LTGR, LTR, ICM/Y, 53 CCSR: EQ GT LT UNORDERED (CGF/R, CH/Y) 57 CCA: EQ LT GT Overflow 58 CCAP: EQ LT GT LT (AGHI, AHI) 59 CCAN: EQ LT GT GT (AGHI, AHI)
|
| /freebsd-10-stable/contrib/groff/contrib/mm/examples/ |
| D | README | 9 LT The letter macro 10 LT.se A swedish example with the extra
|
| /freebsd-10-stable/contrib/one-true-awk/ |
| D | awkgram.y | 54 %token <i> AND BOR APPEND EQ GE GT LE LT NE IN 81 %nonassoc APPEND EQ GE GT LE LT NE MATCHOP IN '|' 231 | pattern LT pattern { $$ = op2($2, $1, $3); } 372 | GETLINE var LT term { $$ = op3(GETLINE, $2, itonp($3), $4); } 373 | GETLINE LT term { $$ = op3(GETLINE, NIL, itonp($2), $3); } 469 case LE: case LT: case EQ: case NE: case GT: case GE:
|
| D | maketab.c | 49 { LT, "relop", " < " },
|
| D | lex.c | 247 yylval.i = LT; RET(LT); in yylex()
|
| /freebsd-10-stable/contrib/ncurses/progs/ |
| D | tset.c | 274 #define LT 0x04 macro 277 #define LE (LT | EQ) 420 mapp->conditional |= LT; in add_mapping() 423 if (mapp->conditional & LT) in add_mapping() 463 mapp->conditional = ~mapp->conditional & (EQ | GT | LT); in add_mapping() 488 if (mapp->conditional & LT) in add_mapping() 523 case LT: in mapped()
|
| /freebsd-10-stable/contrib/gcc/ |
| D | jump.c | 524 return LT; in reverse_condition() 525 case LT: in reverse_condition() 572 case LT: in reverse_condition_maybe_unordered() 589 return LT; in reverse_condition_maybe_unordered() 615 return LT; in swap_condition() 618 case LT: in swap_condition() 665 case LT: in unsigned_condition() 686 case LT: in signed_condition() 695 return LT; in signed_condition() 737 case LT: in comparison_dominates_p()
|
| D | loop-iv.c | 1461 if ((GET_CODE (a) == GT || GET_CODE (a) == LT) in implies_p() 1547 code = LT, op1 = gen_int_mode (const_val + 1, GET_MODE (op0)); in canon_condition() 1821 cond_under = simplify_gen_relational (LT, SImode, iv->extend_mode, in shorten_into_mode() 1829 case LT: in shorten_into_mode() 1891 case LT: in canonicalize_iv_subregs() 2063 case LT: in iv_number_of_iterations() 2081 get_mode_bounds (mode, (cond == LE || cond == LT), comp_mode, &mmin, &mmax); in iv_number_of_iterations() 2130 case LT: in iv_number_of_iterations() 2162 cond = (cond == LT) ? LE : LEU; in iv_number_of_iterations()
|
| D | dojump.c | 393 && ! can_compare_p (LT, mode, ccp_jump)) in do_jump() 396 do_compare_and_jump (exp, LT, LTU, if_false_label, if_true_label); in do_jump() 930 case LT: in do_compare_rtx_and_jump()
|
| /freebsd-10-stable/contrib/llvm/lib/Linker/ |
| D | LinkModules.cpp | 427 GlobalValue::LinkageTypes <, 533 GlobalValue::LinkageTypes <, in getLinkageResult() argument 550 LT = Src->getLinkage(); in getLinkageResult() 555 LT = Src->getLinkage(); in getLinkageResult() 558 LT = Dest->getLinkage(); in getLinkageResult() 563 LT = Src->getLinkage(); in getLinkageResult() 572 LT = Src->getLinkage(); in getLinkageResult() 575 LT = Dest->getLinkage(); in getLinkageResult() 581 LT = Dest->getLinkage(); in getLinkageResult() 584 LT = GlobalValue::ExternalLinkage; in getLinkageResult()
|
| /freebsd-10-stable/contrib/llvm/include/llvm/IR/ |
| D | GlobalValue.h | 217 void setLinkage(LinkageTypes LT) { Linkage = LT; } in setLinkage() argument
|
| /freebsd-10-stable/usr.bin/xlint/lint1/ |
| D | op.h | 81 LT, enumerator
|
| /freebsd-10-stable/contrib/llvm/lib/Analysis/ |
| D | DependenceAnalysis.cpp | 607 if (Direction & DVEntry::LT) in dump() 1066 Result.DV[Level].Direction &= Dependence::DVEntry::LT; in strongSIVtest() 1105 NewDirection = Dependence::DVEntry::LT; in strongSIVtest() 1167 Result.DV[Level].Direction &= unsigned(~Dependence::DVEntry::LT); in weakCrossingSIVtest() 1229 Result.DV[Level].Direction &= unsigned(~Dependence::DVEntry::LT); in weakCrossingSIVtest() 1484 NewDirection |= Dependence::DVEntry::LT; in exactSIVtest() 2529 case Dependence::DVEntry::LT: in exploreDirections() 2560 if (Bound[Level].Lower[Dependence::DVEntry::LT]) in exploreDirections() 2561 DEBUG(dbgs() << *Bound[Level].Lower[Dependence::DVEntry::LT] << '\t'); in exploreDirections() 2564 if (Bound[Level].Upper[Dependence::DVEntry::LT]) in exploreDirections() [all …]
|
| /freebsd-10-stable/contrib/llvm/lib/Target/AArch64/Utils/ |
| D | AArch64BaseInfo.h | 42 LT, // Less than Less than, or unordered enumerator 68 case A64CC::LT: return "lt"; in A64CondCodeToString() 92 .Case("lt", A64CC::LT) in A64StringToCondCode()
|
| /freebsd-10-stable/contrib/llvm/include/llvm/MC/ |
| D | MCExpr.h | 369 LT, ///< Signed less than comparison (result is either 0 or enumerator 430 return Create(LT, LHS, RHS, Ctx); in CreateLT()
|