Home
last modified time | relevance | path

Searched refs:slt (Results 1 – 25 of 59) sorted by relevance

123

/freebsd-10-stable/contrib/groff/src/preproc/pic/
Dcommon.cpp30 line_type slt = lt; in dashed_circle() local
31 slt.type = line_type::solid; in dashed_circle()
45 circle(cent, rad, slt, -1.0); in dashed_circle()
130 line_type slt = lt; in dashed_ellipse() local
131 slt.type = line_type::solid; in dashed_ellipse()
177 ellipse_arc(cent, zpre, zdot, dim / 2, slt); in dashed_ellipse()
189 line_type slt = lt; in dotted_ellipse() local
190 slt.type = line_type::solid; in dotted_ellipse()
228 dot(cent + zdot, slt); in dotted_ellipse()
312 line_type slt = lt; in solid_arc() local
[all …]
Dtex.cpp363 line_type slt = lt; in dot() local
364 slt.type = line_type::solid; in dot()
365 line(pos, &pos, 1, slt); in dot()
Dobject.cpp227 line_type slt = lt; in draw_arrow() local
228 slt.type = line_type::solid; in draw_arrow()
237 slt.thickness = 0.1; in draw_arrow()
238 out->polygon(v, 3, slt, 1); in draw_arrow()
242 out->line(pos + base - n, &pos, 1, slt); in draw_arrow()
243 out->line(pos + base + n, &pos, 1, slt); in draw_arrow()
/freebsd-10-stable/contrib/llvm/patches/
Dpatch-r275633-llvm-r223171-fix-vectorizer.diff67 + %cmp = icmp slt i32 %i, %n
89 + %cmp1 = icmp slt i32 0, %n
94 - %cmp = icmp slt i32 %i.0, %n
112 + %cmp = icmp slt i32 %inc, %n
125 + %cmp1 = icmp slt i32 0, %n
130 - %cmp = icmp slt i32 %i.0, %n
148 + %cmp = icmp slt i32 %inc, %n
161 + %cmp1 = icmp slt i32 0, %n
166 - %cmp = icmp slt i32 %i.0, %n
184 + %cmp = icmp slt i32 %inc, %n
[all …]
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/
DAPInt.h1036 bool slt(const APInt &RHS) const;
1044 bool slt(uint64_t RHS) const { return slt(APInt(getBitWidth(), RHS)); } in slt() function
1068 bool sle(const APInt &RHS) const { return slt(RHS) || eq(RHS); } in sle()
1100 bool sgt(const APInt &RHS) const { return !slt(RHS) && !eq(RHS); } in sgt()
1132 bool sge(const APInt &RHS) const { return !slt(RHS); } in sge()
1696 inline APInt smin(const APInt &A, const APInt &B) { return A.slt(B) ? A : B; } in smin()
DAPSInt.h124 return IsUnsigned ? ult(RHS) : slt(RHS);
/freebsd-10-stable/contrib/gcc/config/mips/
Dgeneric.md27 shift,slt,clz,trap,multi,nop")
Dmips.md201 ;; slt set less than instructions
227 …pidxstore,prefetch,prefetchx,condmove,xfer,mthilo,mfhilo,const,arith,shift,slt,clz,trap,imul,imul3…
4495 [(set_attr "type" "slt")
4504 [(set_attr "type" "slt")
4523 [(set_attr "type" "slt")
4538 "slt\t%0,%z2,%1"
4539 [(set_attr "type" "slt")
4547 "slt\t%2,%1"
4548 [(set_attr "type" "slt")
4563 "slt\t%0,%.,%1"
[all …]
D5400.md63 (eq_attr "type" "arith,shift,slt,clz,const,nop,trap"))
D9000.md55 (eq_attr "type" "arith,shift,slt,clz,const,nop,trap"))
D4k.md130 (eq_attr "type" "arith,condmove,shift,const,nop,slt"))
D5500.md59 (eq_attr "type" "arith,shift,slt,clz,const,nop,trap"))
D4130.md69 (eq_attr "type" "const,arith,shift,slt,nop"))
D24k.md52 ;; sllv, slt, slti, sltiu, sltu, sra, srav, srl, srlv, sub, subu, wsbh,
58 (eq_attr "type" "arith,const,nop,shift,slt"))
D7000.md91 (eq_attr "type" "arith,shift,slt,clz,const,condmove,nop,trap"))
D5k.md104 (eq_attr "type" "arith,condmove,shift,const,nop,slt"))
Dsr71k.md193 (eq_attr "type" "arith,shift,slt,clz,const,trap"))
/freebsd-10-stable/sys/ofed/drivers/net/mlx4/
Dcmd.c2037 u32 slt; in mlx4_master_comm_channel() local
2049 slt = swab32(readl(&mfunc->comm[slave].slave_read)) in mlx4_master_comm_channel()
2052 if (toggle != slt) { in mlx4_master_comm_channel()
2054 != slt) { in mlx4_master_comm_channel()
2057 "Resynching.\n", slave, slt, in mlx4_master_comm_channel()
2060 slt; in mlx4_master_comm_channel()
2068 " read toggle %d, write toggle %d.\n", slave, slt, in mlx4_master_comm_channel()
/freebsd-10-stable/contrib/llvm/lib/Transforms/Instrumentation/
DBoundsChecking.cpp159 if (!SizeCI || SizeCI->getValue().slt(0)) { in instrument()
/freebsd-10-stable/contrib/llvm/lib/Analysis/
DDependenceAnalysis.cpp524 if (Xq.slt(0) || Yq.slt(0)) { in intersectConstraints()
1067 else if (Distance.slt(0)) in strongSIVtest()
1298 X = AM.slt(0) ? -A1 : A1; in findGCD()
1299 Y = BM.slt(0) ? B1 : -B1; in findGCD()
1320 (A.slt(0) && B.slt(0))) in floorOfQuotient()
1335 (A.slt(0) && B.slt(0))) in ceilingOfQuotient()
1350 return A.slt(B) ? A : B; in minAPInt()
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/
DLowerSwitch.cpp78 return CI1->getValue().slt(CI2->getValue()); in operator ()()
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/
DMips16InstrInfo.td449 // op2 can be cmp or slt/sltu
646 def BteqzT8SltX16: FEXT_T8I816_ins<"bteqz", "slt">, cbranch16;
673 def BtnezT8SltX16: FEXT_T8I816_ins<"btnez", "slt">, cbranch16;
1054 def SelTBteqZSlt: SelT<"bteqz", "slt">;
1109 def SelTBtneZSlt: SelT<"btnez", "slt">;
1208 def SltRxRy16: FRR16R_ins<0b00010, "slt", IIAlu>{
1212 def SltCCRxRy16: FCCRR16_ins<"slt">;
DMicroMipsInstrInfo.td72 def SLT_MM : MMRel, SetCC_R<"slt", setlt, GPR32Opnd>, ADD_FM_MM<0, 0x350>;
/freebsd-10-stable/contrib/llvm/lib/IR/
DMetadata.cpp476 if (ALow->getValue().slt(BLow->getValue())) { in getMostGenericRange()
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.h193 return CI1->getValue().slt(CI2->getValue()); in operator()

123