| /freebsd/contrib/elftoolchain/ar/benchmark/ |
| H A D | acp.sh | 16 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 D | wmm.c | 65 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 D | devfs.c | 183 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 D | bnxt_txrx.c | 498 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 D | lastcomm.c | 225 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 D | custom.cpp | 660 JOBOBJECT_ASSOCIATE_COMPLETION_PORT acp; 661 acp.CompletionKey = 0; 674 acp.CompletionPort = hIo; 678 &acp, 679 sizeof(acp));
|
| /freebsd/sys/netinet/ |
| H A D | sctp_asconf.c | 2329 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 D | sctp_output.c | 7011 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 D | servconf.c | 1050 match_cfg_line(const char *full_line, int *acp, char ***avp, in match_cfg_line() argument 1069 while ((oattrib = argv_next(acp, avp)) != NULL) { in match_cfg_line() 1073 argv_consume(acp); /* mark all arguments consumed */ in match_cfg_line() 1081 ((arg = argv_next(acp, avp)) != NULL && in match_cfg_line() 1089 argv_consume(acp); /* consume remaining args */ in match_cfg_line() 1118 arg = argv_next(acp, avp); in match_cfg_line()
|
| H A D | readconf.c | 712 match_cfg_line(Options *options, const char *full_line, int *acp, char ***avp, in match_cfg_line() argument 738 while ((attrib = argv_next(acp, avp)) != NULL) { in match_cfg_line() 742 argv_consume(acp); in match_cfg_line() 752 ((arg = argv_next(acp, avp)) != NULL && in match_cfg_line() 761 argv_consume(acp); /* consume remaining args */ in match_cfg_line() 798 } else if ((arg = argv_next(acp, avp)) == NULL) { in match_cfg_line()
|
| /freebsd/sys/contrib/device-tree/src/arm/samsung/ |
| H A D | exynos4210.dtsi | 31 bus_acp: bus-acp {
|
| H A D | exynos4x12.dtsi | 31 bus_acp: bus-acp {
|
| H A D | exynos5420.dtsi | 79 bus_g2d_acp: bus-g2d-acp {
|
| /freebsd/contrib/arm-optimized-routines/math/test/traces/ |
| H A D | sincosf.txt | 1155 -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/contrib/libarchive/libarchive/ |
| H A D | archive_string.c | 1580 unsigned acp; member 1648 for (i = 0; acp_ocp_map[i].acp; i++) { in get_current_oemcp()
|
| /freebsd/usr.sbin/services_mkdb/ |
| H A D | services | 1083 acp 599/tcp #Aeolon Core Protocol 1084 acp 599/udp #Aeolon Core Protocol
|