Home
last modified time | relevance | path

Searched refs:sle (Results 1 – 25 of 49) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DConstantRangeList.cpp24 CurRange.getLower().sle(PreRange.getUpper())) in isOrderedRanges()
64 if (!Ranges.empty() && NewRange.getLower().sle(Ranges.back().getUpper())) { in insert()
91 if (Ranges.back().getUpper().sle(SubRange.getLower())) in subtract()
93 if (SubRange.getUpper().sle(Ranges.front().getLower())) in subtract()
102 if (SubRange.getUpper().sle(Range.getLower()) || in subtract()
103 Range.getUpper().sle(SubRange.getLower())) { in subtract()
109 } else if (Range.getLower().sle(SubRange.getLower()) && in subtract()
110 SubRange.getUpper().sle(Range.getUpper())) { in subtract()
118 } else if (SubRange.getLower().sle(Range.getLower()) && in subtract()
119 Range.getUpper().sle(SubRange.getUpper())) { in subtract()
[all …]
/freebsd/sys/netpfil/ipfilter/netinet/
H A Dip_sync.c970 synclogent_t *sle; in ipf_sync_new() local
1066 sle = softs->synclog + softs->sl_idx++; in ipf_sync_new()
1067 bcopy((char *)&sl->sl_hdr, (char *)&sle->sle_hdr, in ipf_sync_new()
1068 sizeof(sle->sle_hdr)); in ipf_sync_new()
1069 sle->sle_hdr.sm_num = htonl(sle->sle_hdr.sm_num); in ipf_sync_new()
1070 sle->sle_hdr.sm_len = htonl(sle->sle_hdr.sm_len); in ipf_sync_new()
1072 bcopy((char *)ptr, (char *)&sle->sle_un, sz); in ipf_sync_new()
1074 ipf_sync_storder(1, &sle->sle_un.sleu_ips); in ipf_sync_new()
1076 ipf_sync_natorder(1, &sle->sle_un.sleu_ipn); in ipf_sync_new()
/freebsd/sys/fs/p9fs/
H A Dp9_protocol.c612 uint16_t sle; in p9_dirent_read() local
626 sle = strlen(nameptr); in p9_dirent_read()
627 strncpy(dent->d_name, nameptr, sle); in p9_dirent_read()
628 dent->len = sle; in p9_dirent_read()
/freebsd/sys/sys/
H A D_callout.h54 SLIST_ENTRY(callout) sle;
/freebsd/sys/dev/aic7xxx/
H A Daic79xx_osm.c503 sim_links.sle); in ahd_action()
627 sim_links.sle); in ahd_action()
1174 SLIST_REMOVE_HEAD(list, sim_links.sle); in ahd_abort_ccb()
1180 SLIST_NEXT(curelm, sim_links.sle); in ahd_abort_ccb()
1185 sim_links.sle) = in ahd_abort_ccb()
1187 sim_links.sle); in ahd_abort_ccb()
H A Daic7xxx_osm.c485 sim_links.sle); in ahc_action()
590 sim_links.sle); in ahc_action()
1233 SLIST_REMOVE_HEAD(list, sim_links.sle); in ahc_abort_ccb()
1239 SLIST_NEXT(curelm, sim_links.sle); in ahc_abort_ccb()
1244 sim_links.sle) = in ahc_abort_ccb()
1246 sim_links.sle); in ahc_abort_ccb()
H A Daic7xxx_inline.h372 SLIST_REMOVE_HEAD(&ahc->scb_data->free_scbs, links.sle); in ahc_get_scb()
390 SLIST_INSERT_HEAD(&ahc->scb_data->free_scbs, scb, links.sle); in ahc_free_scb()
H A Daic79xx.h612 SLIST_ENTRY(scb) sle;
617 SLIST_ENTRY(scb) sle;
H A Daic7xxx.h584 SLIST_ENTRY(scb) sle;
/freebsd/sys/dev/ida/
H A Didavar.h106 SLIST_ENTRY(ida_qcb) sle;
H A Dida.c139 SLIST_REMOVE_HEAD(&ida->free_qcbs, link.sle); in ida_get_qcb()
152 SLIST_INSERT_HEAD(&ida->free_qcbs, qcb, link.sle); in ida_free_qcb()
190 SLIST_INSERT_HEAD(&ida->free_qcbs, qcb, link.sle); in ida_alloc_qcbs()
/freebsd/sys/dev/firewire/
H A Dsbp_targ.c909 SLIST_REMOVE_HEAD(list, sim_links.sle); in sbp_targ_abort_ccb()
914 nextelm = SLIST_NEXT(curelm, sim_links.sle); in sbp_targ_abort_ccb()
917 SLIST_NEXT(curelm, sim_links.sle) = in sbp_targ_abort_ccb()
918 SLIST_NEXT(nextelm, sim_links.sle); in sbp_targ_abort_ccb()
1275 sim_links.sle); in sbp_targ_action1()
1301 sim_links.sle); in sbp_targ_action1()
1762 SLIST_REMOVE_HEAD(&login->lstate->accept_tios, sim_links.sle); in sbp_targ_fetch_orb()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DRandstruct.cpp201 if (CA->getSize().sle(2)) in randomizeStructureLayout()
/freebsd/sys/cam/scsi/
H A Dscsi_targ_bh.c321 periph_links.sle); in targbhenlun()
367 SLIST_REMOVE_HEAD(&softc->immed_notify_slist, periph_links.sle); in targbhdislun()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp69 return I != Ranges.end() && I->Low.sle(R.Low); in IsInRanges()
475 assert(I->Low.sle(I->High)); in ProcessSwitchInst()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h1146 bool sle(const APInt &RHS) const { return compareSigned(RHS) <= 0; } in sle() function
1154 bool sle(uint64_t RHS) const { return !sgt(RHS); } in sle() function
1181 bool sgt(const APInt &RHS) const { return !sle(RHS); } in sgt()
H A DAPSInt.h176 return IsUnsigned ? ule(RHS) : sle(RHS);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoadStoreVectorizer.cpp1053 (IOffset.sle(ChainElemOffset) && in isSafeToMove()
1055 (ChainElemOffset.sle(IOffset) && in isSafeToMove()
1230 IdxDiff.sle(cast<ConstantInt>(OpB->getOperand(1))->getSExtValue()) && in getConstantOffsetComplexAddrs()
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dspa.c2730 spa_load_error_t *sle = zio->io_private; in spa_load_verify_done() local
2739 atomic_inc_64(&sle->sle_meta_count); in spa_load_verify_done()
2741 atomic_inc_64(&sle->sle_data_count); in spa_load_verify_done()
2763 spa_load_error_t *sle = rio->io_private; in spa_load_verify_cb() local
2782 atomic_inc_64(&sle->sle_meta_count); in spa_load_verify_cb()
2791 (!spa_load_verify_data || !sle->sle_verify_data)) in spa_load_verify_cb()
2826 spa_load_error_t sle = { 0 }; in spa_load_verify() local
2849 sle.sle_verify_data = (policy.zlp_rewind & ZPOOL_REWIND_MASK) || in spa_load_verify()
2852 rio = zio_root(spa, NULL, &sle, in spa_load_verify()
2872 spa->spa_load_meta_errors = sle.sle_meta_count; in spa_load_verify()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DSlowDynamicAPInt.cpp144 return Val.sext(Width).sle(O.Val.sext(Width)); in operator <=()
H A DKnownBits.cpp528 if (LHS.getSignedMaxValue().sle(RHS.getSignedMinValue())) in sgt()
546 std::optional<bool> KnownBits::sle(const KnownBits &LHS, const KnownBits &RHS) { in sle() function in KnownBits
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DKnownBits.h442 static std::optional<bool> sle(const KnownBits &LHS, const KnownBits &RHS);
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetInfo.h1145 (Value.sge(ImmRange.Min) && Value.sle(ImmRange.Max)); in isValidAsmImmediate()
/freebsd/sys/cam/
H A Dcam_ccb.h320 SLIST_ENTRY(ccb_hdr) sle;
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLLexer.cpp698 KEYWORD(eq); KEYWORD(ne); KEYWORD(slt); KEYWORD(sgt); KEYWORD(sle); in LexIdentifier()

12