Searched refs:ah (Results 226 - 250 of 313) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/ntp/libntp/
H A Dntp_calendar.c743 uint32_t ah = ts->D_s.hi; local
746 al = (al >> 7) | (ah << 25);
747 ah = (ah >> 7) & 0x00FFFFFFu;
752 R += (ah & 0xFFFF) * 346u; /* 2**32 % 675 */
753 R += (ah >> 16 ) * 181u; /* 2**48 % 675 */
804 uint32_t ah = ts->D_s.hi; local
806 al = (al >> 7) | (ah << 25);
807 ah = (ah >>
[all...]
/freebsd-11-stable/sys/dev/ath/
H A Dif_ath_misc.h66 extern int ath_hal_gethangstate(struct ath_hal *ah, uint32_t mask,
H A Dif_ath_ioctl.c171 struct ath_hal *ah = sc->sc_ah; local
213 if (ath_hal_getdiagstate(ah, id, indata, insize, &outdata, &outsize)) {
H A Dif_ath_sysctl.c423 struct ath_hal *ah = sc->sc_ah; local
431 rfkill = ath_hal_getrfkill(ah);
436 if (rfkill == ath_hal_getrfkill(ah)) { /* unchanged */
440 if (!ath_hal_setrfkill(ah, rfkill)) {
726 struct ath_hal *ah = sc->sc_ah; local
739 if (!ath_hal_getdiagstate(ah, HAL_DIAG_CHECK_HANGS,
813 struct ath_hal *ah = sc->sc_ah; local
871 if (ath_hal_hasdiversity(ah))
885 if (ath_hal_hastpc(ah)) {
896 if (ath_hal_hasrfsilent(ah)) {
[all...]
H A Dif_ath_tx_ht.c535 struct ath_hal *ah = sc->sc_ah; local
624 series[i].PktDuration = ath_hal_computetxtime(ah,
662 struct ath_hal *ah = sc->sc_ah; local
682 ath_hal_set11nratescenario(ah, ds,
698 //ath_hal_set11nburstduration(ah, ds, 8192);
/freebsd-11-stable/sys/netgraph/atm/
H A Dng_atm.c373 struct atm_pseudohdr *ah, void *rxhand)
387 M_PREPEND(*mp, sizeof(*ah), M_NOWAIT);
390 memcpy(mtod(*mp, struct atm_pseudohdr *), ah, sizeof(*ah));
403 if ((ATM_PH_FLAGS(ah) & ATMIO_FLAG_NG) == 0)
447 struct atm_pseudohdr *ah, void *rxhand)
465 M_PREPEND(m, sizeof(*ah), M_NOWAIT);
468 memcpy(mtod(m, struct atm_pseudohdr *), ah, sizeof(*ah));
372 ng_atm_input(struct ifnet *ifp, struct mbuf **mp, struct atm_pseudohdr *ah, void *rxhand) argument
446 ng_atm_input_orphans(struct ifnet *ifp, struct mbuf *m, struct atm_pseudohdr *ah, void *rxhand) argument
/freebsd-11-stable/sys/i386/acpica/
H A Dacpi_wakecode.S93 movb $0x01, %ah
/freebsd-11-stable/contrib/tcpdump/
H A Dprint-aodv.c181 const struct aodv_hello *ah; local
186 ah = (const struct aodv_hello *)(const void *)ep;
187 ND_TCHECK(*ah);
195 (unsigned long)EXTRACT_32BITS(&ah->interval)));
/freebsd-11-stable/contrib/ofed/libibverbs/
H A Dverbs.c96 int __ibv_destroy_ah(struct ibv_ah *ah);
629 struct ibv_ah *ah = pd->context->ops.create_ah(pd, attr); local
631 if (ah) {
632 ah->context = pd->context;
633 ah->pd = pd;
636 return ah;
899 int __ibv_destroy_ah(struct ibv_ah *ah) argument
901 return ah->context->ops.destroy_ah(ah);
H A Ddriver.h267 int ibv_cmd_create_ah(struct ibv_pd *pd, struct ibv_ah *ah,
271 int ibv_cmd_destroy_ah(struct ibv_ah *ah);
/freebsd-11-stable/sys/ofed/drivers/infiniband/ulp/ipoib/
H A Dipoib_main.c436 if (path->ah)
437 ipoib_put_ah(path->ah);
553 struct ipoib_ah *ah = NULL; local
572 ah = ipoib_create_ah(priv, priv->pd, &av);
577 if (ah) {
580 old_ah = path->ah;
581 path->ah = ah;
584 ah, be16_to_cpu(pathrec->dlid), pathrec->sl);
743 } else if (path->ah) {
1515 struct arphdr *ah; local
[all...]
H A Dipoib.h184 struct ipoib_ah *ah; member in struct:ipoib_mcast
405 struct ib_ah *ah; member in struct:ipoib_ah
419 struct ipoib_ah *ah; member in struct:ipoib_path
454 static inline void ipoib_put_ah(struct ipoib_ah *ah) argument
456 kref_put(&ah->ref, ipoib_free_ah);
/freebsd-11-stable/contrib/ofed/libmlx5/
H A Dverbs.c1637 struct mlx5_ah *ah; local
1661 ah = calloc(1, sizeof *ah);
1662 if (!ah)
1671 ah->av.rlid = htobe16(rand() % (RROCE_UDP_SPORT_MAX + 1
1679 ah->av.fl_mlid = attr->src_path_bits & 0x7f;
1680 ah->av.rlid = htobe16(attr->dlid);
1683 ah->av.stat_rate_sl = (attr->static_rate << 4) | attr->sl;
1685 ah->av.tclass = attr->grh.traffic_class;
1686 ah
1718 mlx5_destroy_ah(struct ibv_ah *ah) argument
[all...]
H A Dmlx5.h526 return to_mxxx(ah, ah);
655 int mlx5_destroy_ah(struct ibv_ah *ah);
657 struct mlx5_ah *ah);
658 void mlx5_free_av(struct mlx5_ah *ah);
/freebsd-11-stable/sys/net/
H A Dif_fddisubr.c137 struct arphdr *ah; local
138 ah = mtod(m, struct arphdr *);
139 ah->ar_hrd = htons(ARPHRD_ETHER);
143 switch (ntohs(ah->ar_op)) {
158 bcopy(ar_tha(ah), edst, FDDI_ADDR_LEN);
H A Dif_iso88025subr.c260 struct arphdr *ah; local
261 ah = mtod(m, struct arphdr *);
262 ah->ar_hrd = htons(ARPHRD_IEEE802);
266 switch(ntohs(ah->ar_op)) {
281 bcopy(ar_tha(ah), edst, ISO88025_ADDR_LEN);
/freebsd-11-stable/sys/dev/mthca/
H A Dmthca_qp.c515 static int mthca_path_set(struct mthca_dev *dev, const struct ib_ah_attr *ah, argument
518 path->g_mylmc = ah->src_path_bits & 0x7f;
519 path->rlid = cpu_to_be16(ah->dlid);
520 path->static_rate = mthca_get_rate(dev, ah->static_rate, port);
522 if (ah->ah_flags & IB_AH_GRH) {
523 if (ah->grh.sgid_index >= dev->limits.gid_table_len) {
525 ah->grh.sgid_index, dev->limits.gid_table_len-1);
530 path->mgid_index = ah->grh.sgid_index;
531 path->hop_limit = ah->grh.hop_limit;
533 cpu_to_be32((ah
[all...]
H A Dmthca_dev.h566 struct mthca_ah *ah);
567 int mthca_destroy_ah(struct mthca_dev *dev, struct mthca_ah *ah);
568 int mthca_read_ah(struct mthca_dev *dev, struct mthca_ah *ah,
571 int mthca_ah_grh_present(struct mthca_ah *ah);
H A Dmthca_provider.c416 struct mthca_ah *ah; local
418 ah = kmalloc(sizeof *ah, GFP_ATOMIC);
419 if (!ah)
422 err = mthca_create_ah(to_mdev(pd->device), to_mpd(pd), ah_attr, ah);
424 kfree(ah);
428 return &ah->ibah;
431 static int mthca_ah_destroy(struct ib_ah *ah) argument
433 mthca_destroy_ah(to_mdev(ah->device), to_mah(ah));
[all...]
/freebsd-11-stable/secure/lib/libcrypto/i386/
H A Dcmll-x86.S142 movzbl %ah,%esi
149 movzbl %ah,%esi
202 movzbl %ah,%esi
209 movzbl %ah,%esi
262 movzbl %ah,%esi
269 movzbl %ah,%esi
490 movzbl %ah,%esi
497 movzbl %ah,%esi
550 movzbl %ah,%esi
557 movzbl %ah,
[all...]
/freebsd-11-stable/contrib/amd/scripts/
H A Dexpn.11114 local($au,$ah);
1150 ($au,$ah) = ($1,$2);
1151 print "au = $au ah = $ah\n" if $debug;
1152 if (defined $temporary_redirect{"$addr *** $ah"}) {
1153 $addr = "$au\@".$temporary_redirect{"$addr *** $ah"};
H A Dexpn.in1113 local($au,$ah);
1149 ($au,$ah) = ($1,$2);
1150 print "au = $au ah = $ah\n" if $debug;
1151 if (defined $temporary_redirect{"$addr *** $ah"}) {
1152 $addr = "$au\@".$temporary_redirect{"$addr *** $ah"};
/freebsd-11-stable/stand/libsa/
H A Dip.c211 struct arphdr *ah = (void *)ip; local
212 if (ah->ar_op == htons(ARPOP_REQUEST)) {
214 arp_reply(d, ah);
/freebsd-11-stable/sys/amd64/acpica/
H A Dacpi_wakecode.S100 movb $0x01, %ah
/freebsd-11-stable/sys/dev/cm/
H A Dsmc90cx6.c498 struct arc_header *ah; local
559 ah = mtod(m, struct arc_header *);
560 ah->arc_shost = GETMEM(cm_ram_ptr + 0);
561 ah->arc_dhost = GETMEM(cm_ram_ptr + 1);

Completed in 754 milliseconds

1234567891011>>