/external/wpa_supplicant/ |
D | crypto.c | 159 AES_KEY *ak; in aes_encrypt_init() local 160 ak = os_malloc(sizeof(*ak)); in aes_encrypt_init() 161 if (ak == NULL) in aes_encrypt_init() 163 if (AES_set_encrypt_key(key, 8 * len, ak) < 0) { in aes_encrypt_init() 164 os_free(ak); in aes_encrypt_init() 167 return ak; in aes_encrypt_init() 185 AES_KEY *ak; in aes_decrypt_init() local 186 ak = os_malloc(sizeof(*ak)); in aes_decrypt_init() 187 if (ak == NULL) in aes_decrypt_init() 189 if (AES_set_decrypt_key(key, 8 * len, ak) < 0) { in aes_decrypt_init() [all …]
|
D | eap_psk_common.c | 25 void eap_psk_key_setup(const u8 *psk, u8 *ak, u8 *kdk) in eap_psk_key_setup() argument 27 os_memset(ak, 0, aes_block_size); in eap_psk_key_setup() 28 aes_128_encrypt_block(psk, ak, ak); in eap_psk_key_setup() 29 os_memcpy(kdk, ak, aes_block_size); in eap_psk_key_setup() 30 ak[aes_block_size - 1] ^= 0x01; in eap_psk_key_setup() 32 aes_128_encrypt_block(psk, ak, ak); in eap_psk_key_setup()
|
D | eap_pax_common.c | 132 int eap_pax_initial_key_derivation(u8 mac_id, const u8 *ak, const u8 *e, in eap_pax_initial_key_derivation() argument 136 if (eap_pax_kdf(mac_id, ak, EAP_PAX_AK_LEN, "Master Key", in eap_pax_initial_key_derivation() 144 wpa_hexdump_key(MSG_MSGDUMP, "EAP-PAX: AK", ak, EAP_PAX_AK_LEN); in eap_pax_initial_key_derivation()
|
D | eap_psk.c | 31 u8 ak[EAP_PSK_AK_LEN], kdk[EAP_PSK_KDK_LEN], tek[EAP_PSK_TEK_LEN]; member 52 eap_psk_key_setup(config->eappsk, data->ak, data->kdk); in eap_psk_init() 53 wpa_hexdump_key(MSG_DEBUG, "EAP-PSK: AK", data->ak, EAP_PSK_AK_LEN); in eap_psk_init() 162 omac1_aes_128(data->ak, buf, buflen, hdr2->mac_p); in eap_psk_process_1() 232 omac1_aes_128(data->ak, buf, buflen, mac); in eap_psk_process_3()
|
D | eap_pax.c | 45 u8 ak[EAP_PAX_AK_LEN]; member 87 os_memcpy(data->ak, config->eappsk, EAP_PAX_AK_LEN); in eap_pax_init() 95 os_memcpy(data->ak, hash, EAP_PAX_AK_LEN); in eap_pax_init() 198 if (eap_pax_initial_key_derivation(req->mac_id, data->ak, data->rand.e, in eap_pax_process_std_1()
|
D | eap_pax_common.h | 98 int eap_pax_initial_key_derivation(u8 mac_id, const u8 *ak, const u8 *e,
|
D | eap_psk_common.h | 99 void eap_psk_key_setup(const u8 *psk, u8 *ak, u8 *kdk);
|
/external/speex/libspeex/ |
D | filters.h | 73 void syn_percep_zero16(const spx_word16_t *xx, const spx_coef_t *ak, const spx_coef_t *awk1, const … 74 void residue_percep_zero16(const spx_word16_t *xx, const spx_coef_t *ak, const spx_coef_t *awk1, co… 76 void compute_impulse_response(const spx_coef_t *ak, const spx_coef_t *awk1, const spx_coef_t *awk2,… 81 spx_coef_t *ak, /*LPC filter coefs*/
|
D | cb_search.h | 53 spx_coef_t ak[], /* LPCs for this subframe */ 79 spx_coef_t ak[], /* LPCs for this subframe */
|
D | filters_bfin.h | 368 void compute_impulse_response(const spx_coef_t *ak, const spx_coef_t *awk1, const spx_coef_t *awk2,… in compute_impulse_response() argument 428 : "a" (awk2), "a" (ak), "d" (ord), "m" (N), "0" (ytmp2), "1" (y) in compute_impulse_response() 438 void compute_impulse_response(const spx_coef_t *ak, const spx_coef_t *awk1, const spx_coef_t *awk2,… 458 yi2 = MAC16_16(yi2, ak[j], -y[i-j-1]);
|
D | cb_search.c | 102 spx_coef_t ak[], /* LPCs for this subframe */ in split_cb_search_shape_sign_N1() argument 234 syn_percep_zero16(r2, ak, awk1, awk2, r2, nsf,p, stack); in split_cb_search_shape_sign_N1() 244 spx_coef_t ak[], /* LPCs for this subframe */ in split_cb_search_shape_sign() argument 297 split_cb_search_shape_sign_N1(target,ak,awk1,awk2,par,p,nsf,exc,r,bits,stack,update_target); in split_cb_search_shape_sign() 507 syn_percep_zero16(r2, ak, awk1, awk2, r2, nsf,p, stack); in split_cb_search_shape_sign() 574 spx_coef_t ak[], /* LPCs for this subframe */ in noise_codebook_quant() argument 591 residue_percep_zero16(target, ak, awk1, awk2, tmp, nsf, p, stack); in noise_codebook_quant()
|
D | ltp.h | 61 spx_coef_t ak[], /* LPCs for this subframe */ 104 spx_coef_t ak[], /* LPCs for this subframe */
|
D | filters.c | 379 void syn_percep_zero16(const spx_word16_t *xx, const spx_coef_t *ak, const spx_coef_t *awk1, const … in syn_percep_zero16() argument 386 iir_mem16(xx, ak, y, N, ord, mem, stack); in syn_percep_zero16() 391 void residue_percep_zero16(const spx_word16_t *xx, const spx_coef_t *ak, const spx_coef_t *awk1, co… in residue_percep_zero16() argument 398 filter_mem16(xx, ak, awk1, y, N, ord, mem, stack); in residue_percep_zero16() 406 void compute_impulse_response(const spx_coef_t *ak, const spx_coef_t *awk1, const spx_coef_t *awk2,… in compute_impulse_response() argument 432 mem2[j] = MAC16_16(mem2[j+1], ak[j],ny2i); in compute_impulse_response() 435 mem2[ord-1] = MULT16_16(ak[ord-1],ny2i); in compute_impulse_response() 656 spx_coef_t *ak, /*LPC filter coefs*/ in multicomb() argument
|
D | lsp.c | 403 void lsp_to_lpc(spx_lsp_t *freq,spx_coef_t *ak,int lpcrdr, char *stack) in lsp_to_lpc() argument 514 ak[j-1] = (short)a; in lsp_to_lpc() 522 void lsp_to_lpc(spx_lsp_t *freq,spx_coef_t *ak,int lpcrdr, char *stack) in lsp_to_lpc() argument 578 ak[j-1] = (xout1 + xout2)*0.5f; in lsp_to_lpc()
|
D | lsp.h | 57 void lsp_to_lpc(spx_lsp_t *freq, spx_coef_t *ak, int lpcrdr, char *stack);
|
D | ltp.c | 350 const spx_coef_t ak[], /* LPCs for this subframe */ in pitch_gain_search_3tap() argument 419 iir_mem16(e, ak, e, nsf, p, mm, stack); in pitch_gain_search_3tap() 531 spx_coef_t ak[], /* LPCs for this subframe */ in pitch_search_3tap() argument 621 … err=pitch_gain_search_3tap(target, ak, awk1, awk2, exc, gain_cdbk, gain_cdbk_size, pitch, p, nsf, in pitch_search_3tap() 758 spx_coef_t ak[], /* LPCs for this subframe */ in forced_pitch_quant() argument 798 syn_percep_zero16(res, ak, awk1, awk2, res, nsf, p, stack); in forced_pitch_quant()
|
D | sb_celp.c | 882 VARDECL(spx_coef_t *ak); in sb_decode() 977 ALLOC(ak, st->lpcSize, spx_coef_t); in sb_decode() 1005 lsp_to_lpc(interp_qlsp, ak, st->lpcSize, stack); in sb_decode() 1014 rh += ak[i+1] - ak[i]; in sb_decode() 1015 st->pi_gain[sub] += ak[i] + ak[i+1]; in sb_decode() 1085 st->interp_qlpc[i] = ak[i]; in sb_decode()
|
D | nb_celp.c | 1099 VARDECL(spx_coef_t *ak); in nb_decode() 1281 ALLOC(ak, st->lpcSize, spx_coef_t); in nb_decode() 1520 lsp_to_lpc(interp_qlsp, ak, st->lpcSize, stack); in nb_decode() 1528 pi_g = ADD32(pi_g, SUB32(EXTEND32(ak[i+1]),EXTEND32(ak[i]))); in nb_decode() 1537 st->interp_qlpc[i] = ak[i]; in nb_decode()
|
/external/icu4c/data/locales/ |
D | bn_IN.txt | 25 ak{"ak"}
|
D | mt.txt | 320 ak{"Akan"} 525 kk{"Każak"} 590 moh{"Moħak"}
|
D | is.txt | 901 ach{"akólí"} 908 ak{"akan"} 1081 ik{"ínúpíak"}
|
D | id.txt | 262 ak{"Akan"}
|
D | he.txt | 889 ak{"אקאן"}
|
/external/strace/ |
D | CREDITS | 47 Andi Kleen <ak@suse.de>
|
/external/svox/pico/lib/ |
D | picofftsg.c | 534 PICOFFTSG_FFTTYPE *aj, *ak, *amj, *amk; in dfct_nmf() local 555 aj = a + 1; ak = a + k; amj = aj + m; amk = ak + m; in dfct_nmf() 556 for (j = 1; j < mh; j++, aj++, ak--, amj++, amk--) { in dfct_nmf() 560 yi = *ak; in dfct_nmf() 564 *ak = xr + xi; in dfct_nmf()
|