Home
last modified time | relevance | path

Searched refs:param_length (Results 1 – 10 of 10) sorted by relevance

/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/
Dsctp_asconf.c95 aph->ph.param_length = sizeof(struct sctp_asconf_paramhdr); in sctp_asconf_success_response()
96 SCTP_BUF_LEN(m_reply) = aph->ph.param_length; in sctp_asconf_success_response()
97 aph->ph.param_length = htons(aph->ph.param_length); in sctp_asconf_success_response()
110 uint16_t i, param_length, cause_length, padding_length; in sctp_asconf_error_response() local
117 param_length = sizeof(struct sctp_asconf_paramhdr) + cause_length; in sctp_asconf_error_response()
122 buf_len = param_length + padding_length; in sctp_asconf_error_response()
137 aph->ph.param_length = htons(param_length); in sctp_asconf_error_response()
163 uint16_t param_length; in sctp_process_asconf_add_ip() local
177 aparam_length = ntohs(aph->ph.param_length); in sctp_process_asconf_add_ip()
184 param_length = ntohs(ph->param_length); in sctp_process_asconf_add_ip()
[all …]
Dsctp_output.c2026 paramh->param_length = htons(plen); in sctp_add_addr_to_mbuf()
2041 paramh->param_length = htons(plen); in sctp_add_addr_to_mbuf()
3990 ph->param_length = 0; /* fill in at the end */
4025 ph->param_length = htons(cookie_sz);
5156 ali->ph.param_length = htons(parameter_len);
5166 ph->param_length = htons(parameter_len);
5175 ph->param_length = htons(parameter_len);
5184 ph->param_length = htons(parameter_len);
5219 pr_supported->ph.param_length = htons(parameter_len);
5254 hmacs->ph.param_length = htons(parameter_len);
[all …]
Dsctp.h83 uint16_t param_length; /* parameter length */ member
Dsctp_auth.c1417 plen = ntohs(phdr->param_length);
1824 plen = ntohs(phdr->param_length);
1997 ph->param_length = htons(plen);
2006 ph->param_length = htons(plen);
2020 ph->param_length = htons(plen);
Dsctp_input.c3816 len = SCTP_SIZE32(ntohs(r->ph.param_length));
3875 lparam_len = ntohs(req_param->ph.param_length);
3963 if (ntohs(respin->ph.param_length) < sizeof(struct sctp_stream_reset_response_tsn)) {
4039 len = ntohs(req->ph.param_length);
4158 len = ntohs(req->ph.param_length);
4437 param_len = ntohs(ph->param_length);
Dsctp_pcb.c2434 plen = ntohs(phdr->param_length);
2693 if (ntohs(phdr->param_length) != sizeof(struct sctp_ipv6addr_param)) {
2722 if (ntohs(phdr->param_length) != sizeof(struct sctp_ipv4addr_param)) {
7135 plen = ntohs(phdr->param_length);
/third_party/libwebsockets/lib/roles/http/server/
Dlws-spa.c90 int *param_length; member
542 spa->param_length[n] += len; in lws_urldecode_spa_cb()
593 spa->param_length = lwsac_use_zero(i->ac, in lws_spa_create_via_info()
596 spa->param_length = lws_zalloc(sizeof(int) * (unsigned int)i->count_params, in lws_spa_create_via_info()
598 if (!spa->param_length) in lws_spa_create_via_info()
661 return spa->param_length[n]; in lws_spa_get_length()
702 lws_free(spa->param_length); in lws_spa_destroy()
/third_party/mindspore/mindspore/nn/optim/
Doptimizer.py199 self.param_length = len(self.parameters)
224 if self.dev_num > self.param_length:
226 … " less than the number of devices {}".format(self.param_length, self.dev_num))
233 self.optim_filter = (True,) * self.param_length
613 for _ in range(self.param_length):
632 for i in range(self.param_length):
/third_party/boost/libs/geometry/doc/src/docutils/tools/doxygen_xml2qbk/
Dquickbook_output.hpp854 std::string quickbook_section_function(function const& f, size_t param_length = 3) in quickbook_section_function() argument
856 if (param_length < 1) in quickbook_section_function()
857 param_length = 1; in quickbook_section_function()
883 size_t n = (std::min)(param_length, (size_t)p.type.size()); in quickbook_section_function()
/third_party/curl/src/
Dtool_getparam.c354 size_t param_length = strlen(cert_parameter); in parse_cert_parameter() local
362 if(param_length == 0) in parse_cert_parameter()
375 certname_place = malloc(param_length + 1); in parse_cert_parameter()