HomeSort by: relevance | last modified time | path
    Searched defs:LT (Results 1 - 25 of 47) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/lib/Support/
Chrono.cpp 30 struct tm *LT = ::localtime_r(&OurTime, &Storage);
31 assert(LT);
32 (void)LT;
44 struct tm LT = getStructTM(TP);
46 strftime(Buffer, sizeof(Buffer), "%Y-%m-%d %H:%M:%S", &LT);
58 struct tm LT = getStructTM(Truncated);
89 size_t Len = strftime(Buffer, sizeof(Buffer), Format.c_str(), &LT);
  /src/usr.bin/tset/
map.c 54 #define LT 0x04
57 #define LE (LT | EQ)
113 mapp->conditional |= LT;
116 if (mapp->conditional & LT)
154 mapp->conditional = ~mapp->conditional & (EQ | GT | LT);
176 if (mapp->conditional & LT)
213 case LT:
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTImporterLookupTable.cpp 23 ASTImporterLookupTable <
24 Builder(ASTImporterLookupTable &LT) : LT(LT) {}
30 LT.add(RTy->getAsRecordDecl());
33 LT.add(it);
40 LT.add(D);
59 LT.add(RTy->getAsCXXRecordDecl());
61 LT.add(SpecTy->getAsCXXRecordDecl());
65 LT.add(SubstTy->getAsCXXRecordDecl())
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Interp.h 156 // EQ, NE, GT, GE, LT, LE
230 bool LT(InterpState &S, CodePtr OpPC) {
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
DAGISelEmitter.cpp 83 const TreePatternNode *LT = LHS->getSrcPattern();
86 MVT LHSVT = LT->getNumTypes() != 0 ? LT->getSimpleType(0) : MVT::Other;
  /src/sys/external/isc/libsodium/dist/src/libsodium/sodium/
codecs.c 113 #define LT(x, y) GT(y, x)
119 return (LT(x, 26) & (x + 'A')) |
120 (GE(x, 26) & LT(x, 52) & (x + ('a' - 26))) |
121 (GE(x, 52) & LT(x, 62) & (x + ('0' - 52))) | (EQ(x, 62) & '+') |
140 return (LT(x, 26) & (x + 'A')) |
141 (GE(x, 26) & LT(x, 52) & (x + ('a' - 26))) |
142 (GE(x, 52) & LT(x, 62) & (x + ('0' - 52))) | (EQ(x, 62) & '-') |
  /src/external/apache2/argon2/dist/phc-winner-argon2/src/
encoding.c 77 #define LT(x, y) GT(y, x)
84 return (LT(x, 26) & (x + 'A')) |
85 (GE(x, 26) & LT(x, 52) & (x + ('a' - 26))) |
86 (GE(x, 52) & LT(x, 62) & (x + ('0' - 52))) | (EQ(x, 62) & '+') |
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARC/MCTargetDesc/
ARCInfo.h 36 LT = 0xb,
  /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTXTargetTransformInfo.cpp 378 std::pair<InstructionCost, MVT> LT = TLI->getTypeLegalizationCost(DL, Ty);
395 if (LT.second.SimpleTy == MVT::i64)
396 return 2 * LT.first;
NVPTX.h 30 LT,
152 LT,
  /src/lib/libcrypt/
crypt-argon2.c 86 #define LT(x, y) GT(y, x)
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
LineTable.cpp 253 LineTable LT;
255 LT.Lines.push_back(Row);
260 return LT;
289 raw_ostream &llvm::gsym::operator<<(raw_ostream &OS, const LineTable &LT) {
290 for (const auto &LineEntry : LT)
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/Utils/
ARMBaseInfo.h 42 LT, // Less than Less than, or unordered
61 case GE: return LT;
62 case LT: return GE;
81 case ARMCC::LT: return ARMCC::GT;
82 case ARMCC::GT: return ARMCC::LT;
159 case ARMCC::LT: return "lt";
182 .Case("lt", ARMCC::LT)
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonTargetTransformInfo.cpp 146 std::pair<InstructionCost, MVT> LT =
148 return LT.first + 2;
255 std::pair<InstructionCost, MVT> LT = TLI.getTypeLegalizationCost(DL, ValTy);
257 return LT.first + FloatFactor * getTypeNumElements(ValTy);
275 std::pair<InstructionCost, MVT> LT = TLI.getTypeLegalizationCost(DL, Ty);
276 if (LT.second.isFloatingPoint())
277 return LT.first + FloatFactor * getTypeNumElements(Ty);
  /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
paired.h 61 #define LT 0
68 #define paired_cmpu0_lt(a,b) __builtin_paired_cmpu0 (LT, (a), (b))
72 #define paired_cmpu1_lt(a,b) __builtin_paired_cmpu1 (LT, (a), (b))
  /src/usr.bin/xlint/lint1/
op.h 86 LT,
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
SwitchLoweringUtils.h 244 const ConstantInt *LT;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
DependenceAnalysis.h 90 LT = 1,
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCTargetTransformInfo.cpp 331 std::pair<InstructionCost, MVT> LT =
333 return LT.first * BaseT::getUserCost(U, Operands, CostKind);
992 std::pair<InstructionCost, MVT> LT = TLI->getTypeLegalizationCost(DL, Tp);
999 return vectorCostAdjustment(LT.first, Instruction::ShuffleVector, Tp,
1117 std::pair<InstructionCost, MVT> LT = TLI->getTypeLegalizationCost(DL, Src);
1130 (LT.second == MVT::v16i8 || LT.second == MVT::v8i16 ||
1131 LT.second == MVT::v4i32 || LT.second == MVT::v4f32);
1133 (LT.second == MVT::v2f64 || LT.second == MVT::v2i64)
    [all...]
  /src/external/bsd/pcc/dist/pcc/mip/
node.h 179 #define LT 28
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFDebugLine.cpp 540 struct LineTable *LT, uint64_t TableOffset,
542 : LineTable(LT), LineTableOffset(TableOffset), ErrorHandler(ErrorHandler) {
590 LineTable *LT = &Pos.first->second;
593 LT->parse(DebugLineData, &Offset, Ctx, U, RecoverableErrorHandler))
595 return LT;
597 return LT;
1452 LineTable LT;
1453 if (Error Err = LT.parse(DebugLineData, &Offset, Context, U,
1456 moveToNextTable(OldOffset, LT.Prologue);
1457 return LT;
    [all...]
DWARFVerifier.cpp 554 const auto *LT = U->getContext().getLineTableForUnit(U);
555 if (LT) {
556 if (!LT->hasFileAtIndex(*FileIdx)) {
557 bool IsZeroIndexed = LT->Prologue.getVersion() >= 5;
558 if (Optional<uint64_t> LastFileIdx = LT->getLastValidFileIndex()) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64TargetTransformInfo.cpp 224 auto LT = TLI->getTypeLegalizationCost(DL, RetTy);
227 if (LT.second == MVT::v2i64)
228 return LT.first * 2;
235 auto LT = TLI->getTypeLegalizationCost(DL, RetTy);
236 if (any_of(ValidMinMaxTys, [&LT](MVT M) { return M == LT.second; }))
237 return LT.first;
247 auto LT = TLI->getTypeLegalizationCost(DL, RetTy);
251 LT.second.getScalarSizeInBits() == RetTy->getScalarSizeInBits() ? 1 : 4;
252 if (any_of(ValidSatTys, [&LT](MVT M) { return M == LT.second; })
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/Utils/
AArch64BaseInfo.h 247 LT = 0xb, // Less than Less than, or unordered
276 case LT: return "lt";
310 case LT: return N; // N != V
  /src/external/gpl3/gdb.old/dist/sim/aarch64/
decode.h 48 LT = 0xb, /* meaning N != V */

Completed in 31 milliseconds

1 2