Searched defs:extra (Results 1 - 25 of 395) sorted by last modified time

1234567891011>>

/external/zlib/src/contrib/blast/
H A Dblast.c246 * byte is 4, 5, or 6 for the number of extra bits in the distance code.
260 * no bit reversal is needed for either the length extra bits or the distance
261 * extra bits.
282 int symbol; /* decoded symbol, extra bits for distance */
308 static const char extra[16] = { /* extra bits for length codes */ local
330 len = base[symbol] + bits(s, extra[symbol]);
/external/zlib/src/contrib/infback9/
H A Dinfback9.c235 unsigned extra; /* extra bits needed */ local
513 /* length code -- get extra bits, if any */
514 extra = (unsigned)(here.op) & 31;
515 if (extra != 0) {
516 NEEDBITS(extra);
517 length += BITS(extra);
518 DROPBITS(extra);
546 /* get distance extra bits, if any */
547 extra
[all...]
H A Dinftree9.c56 const unsigned short FAR *extra; /* extra bits table to use */ local
57 int end; /* use base and extra for symbol > end */
64 static const unsigned short lext[31] = { /* Length codes 257..285 extra */
72 static const unsigned short dext[32] = { /* Distance codes 0..31 extra */
177 base = extra = work; /* dummy value--not used */
183 extra = lext;
184 extra -= 257;
189 extra = dext;
218 this.op = (unsigned char)(extra[wor
[all...]
/external/zlib/src/contrib/minizip/
H A Dmztools.c46 char extra[1024]; local
63 unsigned int extsize = READ_16(header + 28); /* extra field length */
64 filename[0] = extra[0] = '\0';
99 if (extsize < sizeof(extra)) {
100 if (fread(extra, 1, extsize, fpZip) == extsize) {
101 if (fwrite(extra, 1, extsize, fpOut) == extsize) {
188 if (fwrite(extra, 1, extsize, fpOutCD) == extsize) {
/external/zlib/src/
H A Dinflate.h24 OS, /* i: waiting for extra flags and operating system (gzip) */
25 EXLEN, /* i: waiting for extra length (gzip) */
26 EXTRA, /* i: waiting for extra bytes (gzip) */
42 LENEXT, /* i: waiting for length extra bits */
44 DISTEXT, /* i: waiting for distance extra bits */
104 unsigned extra; /* extra bits needed */ member in struct:inflate_state
H A Dinftrees.c56 const unsigned short FAR *extra; /* extra bits table to use */ local
57 int end; /* use base and extra for symbol > end */
63 static const unsigned short lext[31] = { /* Length codes 257..285 extra */
70 static const unsigned short dext[32] = { /* Distance codes 0..29 extra */
183 base = extra = work; /* dummy value--not used */
189 extra = lext;
190 extra -= 257;
195 extra = dext;
224 here.op = (unsigned char)(extra[wor
[all...]
H A Dtrees.c62 local const int extra_lbits[LENGTH_CODES] /* extra bits for each length code */
65 local const int extra_dbits[D_CODES] /* extra bits for each distance code */
68 local const int extra_blbits[BL_CODES]/* extra bits for each bit length code */
88 * need for the L_CODES extra codes used during heap construction. However
119 const intf *extra_bits; /* extra bits for each code or NULL */
495 const intf *extra = desc->stat_desc->extra_bits; local
501 int xbits; /* extra bits */
523 if (n >= base) xbits = extra[n-base];
653 /* node is 0 or 1 so it does not have extra bits */
1069 int extra; /* numbe local
[all...]
H A Dzlib.h115 int xflags; /* extra flags (not used when writing a gzip file) */
117 Bytef *extra; /* pointer to extra field or Z_NULL if none */ member in struct:gz_header_s
118 uInt extra_len; /* extra field length (valid if extra != Z_NULL) */
119 uInt extra_max; /* space at extra (only when reading header) */
554 file name, no extra data, no comment, no modification time (set to zero), no
751 deflate(). The text, time, os, extra field, name, and comment information
753 ignored -- the extra flags are set according to the compression level). The
755 a zero byte, and that if extra i
[all...]
/external/zlib/
H A Dzlib.h115 int xflags; /* extra flags (not used when writing a gzip file) */
117 Bytef *extra; /* pointer to extra field or Z_NULL if none */ member in struct:gz_header_s
118 uInt extra_len; /* extra field length (valid if extra != Z_NULL) */
119 uInt extra_max; /* space at extra (only when reading header) */
554 file name, no extra data, no comment, no modification time (set to zero), no
751 deflate(). The text, time, os, extra field, name, and comment information
753 ignored -- the extra flags are set according to the compression level). The
755 a zero byte, and that if extra i
[all...]
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Ddriver_nl80211.c1226 char extra[100], *pos, *end; local
1235 extra[0] = '\0';
1236 pos = extra;
1237 end = pos + sizeof(extra);
1268 extra[sizeof(extra) - 1] = '\0';
1271 ifi->ifi_index, ifname, extra, ifi->ifi_family,
1390 char extra[100], *pos, *end; local
1399 extra[0] = '\0';
1400 pos = extra;
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_common/
H A Deap_peap_common.c23 u8 extra[2]; local
43 extra[0] = 0;
44 extra[1] = 0;
48 addr[4] = extra;
60 extra[0] = buf_len & 0xff;
62 addr[3] = extra;
H A Deap_sim_common.c166 const u8 *mac, const u8 *extra, size_t extra_len)
184 addr[1] = extra;
192 wpa_hexdump(MSG_MSGDUMP, "EAP-SIM: Verify MAC - extra data",
193 extra, extra_len);
206 const u8 *extra, size_t extra_len)
214 addr[1] = extra;
220 wpa_hexdump(MSG_MSGDUMP, "EAP-SIM: Add MAC - extra data",
221 extra, extra_len);
361 const u8 *mac, const u8 *extra, size_t extra_len)
379 addr[1] = extra;
165 eap_sim_verify_mac(const u8 *k_aut, const struct wpabuf *req, const u8 *mac, const u8 *extra, size_t extra_len) argument
205 eap_sim_add_mac(const u8 *k_aut, const u8 *msg, size_t msg_len, u8 *mac, const u8 *extra, size_t extra_len) argument
360 eap_sim_verify_mac_sha256(const u8 *k_aut, const struct wpabuf *req, const u8 *mac, const u8 *extra, size_t extra_len) argument
400 eap_sim_add_mac_sha256(const u8 *k_aut, const u8 *msg, size_t msg_len, u8 *mac, const u8 *extra, size_t extra_len) argument
1007 eap_sim_msg_finish(struct eap_sim_msg *msg, int type, const u8 *k_aut, const u8 *extra, size_t extra_len) argument
1025 msg->mac, extra, extra_len); local
1032 extra, extra_len); local
[all...]
H A Deap_sim_common.h87 const u8 *mac, const u8 *extra, size_t extra_len);
89 const u8 *extra, size_t extra_len);
99 const u8 *mac, const u8 *extra,
102 u8 *mac, const u8 *extra, size_t extra_len);
127 const u8 *mac, const u8 *extra,
216 const u8 *extra, size_t extra_len);
125 eap_sim_verify_mac_sha256(const u8 *k_aut, const struct wpabuf *req, const u8 *mac, const u8 *extra, size_t extra_len) argument
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap_aka.c786 const u8 *mac, const u8 *extra,
790 return eap_sim_verify_mac_sha256(data->k_aut, req, mac, extra,
792 return eap_sim_verify_mac(data->k_aut, req, mac, extra, extra_len);
784 eap_aka_verify_mac(struct eap_aka_data *data, const struct wpabuf *req, const u8 *mac, const u8 *extra, size_t extra_len) argument
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap_server_aka.c900 const u8 *mac, const u8 *extra,
904 return eap_sim_verify_mac_sha256(data->k_aut, req, mac, extra,
906 return eap_sim_verify_mac(data->k_aut, req, mac, extra, extra_len);
898 eap_aka_verify_mac(struct eap_aka_data *data, const struct wpabuf *req, const u8 *mac, const u8 *extra, size_t extra_len) argument
/external/wpa_supplicant_8/hostapd/src/eapol_auth/
H A Deapol_auth_sm.c286 char *extra = ""; local
297 extra = " (pre-authentication)";
299 extra = " (PMKSA cache)";
304 extra);
/external/wpa_supplicant_8/hostapd/src/p2p/
H A Dp2p.c2011 size_t extra = 0; local
2015 extra = wpabuf_len(p2p->wfd_ie_probe_resp);
2019 extra += wpabuf_len(p2p->vendor_elem[VENDOR_ELEM_PROBE_RESP_P2P]);
2021 buf = wpabuf_alloc(1000 + extra);
2310 size_t extra = 0; local
2317 extra = wpabuf_len(p2p->wfd_ie_assoc_req);
2321 extra += wpabuf_len(p2p->vendor_elem[VENDOR_ELEM_P2P_ASSOC_REQ]);
2329 tmp = wpabuf_alloc(200 + extra);
3238 * Add 20 msec extra wait to avoid race condition with driver
H A Dp2p_go_neg.c138 size_t extra = 0; local
143 extra = wpabuf_len(p2p->wfd_ie_go_neg);
147 extra += wpabuf_len(p2p->vendor_elem[VENDOR_ELEM_P2P_GO_NEG_REQ]);
149 buf = wpabuf_alloc(1000 + extra);
268 size_t extra = 0; local
275 extra = wpabuf_len(p2p->wfd_ie_go_neg);
279 extra += wpabuf_len(p2p->vendor_elem[VENDOR_ELEM_P2P_GO_NEG_RESP]);
281 buf = wpabuf_alloc(1000 + extra);
619 * and extra frames, mark the pending negotiation as
850 size_t extra local
[all...]
H A Dp2p_group.c211 size_t extra = 0; local
215 extra = wpabuf_len(group->p2p->wfd_ie_beacon);
220 extra += wpabuf_len(group->p2p->vendor_elem[VENDOR_ELEM_BEACON_P2P_GO]);
222 ie = wpabuf_alloc(257 + extra);
463 struct wpabuf *extra; local
464 extra = wpabuf_dup(group->p2p->vendor_elem[VENDOR_ELEM_PROBE_RESP_P2P_GO]);
465 ie = wpabuf_concat(extra, ie);
647 size_t extra = 0; local
651 extra = wpabuf_len(group->wfd_ie);
656 extra
[all...]
H A Dp2p_invitation.c26 size_t extra = 0; local
46 extra = wpabuf_len(wfd_ie);
50 extra += wpabuf_len(p2p->vendor_elem[VENDOR_ELEM_P2P_INV_REQ]);
52 buf = wpabuf_alloc(1000 + extra);
114 size_t extra = 0; local
134 extra = wpabuf_len(wfd_ie);
137 buf = wpabuf_alloc(1000 + extra);
H A Dp2p_pd.c50 size_t extra = 0; local
54 extra = wpabuf_len(p2p->wfd_ie_prov_disc_req);
58 extra += wpabuf_len(p2p->vendor_elem[VENDOR_ELEM_P2P_PD_REQ]);
60 buf = wpabuf_alloc(1000 + extra);
98 size_t extra = 0; local
118 extra = wpabuf_len(wfd_ie);
122 extra += wpabuf_len(p2p->vendor_elem[VENDOR_ELEM_P2P_PD_RESP]);
124 buf = wpabuf_alloc(100 + extra);
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_module_tests.c17 int extra; member in struct:wps_attr_parse_test
290 switch (test->extra) {
/external/wpa_supplicant_8/src/drivers/
H A Ddriver_nl80211.c1226 char extra[100], *pos, *end; local
1235 extra[0] = '\0';
1236 pos = extra;
1237 end = pos + sizeof(extra);
1268 extra[sizeof(extra) - 1] = '\0';
1271 ifi->ifi_index, ifname, extra, ifi->ifi_family,
1390 char extra[100], *pos, *end; local
1399 extra[0] = '\0';
1400 pos = extra;
[all...]
/external/wpa_supplicant_8/src/eap_common/
H A Deap_peap_common.c23 u8 extra[2]; local
43 extra[0] = 0;
44 extra[1] = 0;
48 addr[4] = extra;
60 extra[0] = buf_len & 0xff;
62 addr[3] = extra;
H A Deap_sim_common.c166 const u8 *mac, const u8 *extra, size_t extra_len)
184 addr[1] = extra;
192 wpa_hexdump(MSG_MSGDUMP, "EAP-SIM: Verify MAC - extra data",
193 extra, extra_len);
206 const u8 *extra, size_t extra_len)
214 addr[1] = extra;
220 wpa_hexdump(MSG_MSGDUMP, "EAP-SIM: Add MAC - extra data",
221 extra, extra_len);
361 const u8 *mac, const u8 *extra, size_t extra_len)
379 addr[1] = extra;
165 eap_sim_verify_mac(const u8 *k_aut, const struct wpabuf *req, const u8 *mac, const u8 *extra, size_t extra_len) argument
205 eap_sim_add_mac(const u8 *k_aut, const u8 *msg, size_t msg_len, u8 *mac, const u8 *extra, size_t extra_len) argument
360 eap_sim_verify_mac_sha256(const u8 *k_aut, const struct wpabuf *req, const u8 *mac, const u8 *extra, size_t extra_len) argument
400 eap_sim_add_mac_sha256(const u8 *k_aut, const u8 *msg, size_t msg_len, u8 *mac, const u8 *extra, size_t extra_len) argument
1007 eap_sim_msg_finish(struct eap_sim_msg *msg, int type, const u8 *k_aut, const u8 *extra, size_t extra_len) argument
1025 msg->mac, extra, extra_len); local
1032 extra, extra_len); local
[all...]

Completed in 427 milliseconds

1234567891011>>