Searched refs:sle (Results 1 - 25 of 38) sorted by relevance

12

/freebsd-11-stable/sys/sys/
H A D_callout.h54 SLIST_ENTRY(callout) sle; member in union:callout::__anon1
/freebsd-11-stable/sys/contrib/ipfilter/netinet/
H A Dip_sync.c1007 synclogent_t *sle; local
1103 sle = softs->synclog + softs->sl_idx++;
1104 bcopy((char *)&sl->sl_hdr, (char *)&sle->sle_hdr,
1105 sizeof(sle->sle_hdr));
1106 sle->sle_hdr.sm_num = htonl(sle->sle_hdr.sm_num);
1107 sle->sle_hdr.sm_len = htonl(sle->sle_hdr.sm_len);
1109 bcopy((char *)ptr, (char *)&sle->sle_un, sz);
1111 ipf_sync_storder(1, &sle
[all...]
/freebsd-11-stable/sys/dev/ida/
H A Didavar.h106 SLIST_ENTRY(ida_qcb) sle; member in union:ida_qcb::__anon10260
H A Dida.c139 SLIST_REMOVE_HEAD(&ida->free_qcbs, link.sle);
152 SLIST_INSERT_HEAD(&ida->free_qcbs, qcb, link.sle);
190 SLIST_INSERT_HEAD(&ida->free_qcbs, qcb, link.sle);
/freebsd-11-stable/sys/dev/aic7xxx/
H A Daic7xxx_osm.c481 sim_links.sle);
587 sim_links.sle);
1240 SLIST_REMOVE_HEAD(list, sim_links.sle);
1246 SLIST_NEXT(curelm, sim_links.sle);
1251 sim_links.sle) =
1253 sim_links.sle);
H A Daic79xx_osm.c496 sim_links.sle);
621 sim_links.sle);
1179 SLIST_REMOVE_HEAD(list, sim_links.sle);
1185 SLIST_NEXT(curelm, sim_links.sle);
1190 sim_links.sle) =
1192 sim_links.sle);
H A Daic7xxx_inline.h372 SLIST_REMOVE_HEAD(&ahc->scb_data->free_scbs, links.sle);
390 SLIST_INSERT_HEAD(&ahc->scb_data->free_scbs, scb, links.sle);
H A Daic79xx.h612 SLIST_ENTRY(scb) sle; member in union:scb::__anon9063
617 SLIST_ENTRY(scb) sle; member in union:scb::__anon9064
H A Daic7xxx.h584 SLIST_ENTRY(scb) sle; member in union:scb::__anon9082
H A Daic7xxx.c4592 next_scb, links.sle);
6371 SLIST_REMOVE_HEAD(&lstate->immed_notifies, sim_links.sle);
6894 SLIST_FOREACH(scb, &ahc->scb_data->free_scbs, links.sle) {
7822 SLIST_REMOVE_HEAD(&lstate->accept_tios, sim_links.sle);
/freebsd-11-stable/sys/cam/scsi/
H A Dscsi_targ_bh.c321 periph_links.sle);
365 SLIST_REMOVE_HEAD(&softc->immed_notify_slist, periph_links.sle);
/freebsd-11-stable/sys/dev/firewire/
H A Dsbp_targ.c909 SLIST_REMOVE_HEAD(list, sim_links.sle);
914 nextelm = SLIST_NEXT(curelm, sim_links.sle);
917 SLIST_NEXT(curelm, sim_links.sle) =
918 SLIST_NEXT(nextelm, sim_links.sle);
1275 sim_links.sle);
1301 sim_links.sle);
1766 SLIST_REMOVE_HEAD(&login->lstate->accept_tios, sim_links.sle);
/freebsd-11-stable/sys/kern/
H A Dkern_timeout.c337 SLIST_INSERT_HEAD(&cc->cc_callfree, c, c_links.sle);
634 SLIST_INSERT_HEAD(&cc->cc_callfree, c, c_links.sle);
913 SLIST_REMOVE_HEAD(&cc->cc_callfree, c_links.sle);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h1259 bool sle(const APInt &RHS) const { return compareSigned(RHS) <= 0; }
1267 bool sle(uint64_t RHS) const { return !sgt(RHS); }
1294 bool sgt(const APInt &RHS) const { return !sle(RHS); }
H A DAPSInt.h162 return IsUnsigned ? ule(RHS) : sle(RHS);
/freebsd-11-stable/sys/dev/isp/
H A Disp_freebsd.c990 SLIST_REMOVE_HEAD(&tptr->atios, sim_links.sle);
995 SLIST_REMOVE_HEAD(&tptr->inots, sim_links.sle);
1704 SLIST_REMOVE_HEAD(&tptr->atios, sim_links.sle);
1882 SLIST_REMOVE_HEAD(&tptr->atios, sim_links.sle);
2426 SLIST_REMOVE_HEAD(&tptr->inots, sim_links.sle);
2892 SLIST_FOREACH(sccb, &tptr->atios, sim_links.sle) {
2895 SLIST_REMOVE(&tptr->atios, sccb, ccb_hdr, sim_links.sle);
2943 SLIST_FOREACH(sccb, &tptr->inots, sim_links.sle) {
2946 SLIST_REMOVE(&tptr->inots, sccb, ccb_hdr, sim_links.sle);
3093 SLIST_INSERT_HEAD(&tptr->atios, &ccb->ccb_h, sim_links.sle);
[all...]
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dspa.c2033 spa_load_error_t *sle = zio->io_private; local
2042 atomic_inc_64(&sle->sle_meta_count);
2044 atomic_inc_64(&sle->sle_data_count);
2121 spa_load_error_t sle = { 0 }; local
2139 rio = zio_root(spa, NULL, &sle,
2157 spa->spa_load_meta_errors = sle.sle_meta_count;
2158 spa->spa_load_data_errors = sle.sle_data_count;
2160 if (sle.sle_meta_count != 0 || sle.sle_data_count != 0) {
2162 "and %llu data errors", (u_longlong_t)sle
[all...]
/freebsd-11-stable/sys/dev/iir/
H A Diir.c274 SLIST_INSERT_HEAD(&gdt->sc_free_gccb, gccb, sle);
663 SLIST_REMOVE_HEAD(&gdt->sc_free_gccb, sle);
664 SLIST_INSERT_HEAD(&gdt->sc_pending_gccb, gccb, sle);
680 SLIST_REMOVE(&gdt->sc_pending_gccb, gccb, gdt_ccb, sle);
681 SLIST_INSERT_HEAD(&gdt->sc_free_gccb, gccb, sle);
H A Diir.h698 SLIST_ENTRY(gdt_ccb) sle; member in struct:gdt_ccb
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetInfo.h889 (Value.sge(ImmRange.Min) && Value.sle(ImmRange.Max));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLLexer.cpp709 KEYWORD(eq); KEYWORD(ne); KEYWORD(slt); KEYWORD(sgt); KEYWORD(sle);
/freebsd-11-stable/sys/cam/
H A Dcam_ccb.h306 SLIST_ENTRY(ccb_hdr) sle; member in union:__anon5213
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoadStoreVectorizer.cpp454 IdxDiff.sle(cast<ConstantInt>(OpB->getOperand(1))->getSExtValue())) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp1601 if (TL.sle(TU)) {
1627 if (TL.sle(TU)) {
1644 if (TL.sle(TU)) {
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
H A DMveEmitter.cpp901 if (lo.sle(typelo) && hi.sge(typehi))

Completed in 473 milliseconds

12