HomeSort by relevance Sort by last modified time
    Searched defs:ik (Results 1 - 16 of 16) sorted by null

  /external/clang/test/CodeGen/
unsigned-overflow.c 6 unsigned int ii, ij, ik; variable
73 // CHECK-NEXT: [[T2:%.*]] = load i32, i32* @ik
78 ii = ij + ik;
85 // CHECK-NEXT: [[T2:%.*]] = load i32, i32* @ik
90 ii = ij - ik;
97 // CHECK-NEXT: [[T2:%.*]] = load i32, i32* @ik
102 ii = ij * ik;
  /external/libcxx/test/std/algorithms/alg.nonmodifying/alg.search/
search.pass.cpp 56 int ik[] = {0, 0, 0, 0, 1, 1, 1, 1, 0, 0}; local
57 const unsigned sk = sizeof(ik)/sizeof(ik[0]);
58 assert(std::search(Iter1(ij), Iter1(ij+sj), Iter2(ik), Iter2(ik+sk)) == Iter1(ij+6));
  /external/wpa_supplicant_8/src/crypto/
milenage.c 83 * @ik: Buffer for IK = 128-bit integrity key (f4), or %NULL
89 u8 *res, u8 *ck, u8 *ik, u8 *ak, u8 *akstar)
133 if (ik) {
138 if (aes_128_encrypt_block(k, tmp1, ik))
141 ik[i] ^= opc[i];
161 * milenage_generate - Generate AKA AUTN,IK,CK,RES
168 * @ik: Buffer for IK = 128-bit integrity key (f4), or %NULL
174 const u8 *sqn, const u8 *_rand, u8 *autn, u8 *ik,
237 u8 res[8], ck[16], ik[16]; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.nonmodifying/alg.search/
search.pass.cpp 56 int ik[] = {0, 0, 0, 0, 1, 1, 1, 1, 0, 0}; local
57 const unsigned sk = sizeof(ik)/sizeof(ik[0]);
58 assert(std::search(Iter1(ij), Iter1(ij+sj), Iter2(ik), Iter2(ik+sk)) == Iter1(ij+6));
  /external/eigen/unsupported/Eigen/src/SparseExtra/
RandomSetter.h 198 KeyType ik = (1<<(OuterPacketBits+m_keyBitsOffset)); local
200 MapTraits<ScalarWrapper>::setInvalidKey(m_hashmaps[k],ik);
  /external/libvorbis/lib/
smallft.c 275 int idij,ipph,i,j,k,l,ic,ik,is; local
293 for(ik=0;ik<idl1;ik++)ch2[ik]=c2[ik];
391 for(ik=0;ik<idl1;ik++)c2[ik]=ch2[ik]
843 int idij,ipph,i,j,k,l,ik,is,t0,t1,t2,t3,t4,t5,t6,t7,t8,t9,t10, local
    [all...]
  /external/speex/libspeex/
smallft.c 277 int idij,ipph,i,j,k,l,ic,ik,is; local
295 for(ik=0;ik<idl1;ik++)ch2[ik]=c2[ik];
393 for(ik=0;ik<idl1;ik++)c2[ik]=ch2[ik]
845 int idij,ipph,i,j,k,l,ik,is,t0,t1,t2,t3,t4,t5,t6,t7,t8,t9,t10, local
    [all...]
  /external/wpa_supplicant_8/hostapd/
hlr_auc_gw.c 27 * AKA-RESP-AUTH <IMSI> <RAND> <AUTN> <IK> <CK> <RES>
34 * Kc/SRES/RAND/AUTN/IK/CK/RES/AUTS as hex strings.
790 /* AKA-RESP-AUTH <IMSI> <RAND> <AUTN> <IK> <CK> <RES> */
794 u8 ik[EAP_AKA_IK_LEN]; local
818 autn, ik, ck, res, &res_len);
829 memset(ik, '3', EAP_AKA_IK_LEN);
855 pos += wpa_snprintf_hex(pos, end - pos, ik, EAP_AKA_IK_LEN);
  /external/wpa_supplicant_8/src/eap_server/
eap_server_aka.c 31 u8 ik[EAP_AKA_IK_LEN]; member in struct:eap_aka_data
790 data->rand, data->autn, data->ik,
802 * needed 6-octet SQN ^AK for CK',IK' derivation */
803 eap_aka_prime_derive_ck_ik_prime(data->ck, data->ik,
836 eap_aka_prime_derive_keys(sm->identity, identity_len, data->ik,
840 eap_aka_derive_mk(sm->identity, identity_len, data->ik,
    [all...]
eap_sim_db.c 52 u8 ik[EAP_AKA_IK_LEN]; member in struct:eap_sim_db_pending::__anon21563::__anon21565
486 * AKA-RESP-AUTH <IMSI> <RAND> <AUTN> <IK> <CK> <RES>
488 * (IMSI = ASCII string, RAND/AUTN/IK/CK/RES = hex string)
528 if (hexstr2bin(start, entry->u.aka.ik, EAP_AKA_IK_LEN))
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_aka.c 23 u8 ik[EAP_AKA_IK_LEN], ck[EAP_AKA_CK_LEN], res[EAP_AKA_RES_MAX_LEN]; member in struct:eap_aka_data
207 if (hexstr2bin(pos, data->ik, EAP_AKA_IK_LEN) < 0)
209 wpa_hexdump_key(MSG_DEBUG, "EAP-AKA: IK", data->ik, EAP_AKA_IK_LEN);
262 data->ik, data->ck, data->auts);
295 data->ik, data->ck,
308 os_memset(data->ik, '3', EAP_AKA_IK_LEN);
981 * needed 6-octet SQN ^ AK for CK',IK' derivation */
988 eap_aka_prime_derive_ck_ik_prime(data->ck, data->ik,
1005 eap_aka_prime_derive_keys(identity, identity_len, data->ik,
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_peephole.cpp 2130 Instruction *phi, *next, *ik; local
2217 Instruction *ik = (*it)->getInsn(); local
2225 Instruction *ik = reinterpret_cast<Instruction *>(iter.get()); local
    [all...]
  /external/libvncserver/x11vnc/
userinput.c 6320 int ik = old[k]; local
6511 int ik = old[k]; local
6654 int ik = val[0][j]; local
9316 int ik = Ev_order[i]; local
9578 int ik = Ev_order[i]; local
9655 int ik = Ev_order[i]; local
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiStateMachine.java 9927 String ik = makeHex(result, res_len + ck_len + 4, ik_len); local
    [all...]
  /prebuilts/tools/common/m2/repository/net/sourceforge/htmlunit/htmlunit-core-js/2.14/
htmlunit-core-js-2.14.jar 
  /prebuilts/tools/common/m2/repository/org/mozilla/rhino/1.7R3/
rhino-1.7R3.jar 

Completed in 787 milliseconds