Home
last modified time | relevance | path

Searched refs:acp (Results 1 – 17 of 17) sorted by relevance

/freebsd/contrib/elftoolchain/ar/benchmark/
H A Dacp.sh16 dst=$2/acp.a
18 test -e $dst -o -e /tmp/acp \
25 $1, $3, $5, ($1>0?L/$1:0)}' /tmp/acp | sort | head -n 1
55 time $ar $op > /dev/null 2>> /tmp/acp
60 rm -rf /tmp/acp
65 rm -f /tmp/acp
/freebsd/contrib/wpa/src/ap/
H A Dwmm.c65 struct hostapd_wmm_ac_params *acp) in wmm_calc_regulatory_limit() argument
70 os_memcpy(acp, hapd->iconf->wmm_ac_params, in wmm_calc_regulatory_limit()
81 acp, chan->wmm_rules); in wmm_calc_regulatory_limit()
89 if (os_memcmp(acp, hapd->iface->prev_wmm, in wmm_calc_regulatory_limit()
91 os_memcpy(hapd->iface->prev_wmm, acp, in wmm_calc_regulatory_limit()
133 struct hostapd_wmm_ac_params *acp = &wmmp[e]; in hostapd_eid_wmm() local
135 ac->aci_aifsn = wmm_aci_aifsn(acp->aifs, in hostapd_eid_wmm()
136 acp->admission_control_mandatory, in hostapd_eid_wmm()
138 ac->cw = wmm_ecw(acp->cwmin, acp->cwmax); in hostapd_eid_wmm()
139 ac->txop_limit = host_to_le16(acp->txop_limit); in hostapd_eid_wmm()
/freebsd/sbin/devfs/
H A Ddevfs.c183 tokenize(const char *line, int *acp, char ***avp) in tokenize() argument
196 for (xcp = wline, *acp = 0; in tokenize()
204 ++*acp; in tokenize()
206 if (*acp == 0) in tokenize()
209 *avp = malloc(sizeof(**avp) * (*acp + 1)); in tokenize()
216 assert(ap <= *avp + (*acp)); in tokenize()
/freebsd/sys/dev/bnxt/bnxt_en/
H A Dbnxt_txrx.c498 struct rx_abuf_cmpl *acp; in bnxt_pkt_get_l2() local
559 acp = &((struct rx_abuf_cmpl *)cpr->ring.vaddr)[cpr->cons]; in bnxt_pkt_get_l2()
562 ri->iri_frags[i].irf_flid = (acp->opaque >> 16 & 0xff); in bnxt_pkt_get_l2()
563 ri->iri_frags[i].irf_idx = acp->opaque & 0xffff; in bnxt_pkt_get_l2()
564 ri->iri_frags[i].irf_len = le16toh(acp->len); in bnxt_pkt_get_l2()
565 ri->iri_len += le16toh(acp->len); in bnxt_pkt_get_l2()
577 struct rx_abuf_cmpl *acp; in bnxt_pkt_get_tpa() local
636 acp = &((struct rx_abuf_cmpl *)cpr->ring.vaddr)[cpr->cons]; in bnxt_pkt_get_tpa()
639 ri->iri_frags[i].irf_flid = ((acp->opaque >> 16) & 0xff); in bnxt_pkt_get_tpa()
640 ri->iri_frags[i].irf_idx = (acp->opaque & 0xffff); in bnxt_pkt_get_tpa()
[all …]
/freebsd/usr.bin/lastcomm/
H A Dlastcomm.c225 requested(char *argv[], struct acctv3 *acp) in requested() argument
230 p = user_from_uid(acp->ac_uid, 0); in requested()
233 if ((p = getdev(acp->ac_tty)) && !strcmp(p, *argv)) in requested()
235 if (!strncmp(acp->ac_comm, *argv, AC_COMM_LEN)) in requested()
/freebsd/crypto/krb5/src/windows/installer/wix/custom/
H A Dcustom.cpp660 JOBOBJECT_ASSOCIATE_COMPLETION_PORT acp;
661 acp.CompletionKey = 0;
674 acp.CompletionPort = hIo;
678 &acp,
679 sizeof(acp));
/freebsd/sys/netinet/
H A Dsctp_asconf.c2329 struct sctp_asconf_chunk *acp; in sctp_is_addr_pending() local
2344 acp = mtod(chk->data, struct sctp_asconf_chunk *); in sctp_is_addr_pending()
2346 asconf_limit = ntohs(acp->ch.chunk_length); in sctp_is_addr_pending()
2558 struct sctp_asconf_chunk *acp; in sctp_compose_asconf() local
2610 acp = mtod(m_asconf_chk, struct sctp_asconf_chunk *); in sctp_compose_asconf()
2611 memset(acp, 0, sizeof(struct sctp_asconf_chunk)); in sctp_compose_asconf()
2613 lookup_ptr = (caddr_t)(acp + 1); /* after the header */ in sctp_compose_asconf()
2617 acp->ch.chunk_type = SCTP_ASCONF; in sctp_compose_asconf()
2618 acp->ch.chunk_flags = 0; in sctp_compose_asconf()
2619 acp->serial_number = htonl(stcb->asoc.asconf_seq_out); in sctp_compose_asconf()
[all …]
H A Dsctp_output.c7011 struct sctp_asconf_chunk *acp; in sctp_toss_old_asconf() local
7018 acp = mtod(chk->data, struct sctp_asconf_chunk *); in sctp_toss_old_asconf()
7019 if (SCTP_TSN_GT(ntohl(acp->serial_number), asoc->asconf_seq_out_acked)) { in sctp_toss_old_asconf()
/freebsd/crypto/openssh/
H A Dreadconf.c700 match_cfg_line(Options *options, const char *full_line, int *acp, char ***avp, in match_cfg_line() argument
726 while ((attrib = argv_next(acp, avp)) != NULL) { in match_cfg_line()
729 argv_consume(acp); in match_cfg_line()
740 ((arg = argv_next(acp, avp)) != NULL && in match_cfg_line()
749 argv_consume(acp); /* consume remaining args */ in match_cfg_line()
787 } else if ((arg = argv_next(acp, avp)) == NULL) { in match_cfg_line()
H A Dservconf.c824 match_cfg_line(const char *full_line, int *acp, char ***avp, in match_cfg_line() argument
844 while ((oattrib = argv_next(acp, avp)) != NULL) { in match_cfg_line()
847 argv_consume(acp); /* mark all arguments consumed */ in match_cfg_line()
856 ((arg = argv_next(acp, avp)) != NULL && in match_cfg_line()
864 argv_consume(acp); /* consume remaining args */ in match_cfg_line()
893 arg = argv_next(acp, avp); in match_cfg_line()
/freebsd/sys/contrib/device-tree/src/arm/samsung/
H A Dexynos4210.dtsi31 bus_acp: bus-acp {
H A Dexynos4x12.dtsi31 bus_acp: bus-acp {
H A Dexynos5420.dtsi79 bus_g2d_acp: bus-g2d-acp {
/freebsd/contrib/arm-optimized-routines/math/test/traces/
H A Dsincosf.txt1155 -0x1.1232acp-9
2160 -0x1.2961acp-5
2162 -0x1.2961acp-5
3395 0x1.4433acp-5
3399 -0x1.4469acp-5
3400 0x1.4433acp-5
3401 -0x1.4469acp-5
4335 0x1.1098acp-9
7541 0x1.0276acp-10
8700 -0x1.1493acp-2
[all …]
/freebsd/sys/contrib/dev/broadcom/brcm80211/brcmfmac/
H A Dcfg80211.c6413 struct brcmf_cfg80211_edcf_acparam *acp, u8 *priority) in brcmf_wifi_prioritize_acparams() argument
6424 for (aci = 0; aci < EDCF_AC_COUNT; aci++, acp++) { in brcmf_wifi_prioritize_acparams()
6425 aifsn = acp->ACI & EDCF_AIFSN_MASK; in brcmf_wifi_prioritize_acparams()
6426 acm = (acp->ACI & EDCF_ACM_MASK) ? 1 : 0; in brcmf_wifi_prioritize_acparams()
6427 ecwmin = acp->ECW & EDCF_ECWMIN_MASK; in brcmf_wifi_prioritize_acparams()
6428 ecwmax = (acp->ECW & EDCF_ECWMAX_MASK) >> EDCF_ECWMAX_SHIFT; in brcmf_wifi_prioritize_acparams()
/freebsd/contrib/libarchive/libarchive/
H A Darchive_string.c1592 unsigned acp; member
1660 for (i = 0; acp_ocp_map[i].acp; i++) { in get_current_oemcp()
/freebsd/usr.sbin/services_mkdb/
H A Dservices1083 acp 599/tcp #Aeolon Core Protocol
1084 acp 599/udp #Aeolon Core Protocol