Searched defs:sle (Results 1 – 6 of 6) sorted by relevance
233 class sle(base_job.status_log_entry): class in Status
1144 bool sle(const APInt &RHS) const { return compareSigned(RHS) <= 0; } in sle() function1152 bool sle(uint64_t RHS) const { return !sgt(RHS); } in sle() function
1259 bool sle(const APInt &RHS) const { return compareSigned(RHS) <= 0; } in sle() function1267 bool sle(uint64_t RHS) const { return !sgt(RHS); } in sle() function
1067 bool sle(const APInt &RHS) const { return slt(RHS) || eq(RHS); } in sle() function1075 bool sle(uint64_t RHS) const { return !sgt(RHS); } in sle() function
1091 bool sle(const APInt &RHS) const { return slt(RHS) || eq(RHS); } in sle() function1099 bool sle(uint64_t RHS) const { return !sgt(RHS); } in sle() function
391 std::optional<bool> KnownBits::sle(const KnownBits &LHS, const KnownBits &RHS) { in sle() function in KnownBits