Searched refs:sge (Results 1 - 25 of 42) sorted by relevance

12

/openbsd-current/gnu/usr.bin/perl/lib/overload/
H A Dnumbers.pm121 sge
/openbsd-current/sys/dev/pv/
H A Dxbf.c450 struct xbf_sge *sge; local
488 sge = &xrd->xrd_req.req_sgl[nsg];
489 sge->sge_ref = map->dm_segs[seg].ds_addr;
490 sge->sge_first = nsg > 0 ? 0 :
493 sge->sge_last = sge->sge_first +
499 sge->sge_first, sge->sge_last);
501 KASSERT(sge->sge_last <= 7);
514 struct xbf_sge *sge; local
[all...]
/openbsd-current/gnu/usr.bin/perl/
H A Doverload.inc129 "(ge", /* sge */
/openbsd-current/gnu/usr.bin/perl/regen/
H A Doverload.pl158 sge (ge
H A Dopcode.pl122 Perl_pp_sle => [qw(slt sgt sge)],
/openbsd-current/sys/dev/ic/
H A Dnvmereg.h124 struct nvme_sge sge; member in union:nvme_sqe::__anon4
175 struct nvme_sge sge; member in union:nvme_sqe_io::__anon5
H A Dmpi.c204 mpi_dvatosge(struct mpi_sge *sge, u_int64_t dva) argument
206 htolem32(&sge->sg_addr_lo, dva);
207 htolem32(&sge->sg_addr_hi, dva >> 32);
759 struct mpi_sge sge; member in struct:inq_bundle
764 struct mpi_sge *sge; local
780 sge = &bundle->sge;
809 htolem32(&sge->sg_hdr, MPI_SGE_FL_TYPE_SIMPLE | MPI_SGE_FL_SIZE_64 |
813 mpi_dvatosge(sge, ccb->ccb_cmd_dva +
1527 struct mpi_sge *sge local
2608 struct mpi_sge sge; member in struct:__anon47
[all...]
/openbsd-current/sys/dev/pci/
H A Dvmwpvs.c892 struct vmwpvs_sge *sgl = ccb->ccb_sgl->list, *sge; local
899 sge = &sgl[i];
900 sge->addr = dmap->dm_segs[i].ds_addr;
901 sge->len = dmap->dm_segs[i].ds_len;
902 sge->flags = 0;
907 sizeof(*sge) * dmap->dm_nsegs,
H A Dmfii.c1126 struct mfii_sge *sge = (struct mfii_sge *)(ctx + 1); local
1129 io->sgl_offset0 = (uint32_t *)sge - (uint32_t *)io;
1132 htolem64(&sge->sg_addr, ccb->ccb_sense_dva);
1133 htolem32(&sge->sg_len, sizeof(*ccb->ccb_sense));
1134 sge->sg_flags = MFII_SGE_CHAIN_ELEMENT | MFII_SGE_ADDR_IOCPLBNTA;
1831 struct mfii_sge *sge = (struct mfii_sge *)(ctx + 1); local
1883 io->sgl_offset0 = ((u_int8_t *)sge - (u_int8_t *)io) / 4;
1884 io->chain_offset = ((u_int8_t *)sge - (u_int8_t *)io) / 16;
1885 htolem64(&sge->sg_addr, ccb->ccb_mfi_dva);
1886 htolem32(&sge
2578 struct mfii_sge *sge = NULL, *nsge = sglp; local
[all...]
H A Dmpii.c394 mpii_dvatosge(struct mpii_sge *sge, u_int64_t dva) argument
396 htolem32(&sge->sg_addr_lo, dva);
397 htolem32(&sge->sg_addr_hi, dva >> 32);
762 struct mpii_ieee_sge *csge, *nsge, *sge; local
786 /* offset to the chain sge from the beginning */
787 io->chain_offset = ((caddr_t)csge - (caddr_t)io) / sizeof(*sge);
794 /* address of the next sge */
798 sizeof(*sge));
809 sge = nsge;
810 sge
832 struct mpii_sge *csge, *nsge, *sge; local
[all...]
H A Dif_vic.c1030 struct vic_sg *sge; local
1093 sge = &txd->tx_sa.sa_sg[i];
1094 sge->sg_length = dmap->dm_segs[i].ds_len;
1095 sge->sg_addr_low = dmap->dm_segs[i].ds_addr;
H A Darc.c1231 struct arc_sge *sgl = ccb->ccb_cmd->sgl, *sge; local
1251 sge = &sgl[i];
1253 sge->sg_length = htole32(ARC_SGE_64BIT | dmap->dm_segs[i].ds_len);
1255 sge->sg_hi_addr = htole32((u_int32_t)(addr >> 32));
1256 sge->sg_lo_addr = htole32((u_int32_t)addr);
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp277 if (GapHigh.sge(GapLow) && IsInRanges(Gap, UnreachableRanges))
462 assert(High.sge(Low) && "Popularity shouldn't be negative.");
/openbsd-current/gnu/llvm/llvm/utils/vim/syntax/
H A Dllvm.vim34 syn keyword llvmStatement sdiv select sext sge sgt shl shufflevector sitofp
/openbsd-current/gnu/llvm/llvm/include/llvm/Support/
H A DKnownBits.h397 static std::optional<bool> sge(const KnownBits &LHS, const KnownBits &RHS);
/openbsd-current/gnu/llvm/llvm/include/llvm/ADT/
H A DAPSInt.h180 return IsUnsigned ? uge(RHS) : sge(RHS);
H A DAPInt.h1215 bool sge(const APInt &RHS) const { return !slt(RHS); }
1223 bool sge(int64_t RHS) const { return !slt(RHS); }
/openbsd-current/gnu/llvm/llvm/lib/Support/
H A DKnownBits.cpp381 std::optional<bool> KnownBits::sge(const KnownBits &LHS, const KnownBits &RHS) { function in class:KnownBits
392 return sge(RHS, LHS);
/openbsd-current/gnu/usr.bin/perl/dist/Safe/t/
H A Dsafeops.t187 sge $x ge $y
/openbsd-current/gnu/llvm/clang/include/clang/Basic/
H A DTargetInfo.h1084 (Value.sge(ImmRange.Min) && Value.sle(ImmRange.Max));
/openbsd-current/gnu/llvm/llvm/lib/AsmParser/
H A DLLLexer.cpp669 KEYWORD(sge); KEYWORD(ult); KEYWORD(ugt); KEYWORD(ule); KEYWORD(uge);
/openbsd-current/gnu/usr.bin/perl/ext/Opcode/
H A DOpcode.pm322 slt sgt sle sge seq sne scmp
/openbsd-current/gnu/usr.bin/perl/cpan/libnet/lib/Net/
H A DSMTP.pm375 $v =~ s/([^\041-\176]|=|\+)/sprintf "+%02X", ord($1)/sge;
/openbsd-current/gnu/usr.bin/perl/lib/B/
H A DOp_private.pm531 @{$bits{sge}}{1,0} = ($bf[1], $bf[1]);
/openbsd-current/gnu/llvm/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp1048 V2Size.hasValue() && DecompGEP1.Offset.sge(V2Size.getValue()) &&

Completed in 361 milliseconds

12