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

1 2 3

  /packages/apps/VoiceDialer/src/com/android/voicedialer/
RecognizerEngine.java 110 * @param sampleRate the same rate coming from the mic or micFile
114 InputStream mic = null; local
146 if (false) Log.d(TAG, "using mic file");
147 mic = new FileInputStream(micFile);
149 hdr.read(mic);
152 mic = new MicrophoneInputStream(sampleRate, sampleRate * 15);
156 recognizerClient.onMicrophoneStart(mic);
159 if (mLogger != null) mic = mLogger.logInputStream(mic, sampleRate);
176 " avail " + mic.available())
    [all...]
RecognizerClient.java 38 public void onMicrophoneStart(InputStream mic);
  /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/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_context_tree.h 20 MODE_INFO mic; member in struct:__anon17778
vp9_rdopt.c 769 MODE_INFO *const mic = xd->mi[0].src_mi; local
794 const PREDICTION_MODE A = vp9_above_block_mode(mic, above_mi, i);
795 const PREDICTION_MODE L = vp9_left_block_mode(mic, left_mi, i);
811 mic->bmi[i].as_mode = best_mode;
813 mic->bmi[i + j * 2].as_mode = best_mode;
815 mic->bmi[i + j].as_mode = best_mode;
825 mic->mbmi.mode = mic->bmi[3].as_mode;
839 MODE_INFO *const mic = xd->mi[0].src_mi; local
857 const PREDICTION_MODE A = vp9_above_block_mode(mic, above_mi, 0)
1043 MODE_INFO *const mic = xd->mi[0].src_mi; local
    [all...]
  /external/wpa_supplicant_8/src/eap_common/
eap_gpsk_common.h 64 int specifier, const u8 *data, size_t len, u8 *mic);
eap_sake_common.h 92 const u8 *mic_pos, u8 *mic);
eap_gpsk_common.c 476 * eap_gpsk_mic_len - Get the length of the MIC
479 * Returns: MIC length in bytes
500 const u8 *data, size_t len, u8 *mic)
504 "AES-CMAC MIC", (unsigned long) sk_len);
508 return omac1_aes_128(sk, data, len, mic);
513 * eap_gpsk_compute_mic - Compute EAP-GPSK MIC for an EAP packet
518 * @data: Input data to MIC
520 * @mic: Buffer for the computed MIC, eap_gpsk_mic_len(cipher) bytes
524 int specifier, const u8 *data, size_t len, u8 *mic)
    [all...]
eap_sake_common.c 302 * eap_sake_compute_mic - Compute EAP-SAKE MIC for an EAP packet
310 * @peer: MIC calculation for 0 = Server, 1 = Peer message
313 * @mic_pos: MIC position in the EAP packet (must be [eap .. eap + eap_len])
314 * @mic: Buffer for the computed 16-byte MIC
321 const u8 *mic_pos, u8 *mic)
368 peer ? "Peer MIC" : "Server MIC",
370 mic, EAP_SAKE_MIC_LEN);
  /external/wpa_supplicant_8/src/eap_server/
eap_server_gpsk.c 245 u8 mic[EAP_GPSK_MAX_MIC_LEN]; local
422 wpa_printf(MSG_DEBUG, "EAP-GPSK: Message too short for MIC "
430 data->specifier, payload, pos - payload, mic)
432 wpa_printf(MSG_DEBUG, "EAP-GPSK: Failed to compute MIC");
436 if (os_memcmp_const(mic, pos, miclen) != 0) {
437 wpa_printf(MSG_INFO, "EAP-GPSK: Incorrect MIC in GPSK-2");
438 wpa_hexdump(MSG_DEBUG, "EAP-GPSK: Received MIC", pos, miclen);
439 wpa_hexdump(MSG_DEBUG, "EAP-GPSK: Computed MIC", mic, miclen);
462 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");
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test__locale.py 13 maj, min, mic = [int(part) for part in uname()[2].split(".")]
14 if (maj, min, mic) < (8, 0, 0):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test__locale.py 13 maj, min, mic = [int(part) for part in uname()[2].split(".")]
14 if (maj, min, mic) < (8, 0, 0):
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
pickinter.c 200 MODE_INFO *const mic = xd->mode_info_context; local
208 const B_PREDICTION_MODE A = above_block_mode(mic, i, mis);
209 const B_PREDICTION_MODE L = left_block_mode(mic, i);
219 mic->bmi[i].as_mode = best_mode;
531 MODE_INFO *mic = x->e_mbd.mode_info_context; local
538 mic -= 1;
539 mv_l = mic->mbmi.mv;
541 if (mic->mbmi.ref_frame != INTRA_FRAME)
546 mic -= x->e_mbd.mode_info_stride;
547 mv_al = mic->mbmi.mv
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
pickinter.c 200 MODE_INFO *const mic = xd->mode_info_context; local
208 const B_PREDICTION_MODE A = above_block_mode(mic, i, mis);
209 const B_PREDICTION_MODE L = left_block_mode(mic, i);
219 mic->bmi[i].as_mode = best_mode;
528 MODE_INFO *mic = x->e_mbd.mode_info_context; local
535 mic -= 1;
536 mv_l = mic->mbmi.mv;
538 if (mic->mbmi.ref_frame != INTRA_FRAME)
543 mic -= x->e_mbd.mode_info_stride;
544 mv_al = mic->mbmi.mv
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
pickinter.c 201 MODE_INFO *const mic = xd->mode_info_context; local
210 const B_PREDICTION_MODE A = above_block_mode(mic, i, mis);
211 const B_PREDICTION_MODE L = left_block_mode(mic, i);
221 mic->bmi[i].as_mode = best_mode;
530 MODE_INFO *mic = x->e_mbd.mode_info_context; local
537 mic -= 1;
538 mv_l = mic->mbmi.mv;
540 if (mic->mbmi.ref_frame != INTRA_FRAME)
545 mic -= x->e_mbd.mode_info_stride;
546 mv_al = mic->mbmi.mv
    [all...]
  /external/wpa_supplicant_8/src/rsn_supp/
tdls.c 54 u8 mic[TDLS_MIC_LEN]; member in struct:wpa_tdls_ftie
441 * wpa_tdls_ftie_mic - Calculate TDLS FTIE MIC
447 * @mic: Pointer for writing MIC
449 * Calculate MIC for TDLS frame.
453 const u8 *ftie, u8 *mic)
463 wpa_printf(MSG_WARNING, "TDLS: No memory for MIC calculation");
486 /* 7) FTIE, with the MIC field of the FTIE set to 0 */
489 os_memset(_ftie->mic, 0, TDLS_MIC_LEN);
492 wpa_hexdump(MSG_DEBUG, "TDLS: Data for FTIE MIC", buf, pos - buf)
565 u8 mic[16]; local
593 u8 mic[16]; local
    [all...]
wpa_ft.c 136 * @kck: 128-bit KCK for MIC or %NULL if no MIC is used
289 * MIC shall be calculated over:
295 * FTIE (with MIC field set to 0)
305 ric_ies_len, ftie->mic) < 0) {
306 wpa_printf(MSG_INFO, "FT: Failed to calculate MIC");
602 /* Swap Tx/Rx keys for Michael MIC */
680 u8 mic[16]; local
767 wpa_printf(MSG_DEBUG, "FT: Unexpected IE count in MIC "
778 mic) < 0)
    [all...]
  /external/chromium_org/chrome/browser/resources/hotword_audio_verification/
style.css 199 .mic {
200 background: url(../images/mic-1x.png) no-repeat;
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
eapol.h 114 unsigned char mic[EAPOL_WPA_KEY_MIC_LEN]; /* Key MIC */ member in struct:__anon40157
  /external/wpa_supplicant_8/src/common/
wpa_common.c 24 * wpa_eapol_key_mic - Calculate EAPOL-Key MIC
29 * @mic: Pointer to the buffer to which the EAPOL-Key MIC is written
32 * Calculate EAPOL-Key MIC for an EAPOL-Key packet. The EAPOL-Key MIC field has
36 * description of the Key MIC calculation. It includes packet data from the
42 u8 *mic)
49 return hmac_md5(key, 16, buf, len, mic);
54 os_memcpy(mic, hash, MD5_MAC_LEN);
58 return omac1_aes_128(key, buf, len, mic);
    [all...]
wpa_common.h 306 u8 mic[16]; member in struct:rsn_ftie
331 u8 *mic);
342 const u8 *ric, size_t ric_len, u8 *mic);
  /external/wpa_supplicant_8/src/drivers/
driver_bsd.c 728 struct ieee80211_michael_event *mic; local
772 mic = (struct ieee80211_michael_event *) &ifan[1];
774 "Michael MIC failure wireless event: "
775 "keyix=%u src_addr=" MACSTR, mic->iev_keyix,
776 MAC2STR(mic->iev_src));
779 data.michael_mic_failure.src = mic->iev_src;
1184 struct ieee80211_michael_event *mic; local
1259 mic = (struct ieee80211_michael_event *) &ifan[1];
1261 "Michael MIC failure wireless event: "
1262 "keyix=%u src_addr=" MACSTR, mic->iev_keyix
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_rdopt.c 1175 MODE_INFO *const mic = xd->mi[0]; local
1245 MODE_INFO *const mic = xd->mi[0]; local
1480 MODE_INFO *const mic = xd->mi[0]; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_rdopt.c 1175 MODE_INFO *const mic = xd->mi[0]; local
1245 MODE_INFO *const mic = xd->mi[0]; local
1480 MODE_INFO *const mic = xd->mi[0]; local
    [all...]

Completed in 843 milliseconds

1 2 3