Home
last modified time | relevance | path

Searched refs:opos (Results 1 – 11 of 11) sorted by relevance

/freebsd-13-stable/contrib/wpa/src/utils/
HDuuid.c18 u8 *opos; in uuid_str2bin() local
21 opos = bin; in uuid_str2bin()
23 if (hexstr2bin(pos, opos, 4)) in uuid_str2bin()
26 opos += 4; in uuid_str2bin()
28 if (*pos++ != '-' || hexstr2bin(pos, opos, 2)) in uuid_str2bin()
31 opos += 2; in uuid_str2bin()
33 if (*pos++ != '-' || hexstr2bin(pos, opos, 2)) in uuid_str2bin()
36 opos += 2; in uuid_str2bin()
38 if (*pos++ != '-' || hexstr2bin(pos, opos, 2)) in uuid_str2bin()
41 opos += 2; in uuid_str2bin()
[all …]
HDcommon.c176 u8 *opos = buf; in hexstr2bin() local
182 *opos++ = a; in hexstr2bin()
/freebsd-13-stable/crypto/libecc/src/nn/
HDnn_logical.c41 int ipos, opos, dec, ret; in nn_lshift_fixedlen() local
54 for (opos = owlen - 1; opos >= 0; opos--) { in nn_lshift_fixedlen()
57 ipos = opos - dec - 1; in nn_lshift_fixedlen()
62 ipos = opos - dec; in nn_lshift_fixedlen()
67 out->val[opos] = hipart | lopart; in nn_lshift_fixedlen()
97 int ipos, opos, dec, ret; in nn_lshift() local
118 for (opos = owlen - 1; opos >= 0; opos--) { in nn_lshift()
121 ipos = opos - dec - 1; in nn_lshift()
126 ipos = opos - dec; in nn_lshift()
131 out->val[opos] = hipart | lopart; in nn_lshift()
[all …]
/freebsd-13-stable/contrib/wpa/src/eap_common/
HDeap_gpsk_common.c42 u8 *opos; in eap_gpsk_gkdf_cmac() local
55 opos = buf; in eap_gpsk_gkdf_cmac()
63 os_memcpy(opos, hash, clen); in eap_gpsk_gkdf_cmac()
64 opos += clen; in eap_gpsk_gkdf_cmac()
77 u8 *opos; in eap_gpsk_gkdf_sha256() local
90 opos = buf; in eap_gpsk_gkdf_sha256()
98 os_memcpy(opos, hash, clen); in eap_gpsk_gkdf_sha256()
99 opos += clen; in eap_gpsk_gkdf_sha256()
/freebsd-13-stable/contrib/sendmail/src/
HDheaders.c2107 int opos, omax, spaces; local
2136 opos = strlen(h->h_field) + 1;
2137 if (opos > 201)
2138 opos = 201;
2139 obp += opos;
2149 SM_ASSERT(sizeof(obuf) > opos * 2);
2161 opos += spaces;
2276 opos += strlen(name);
2278 opos += 2;
2279 if (opos > omax && !firstone)
[all …]
/freebsd-13-stable/contrib/wpa/src/wps/
HDwps_common.c31 u8 hash[SHA256_MAC_LEN], *opos; in wps_kdf() local
46 opos = res; in wps_kdf()
53 os_memcpy(opos, hash, SHA256_MAC_LEN); in wps_kdf()
54 opos += SHA256_MAC_LEN; in wps_kdf()
57 os_memcpy(opos, hash, left); in wps_kdf()
/freebsd-13-stable/contrib/libarchive/libarchive/
HDarchive_write_add_filter_zstd.c452 size_t ipos, opos, zstdret = 0; in drive_compressor() local
457 opos = data->out.pos; in drive_compressor()
484 data->cur_frame_out += data->out.pos - opos; in drive_compressor()
/freebsd-13-stable/contrib/wpa/src/tls/
HDx509v3.c88 char *ipos, *opos; in x509_str_strip_whitespace() local
91 ipos = opos = a; in x509_str_strip_whitespace()
98 *opos++ = *ipos++; in x509_str_strip_whitespace()
102 *opos-- = '\0'; in x509_str_strip_whitespace()
103 if (opos > a && x509_whitespace(*opos)) in x509_str_strip_whitespace()
104 *opos = '\0'; in x509_str_strip_whitespace()
/freebsd-13-stable/contrib/less/
HDsearch.c2056 POSITION opos; in search() local
2133 opos = position(sindex_from_sline(jump_sline)); in search()
2181 else if (pos != opos) in search()
/freebsd-13-stable/contrib/wpa/src/ap/
HDwpa_auth.c6871 u8 *opos; local
6980 opos = pos;
6982 if (pos - opos >= 2 + RSN_SELECTOR_LEN + WPA_IGTK_KDE_PREFIX_LEN) {
6984 opos += 2 + RSN_SELECTOR_LEN + 2;
6985 os_memset(opos, 0, 6); /* clear PN */
7055 u8 *opos; local
7078 opos = pos;
7080 if (pos - opos >=
7083 opos += 2 + RSN_SELECTOR_LEN + 2;
7084 os_memset(opos, 0, 6); /* clear PN */
/freebsd-13-stable/sys/contrib/zstd/lib/compress/
HDzstd_compress.c4451 size_t const opos = output->pos; in ZSTD_compressStream2() local
4464 …if (input->pos != ipos || output->pos != opos || input->pos == input->size || output->pos == outpu… in ZSTD_compressStream2()