HomeSort by relevance Sort by last modified time
    Searched defs:mic (Results 1 - 25 of 30) sorted by null

1 2

  /external/eigen/bench/btl/data/
mean.cxx 41 Lib_Mean(const string & name, const double & mic, const double & moc):_lib_name(name),_mean_in_cache(mic),_mean_out_of_cache(moc){
68 INFOS("!!! Error ... usage : main what mic Mic moc Moc filename1 finename2...");
87 double mic=0; local
97 mic=mean_calc(tab_sizes,tab_mflops,min_in_cache,max_in_cache);
100 Lib_Mean cur_lib_mean(filename,mic,moc);
  /external/wpa_supplicant_8/src/rsn_supp/
wpa_ft.c 131 * @kck: 128-bit KCK for MIC or %NULL if no MIC is used
291 * MIC shall be calculated over:
297 * FTIE (with MIC field set to 0)
307 ric_ies_len, ftie->mic) < 0) {
308 wpa_printf(MSG_INFO, "FT: Failed to calculate MIC");
603 /* Swap Tx/Rx keys for Michael MIC */
681 u8 mic[WPA_EAPOL_KEY_MIC_MAX_LEN]; local
773 wpa_printf(MSG_DEBUG, "FT: Unexpected IE count in MIC "
784 mic) < 0)
    [all...]
tdls.c 55 u8 mic[TDLS_MIC_LEN]; member in struct:wpa_tdls_ftie
460 * wpa_tdls_ftie_mic - Calculate TDLS FTIE MIC
466 * @mic: Pointer for writing MIC
468 * Calculate MIC for TDLS frame.
472 const u8 *ftie, u8 *mic)
482 wpa_printf(MSG_WARNING, "TDLS: No memory for MIC calculation");
505 /* 7) FTIE, with the MIC field of the FTIE set to 0 */
508 os_memset(_ftie->mic, 0, TDLS_MIC_LEN);
511 wpa_hexdump(MSG_DEBUG, "TDLS: Data for FTIE MIC", buf, pos - buf)
584 u8 mic[16]; local
612 u8 mic[16]; local
    [all...]
wpa.c 45 * @key_mic: Pointer to the buffer to which the EAPOL-Key MIC is written
84 "WPA: Failed to generate EAPOL-Key version %d key_mgmt 0x%x MIC",
91 wpa_hexdump(MSG_DEBUG, "WPA: Derived Key MIC",
95 /* AEAD cipher - Key MIC field not used */
170 * @error: Indicate whether this is an Michael MIC error report
174 * used to request rekeying and it is usually called when a local Michael MIC
182 u8 bssid[ETH_ALEN], *rbuf, *key_mic, *mic; local
226 mic = (u8 *) (reply + 1);
227 WPA_PUT_BE16(mic + mic_len, 0);
231 key_mic = mic;
1720 u8 mic[WPA_EAPOL_KEY_MIC_MAX_LEN]; local
2007 u8 *mic, *key_data; local
    [all...]
  /external/curl/lib/
security.c 306 static const char *mic = "MIC "; local
310 socket_write(conn, fd, mic, 4);
314 infof(conn->data, "Send: %s%s\n", prot_level == PROT_PRIVATE?enc:mic,
  /external/libvpx/libvpx/vp9/encoder/
vp9_context_tree.h 27 MODE_INFO mic; member in struct:__anon26195
vp9_pickmode.c 1098 MODE_INFO *const mic = xd->mi[0]; local
    [all...]
vp9_rdopt.c 1187 MODE_INFO *const mic = xd->mi[0]; local
1252 MODE_INFO *const mic = xd->mi[0]; local
    [all...]
  /external/syslinux/gpxe/src/net/80211/
wpa_tkip.c 83 /** TKIP trailer overhead (MIC + ICV) [assumes unfragmented] */
86 /** TKIP MIC length */
313 * @v key MIC key to use (8 bytes)
318 * @ret mic Calculated Michael MIC (8 bytes)
321 const void *data, size_t len, void *mic )
361 /* Output MIC */
364 memcpy ( mic, V, sizeof ( V ) );
383 u8 mic[8]; local
417 /* Add MIC */
456 u8 mic[8]; local
    [all...]
wpa_ccmp.c 61 /** CCMP MIC trailer overhead */
178 * @v msrcv MIC value to encrypt or decrypt (may be NULL)
180 * @ret mdestv Encrypted or decrypted MIC value
246 * Calculate MIC on plaintext data using CBC-MAC
250 * @v data Data to calculate MIC over
252 * @v aad Additional authentication data, for MIC but not encryption
253 * @ret mic MIC value (unencrypted), 8 bytes
261 const void *aad, void *mic )
306 /* Get MIC from final value of X *
329 u8 mic[8], tx_pn[6]; local
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_gpsk.c 247 u8 mic[EAP_GPSK_MAX_MIC_LEN]; local
438 wpa_printf(MSG_DEBUG, "EAP-GPSK: Message too short for MIC "
446 data->specifier, payload, pos - payload, mic)
448 wpa_printf(MSG_DEBUG, "EAP-GPSK: Failed to compute MIC");
452 if (os_memcmp_const(mic, pos, miclen) != 0) {
453 wpa_printf(MSG_INFO, "EAP-GPSK: Incorrect MIC in GPSK-2");
454 wpa_hexdump(MSG_DEBUG, "EAP-GPSK: Received MIC", pos, miclen);
455 wpa_hexdump(MSG_DEBUG, "EAP-GPSK: Computed MIC", mic, miclen);
478 u8 mic[EAP_GPSK_MAX_MIC_LEN] local
    [all...]
eap_server_sake.c 185 u8 *mic; local
199 mic = wpabuf_put(msg, EAP_SAKE_MIC_LEN);
203 wpabuf_head(msg), wpabuf_len(msg), mic, mic))
205 wpa_printf(MSG_INFO, "EAP-SAKE: Failed to compute MIC");
  /external/wpa_supplicant_8/src/eap_peer/
eap_gpsk.c 549 u8 mic[EAP_GPSK_MAX_MIC_LEN]; local
556 wpa_printf(MSG_DEBUG, "EAP-GPSK: Message too short for MIC "
563 data->specifier, payload, pos - payload, mic)
565 wpa_printf(MSG_DEBUG, "EAP-GPSK: Failed to compute MIC");
568 if (os_memcmp_const(mic, pos, miclen) != 0) {
569 wpa_printf(MSG_INFO, "EAP-GPSK: Incorrect MIC in GPSK-3");
570 wpa_hexdump(MSG_DEBUG, "EAP-GPSK: Received MIC", pos, miclen);
571 wpa_hexdump(MSG_DEBUG, "EAP-GPSK: Computed MIC", mic, miclen);
  /external/syslinux/gpxe/src/include/gpxe/
wpa.h 57 /** Key MIC bit; set when the MIC field is valid, on messages 3 and 4 */
63 /** Error bit; set on a MIC failure for TKIP */
159 u8 mic[16]; member in struct:eapol_key_pkt
208 /** Length of a TKIP MIC key */
233 /** Michael MIC keys */
235 /** MIC key for packets from the AP */
238 /** MIC key for packets to the AP */
240 } __attribute__ (( packed )) mic; member in struct:tkip_tk
377 /** Calculate MIC over messag
387 void ( * mic ) ( const void *kck, const void *msg, size_t len, member in struct:wpa_kie
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
eapol.h 114 unsigned char mic[EAPOL_WPA_KEY_MIC_LEN]; /* Key MIC */ member in struct:__anon46956
802.11.h 57 /* Includes MIC */
3315 uint8 mic[16]; member in struct:dot11_ft_ie
3350 uint8 mic[BIP_MIC_SIZE]; \/* mic *\/ member in struct:mmic_ie
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
pickinter.c 228 MODE_INFO *const mic = xd->mode_info_context; local
235 const B_PREDICTION_MODE A = above_block_mode(mic, i, mis);
236 const B_PREDICTION_MODE L = left_block_mode(mic, i);
246 mic->bmi[i].as_mode = best_mode;
513 MODE_INFO *mic = x->e_mbd.mode_info_context; local
519 mic -= 1;
520 mv_l = mic->mbmi.mv;
522 if (mic->mbmi.ref_frame != INTRA_FRAME) {
529 mic -= x->e_mbd.mode_info_stride;
530 mv_al = mic->mbmi.mv
    [all...]
rdopt.c 611 MODE_INFO *const mic = xd->mode_info_context; local
617 const B_PREDICTION_MODE A = above_block_mode(mic, i, mis);
618 const B_PREDICTION_MODE L = left_block_mode(mic, i);
632 mic->bmi[i].as_mode = best_mode;
814 MODE_INFO *const mic = xd->mode_info_context; local
847 this_mv->as_int = col ? d[-1].bmi.mv.as_int : left_block_mv(mic, i);
851 row ? d[-4].bmi.mv.as_int : above_block_mv(mic, i, mis);
860 left_mv.as_int = col ? d[-1].bmi.mv.as_int : left_block_mv(mic, i);
    [all...]
  /external/wpa_supplicant_8/src/common/
ieee802_11_common.h 63 const u8 *mic; member in struct:ieee802_11_elems
wpa_common.h 193 /* variable length Key MIC field */
308 u8 mic[16]; member in struct:rsn_ftie
332 const u8 *buf, size_t len, u8 *mic);
360 const u8 *ric, size_t ric_len, u8 *mic);
  /external/wpa_supplicant_8/src/drivers/
driver_bsd.c 779 struct ieee80211_michael_event *mic; local
826 mic = (struct ieee80211_michael_event *) &ifan[1];
828 "Michael MIC failure wireless event: "
829 "keyix=%u src_addr=" MACSTR, mic->iev_keyix,
830 MAC2STR(mic->iev_src));
833 data.michael_mic_failure.src = mic->iev_src;
1219 struct ieee80211_michael_event *mic; local
    [all...]
driver_wext.c 300 const struct iw_michaelmicfailure *mic; local
303 if (len < sizeof(*mic))
306 mic = (const struct iw_michaelmicfailure *) ev;
308 wpa_printf(MSG_DEBUG, "Michael MIC failure wireless event: "
309 "flags=0x%x src_addr=" MACSTR, mic->flags,
310 MAC2STR(mic->src_addr.sa_data));
313 data.michael_mic_failure.unicast = !(mic->flags & IW_MICFAILURE_GROUP);
    [all...]
  /external/wpa_supplicant_8/src/ap/
wpa_auth.c 816 /* Supplicant reported a Michael MIC error */
819 "(STA detected Michael MIC failure (group=%d))",
824 "ignore Michael MIC failure report since "
828 "ignore Michael MIC failure report since "
882 "WPA: Earlier SNonce did not result in matching MIC");
887 "WPA: Earlier SNonce resulted in matching MIC");
909 u8 *mic; local
925 mic = (u8 *) (key + 1);
927 key_data = mic + mic_len + 2;
928 key_data_length = WPA_GET_BE16(mic + mic_len)
1627 u8 mic[WPA_EAPOL_KEY_MIC_MAX_LEN], *mic_pos; local
2607 const u8 *eapol_key_ie, *key_data, *mic; local
    [all...]
wpa_auth_ft.c 2251 u8 mic[WPA_EAPOL_KEY_MIC_MAX_LEN]; local
    [all...]
  /sdk/apps/DeviceConfig/src/com/example/android/deviceconfig/
ConfigGenerator.java 122 public static final String NODE_MIC = "mic";
366 Element mic = doc.createElement(PREFIX + NODE_MIC); local
367 hardware.appendChild(mic);
374 mic.appendChild(micText);

Completed in 981 milliseconds

1 2