Searched refs:slt (Results 1 - 25 of 28) sorted by path

12

/freebsd-9.3-release/contrib/gdb/gdb/
H A Dhpread.c49 char *slt; member in struct:hpread_symfile_info
80 #define SLT(o) (HPUX_SYMFILE_INFO(o)->slt)
/freebsd-9.3-release/contrib/groff/src/preproc/pic/
H A Dcommon.cpp30 line_type slt = lt; local
31 slt.type = line_type::solid;
45 circle(cent, rad, slt, -1.0);
130 line_type slt = lt; local
131 slt.type = line_type::solid;
177 ellipse_arc(cent, zpre, zdot, dim / 2, slt);
189 line_type slt = lt; local
190 slt.type = line_type::solid;
228 dot(cent + zdot, slt);
312 line_type slt local
348 line_type slt = lt; local
486 line_type slt = lt; local
[all...]
H A Dobject.cpp227 line_type slt = lt; local
228 slt.type = line_type::solid;
237 slt.thickness = 0.1;
238 out->polygon(v, 3, slt, 1);
242 out->line(pos + base - n, &pos, 1, slt);
243 out->line(pos + base + n, &pos, 1, slt);
H A Dtex.cpp363 line_type slt = lt; local
364 slt.type = line_type::solid;
365 line(pos, &pos, 1, slt);
/freebsd-9.3-release/contrib/llvm/include/llvm/ADT/
H A DAPInt.h1036 bool slt(const APInt &RHS) const;
1044 bool slt(uint64_t RHS) const { return slt(APInt(getBitWidth(), RHS)); }
1068 bool sle(const APInt &RHS) const { return slt(RHS) || eq(RHS); }
1100 bool sgt(const APInt &RHS) const { return !slt(RHS) && !eq(RHS); }
1132 bool sge(const APInt &RHS) const { return !slt(RHS); }
1696 inline APInt smin(const APInt &A, const APInt &B) { return A.slt(B) ? A : B; }
H A DAPSInt.h124 return IsUnsigned ? ult(RHS) : slt(RHS);
/freebsd-9.3-release/contrib/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp524 if (Xq.slt(0) || Yq.slt(0)) {
1067 else if (Distance.slt(0))
1298 X = AM.slt(0) ? -A1 : A1;
1299 Y = BM.slt(0) ? B1 : -B1;
1320 (A.slt(0) && B.slt(0)))
1335 (A.slt(0) && B.slt(0)))
1350 return A.slt(
[all...]
H A DMemoryBuiltins.cpp377 if (Offset.slt(0) || ObjSize.ult(Offset))
H A DScalarEvolution.cpp6032 if (LHSRange.getSignedMax().slt(RHSRange.getSignedMin()))
6354 return (MaxValue - MaxStrideMinusOne).slt(MaxRHS);
/freebsd-9.3-release/contrib/llvm/lib/AsmParser/
H A DLLLexer.cpp607 KEYWORD(eq); KEYWORD(ne); KEYWORD(slt); KEYWORD(sgt); KEYWORD(sle);
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1667 case ISD::SETLT: return getConstant(C1.slt(C2), VT);
H A DSelectionDAGBuilder.cpp2505 if (minValue.isNonNegative() && maxValue.slt(IntPtrBits)) {
H A DSelectionDAGBuilder.h193 return CI1->getValue().slt(CI2->getValue());
/freebsd-9.3-release/contrib/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp182 IMPLEMENT_INTEGER_ICMP(slt,Ty);
183 IMPLEMENT_VECTOR_INTEGER_ICMP(slt,Ty);
/freebsd-9.3-release/contrib/llvm/lib/IR/
H A DConstantFold.cpp1644 case ICmpInst::ICMP_SLT: return ConstantInt::get(ResultTy, V1.slt(V2));
H A DMetadata.cpp476 if (ALow->getValue().slt(BLow->getValue())) {
/freebsd-9.3-release/contrib/llvm/lib/Support/
H A DAPInt.cpp547 bool APInt::slt(const APInt& RHS) const { function in class:APInt
H A DConstantRange.cpp200 if ((getUpper() - 1).slt(getLower())) {
/freebsd-9.3-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp52 return Result->getValue().slt(In1->getValue());
85 return Result->getValue().slt(In1->getValue());
2149 std::swap(Op0, Op1); // Change icmp sgt -> icmp slt
2151 case ICmpInst::ICMP_SLT: { // icmp slt i1 A, B -> A & ~B
2399 if (Op0Max.slt(Op1Min)) // A <s B -> true if max(A) < min(C)
2429 if (Op0Max.slt(Op1Min)) // A >=s B -> false if max(A) < min(B)
2666 // icmp slt (X + -1), Y -> icmp sle X, Y
2676 // icmp sle (X + 1), Y -> icmp slt X, Y
H A DInstCombineMulDivRem.cpp95 return MulExt.slt(Min) || MulExt.sgt(Max);
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Instrumentation/
H A DBoundsChecking.cpp159 if (!SizeCI || SizeCI->getValue().slt(0)) {
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp3718 if ((C->getValue()->getValue() + NewF.BaseOffset).abs().slt(
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp78 return CI1->getValue().slt(CI2->getValue());
H A DSimplifyCFG.cpp3706 if (CaseVal->getValue().slt(MinCaseVal->getValue()))
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGStmt.cpp917 if (LHS.isSigned() ? RHS.slt(LHS) : RHS.ult(LHS))

Completed in 420 milliseconds

12