/external/llvm/test/Transforms/MergeFunc/ |
D | 2011-02-08-RemoveEqual.ll | 7 %"struct.kc::impl_Ccode_option" = type { %"struct.kc::impl_abstract_phylum" } 8 %"struct.kc::impl_CexpressionDQ" = type { %"struct.kc::impl_Ccode_option", %"struct.kc::impl_Ccode_… 9 …ruct.kc::impl_Ctext" = type { %"struct.kc::impl_Ccode_option", i32, %"struct.kc::impl_casestring__… 10 %"struct.kc::impl_Ctext_elem" = type { %"struct.kc::impl_abstract_phylum", i32, %"struct.kc::impl_c… 11 …uct.kc::impl_ID" = type { %"struct.kc::impl_abstract_phylum", %"struct.kc::impl_Ccode_option"*, %"… 12 %"struct.kc::impl_abstract_phylum" = type { i32 (...)** } 13 …"struct.kc::impl_ac_abstract_declarator_AcAbsdeclDirdecl" = type { %"struct.kc::impl_Ccode_option"… 14 %"struct.kc::impl_casestring__Str" = type { %"struct.kc::impl_abstract_phylum", i8* } 15 %"struct.kc::impl_elem_patternrepresentation" = type { %"struct.kc::impl_abstract_phylum", i32, %"s… 16 %"struct.kc::impl_fileline" = type { %"struct.kc::impl_abstract_phylum", %"struct.kc::impl_casestri… [all …]
|
/external/llvm/test/CodeGen/ARM/ |
D | 2008-02-29-RegAllocLocal.ll | 4 %"struct.kc::impl_Ccode_option" = type { %"struct.kc::impl_abstract_phylum" } 5 …uct.kc::impl_ID" = type { %"struct.kc::impl_abstract_phylum", %"struct.kc::impl_Ccode_option"*, %"… 6 %"struct.kc::impl_abstract_phylum" = type { i32 (...)** } 7 %"struct.kc::impl_casestring__Str" = type { %"struct.kc::impl_abstract_phylum", i8* } 9 …"struct.kc::impl_ID"* @_ZN2kc18f_typeofunpsubtermEPNS_15impl_unpsubtermEPNS_7impl_IDE(%"struct.kc:… 11 …%tmp8 = getelementptr %"struct.kc::impl_Ccode_option", %"struct.kc::impl_Ccode_option"* %a_unpsubt… 15 ret %"struct.kc::impl_ID"* null 18 %tmp67 = tail call i32 null( %"struct.kc::impl_abstract_phylum"* null ) ; <i32> [#uses=0] 19 %tmp97 = tail call i32 null( %"struct.kc::impl_abstract_phylum"* null ) ; <i32> [#uses=0] 20 ret %"struct.kc::impl_ID"* null
|
/external/netperf/src/ |
D | netcpu_kstat.c | 61 static kstat_ctl_t *kc = NULL; variable 88 if (!kc) in open_kstat() 90 kc = kstat_open(); in open_kstat() 91 if (!kc) in open_kstat() 97 kcid = kc->kc_chain_id; in open_kstat() 118 nkcid = kstat_chain_update(kc); in open_kstat() 132 ks = kstat_lookup(kc, "unix", 0, "system_misc"); in open_kstat() 133 if (kstat_read(kc, ks, 0) == -1) { in open_kstat() 153 for (ks = kc->kc_chain; ks; in open_kstat() 158 nkcid = kstat_read(kc, ks, NULL); in open_kstat() [all …]
|
D | netcpu_kstat10.c | 41 static kstat_ctl_t *kc = NULL; variable 77 kc = kstat_open(); in cpu_util_init() 79 if (kc == NULL) { in cpu_util_init() 93 for (ksp = kc->kc_chain, i = 0; in cpu_util_init() 123 kstat_close(kc); in cpu_util_terminate() 162 ksp = kstat_lookup(kc, "cpu", lib_cpu_map[cpu_num], "sys"); in get_cpu_counters() 165 nkcid = kstat_read(kc, ksp, NULL); in get_cpu_counters() 255 ksp = kstat_lookup(kc, "cpu", lib_cpu_map[cpu_num], "intrstat"); in get_interrupt_counters() 260 nkcid = kstat_read(kc, ksp, NULL); in get_interrupt_counters()
|
/external/eigen/Eigen/src/Core/products/ |
D | TriangularSolverMatrix.h | 64 Index kc = blocking.kc(); // cache block size along the K direction 67 std::size_t sizeA = kc*mc; 68 std::size_t sizeB = kc*cols; 69 std::size_t sizeW = kc*Traits::WorkSpaceFactor; 89 IsLower ? k2+=kc : k2-=kc) 91 const Index actual_kc = (std::min)(IsLower ? size-k2 : k2, kc); 168 Index start = IsLower ? k2+kc : 0; 169 Index end = IsLower ? size : k2-kc; 175 pack_lhs(blockA, &tri(i2, IsLower ? k2 : k2-kc), triStride, actual_kc, actual_mc); 213 Index kc = blocking.kc(); // cache block size along the K direction [all …]
|
D | TriangularMatrixMatrix.h | 123 Index kc = blocking.kc(); // cache block size along the K direction 126 std::size_t sizeA = kc*mc; 127 std::size_t sizeB = kc*cols; 128 std::size_t sizeW = kc*Traits::WorkSpaceFactor; 147 IsLower ? k2-=kc : k2+=kc) 149 Index actual_kc = (std::min)(IsLower ? k2 : depth-k2, kc); 156 k2 = k2+actual_kc-kc; 264 Index kc = blocking.kc(); // cache block size along the K direction 267 std::size_t sizeA = kc*mc; 268 std::size_t sizeB = kc*cols; [all …]
|
D | SelfadjointMatrixMatrix.h | 257 Index kc = size; // cache block size along the K direction 260 computeProductBlockingSizes<Scalar,Scalar>(kc, mc, nc); 262 kc = (std::min)(kc,mc); 264 std::size_t sizeW = kc*Traits::WorkSpaceFactor; 265 std::size_t sizeB = sizeW + kc*cols; 266 ei_declare_aligned_stack_constructed_variable(Scalar, blockA, kc*mc, 0); 275 for(Index k2=0; k2<size; k2+=kc) 277 const Index actual_kc = (std::min)(k2+kc,size)-k2; 298 const Index actual_mc = (std::min)(k2+kc,size)-k2; 305 for(Index i2=k2+kc; i2<size; i2+=mc) [all …]
|
D | GeneralMatrixMatrix.h | 68 Index kc = blocking.kc(); // cache block size along the K direction 83 std::size_t sizeA = kc*mc; 84 std::size_t sizeW = kc*Traits::WorkSpaceFactor; 92 for(Index k=0; k<depth; k+=kc) 94 const Index actual_kc = (std::min)(k+kc,depth)-k; // => rows of B', and cols of the A' 153 std::size_t sizeA = kc*mc; 154 std::size_t sizeB = kc*cols; 155 std::size_t sizeW = kc*Traits::WorkSpaceFactor; 163 for(Index k2=0; k2<depth; k2+=kc) 165 const Index actual_kc = (std::min)(k2+kc,depth)-k2; [all …]
|
D | GeneralMatrixMatrixTriangular.h | 68 Index kc = depth; // cache block size along the K direction 71 computeProductBlockingSizes<LhsScalar,RhsScalar>(kc, mc, nc); 76 std::size_t sizeW = kc*Traits::WorkSpaceFactor; 77 std::size_t sizeB = sizeW + kc*size; 78 ei_declare_aligned_stack_constructed_variable(LhsScalar, blockA, kc*mc, 0); 87 for(Index k2=0; k2<depth; k2+=kc) 89 const Index actual_kc = (std::min)(k2+kc,depth)-k2;
|
/external/valgrind/docs/internals/ |
D | qemu-mips64-linux-HOWTO.txt | 21 …ions/debian/dists/wheezy/main/installer-mips/current/images/malta/netboot/vmlinux-3.2.0-4-4kc-malta 25 md5sum initrd.gz vmlinux-3.2.0-4-4kc-malta 27 307fc61d36cb370ea2b697d587af45a6 vmlinux-3.2.0-4-4kc-malta 38 -kernel vmlinux-3.2.0-4-4kc-malta -initrd initrd.img-3.2.0-4-4kc-malta \ 68 System.map-3.2.0-4-5kc-malta initrd.img-3.2.0-4-5kc-malta 69 config-3.2.0-4-5kc-malta vmlinux-3.2.0-4-5kc-malta 87 -net user,hostfwd=tcp::5555-:22 -kernel boot/vmlinux-3.2.0-4-5kc-malta \ 88 -initrd boot/initrd.img-3.2.0-4-5kc-malta \
|
/external/opencv3/modules/shape/src/ |
D | sc_dis.cpp | 764 for (size_t kc = 0; kc<inliers1.size(); kc++) in hungarian() local 766 if (rowsol[kc]<sizeScd1) // if a real match in hungarian() 767 inliers1[kc]=1; in hungarian() 769 inliers1[kc]=0; in hungarian() 772 for (size_t kc = 0; kc<inliers2.size(); kc++) in hungarian() local 774 if (colsol[kc]<sizeScd2) // if a real match in hungarian() 775 inliers2[kc]=1; in hungarian() 777 inliers2[kc]=0; in hungarian()
|
/external/wpa_supplicant_8/src/eap_peer/ |
D | eap_sim.c | 26 u8 kc[3][EAP_SIM_KC_LEN]; member 140 os_memset(data->kc, 0, 3 * EAP_SIM_KC_LEN); in eap_sim_clear_keys() 204 if (hexstr2bin(pos, data->kc[i], EAP_SIM_KC_LEN) < 0) in eap_sim_ext_sim_result() 207 data->kc[i], EAP_SIM_KC_LEN); in eap_sim_ext_sim_result() 255 data->sres[0], data->kc[0]) || in eap_sim_gsm_auth() 257 data->sres[1], data->kc[1]) || in eap_sim_gsm_auth() 260 data->sres[2], data->kc[2]))) { in eap_sim_gsm_auth() 294 data->sres[i], data->kc[i])) { in eap_sim_gsm_auth() 305 data->kc[i], EAP_SIM_KC_LEN); in eap_sim_gsm_auth() 324 os_memcpy(data->kc[i], in eap_sim_gsm_auth() [all …]
|
/external/wpa_supplicant_8/hostapd/ |
D | hlr_auc_gw.c | 74 u8 kc[8]; member 326 if (!pos || os_strlen(pos) != 16 || hexstr2bin(pos, g->kc, 8)) { in read_gsm_triplets() 617 u8 _rand[16], sres[4], kc[8]; in sim_req_auth() local 621 gsm_milenage(m->opc, m->ki, _rand, sres, kc); in sim_req_auth() 623 rpos += wpa_snprintf_hex(rpos, rend - rpos, kc, 8); in sim_req_auth() 640 rpos += wpa_snprintf_hex(rpos, rend - rpos, g->kc, 8); in sim_req_auth() 684 u8 _rand[16], sres[4], kc[8]; in gsm_auth_req() local 688 gsm_milenage(m->opc, m->ki, _rand, sres, kc); in gsm_auth_req() 690 rpos += wpa_snprintf_hex(rpos, rend - rpos, kc, 8); in gsm_auth_req()
|
/external/vboot_reference/utility/ |
D | dev_debug_vboot | 356 kc=0 361 kfile="kern_${kc}" 384 kc=$(expr $kc + 1)
|
/external/v8/test/webkit/fast/js/kde/ |
D | md5-1.js | 396 var l,s,k,ka,kb,kc,kd; 404 ka=kb=kc=kd=0; 407 for (i=8;i<12;i++) kc+=shl(digestBits[15-i], ((i-8)*8)); 409 s=hexa(kd)+hexa(kc)+hexa(kb)+hexa(ka);
|
/external/wpa_supplicant_8/src/utils/ |
D | pcsc_funcs.h | 20 unsigned char *sres, unsigned char *kc);
|
D | pcsc_funcs.c | 1225 unsigned char *sres, unsigned char *kc) in scard_gsm_auth() argument 1279 os_memcpy(kc, buf + 4, 8); in scard_gsm_auth() 1293 os_memcpy(kc, buf + 6, 8); in scard_gsm_auth() 1297 wpa_hexdump(MSG_DEBUG, "SCARD: GSM auth - Kc", kc, 8); in scard_gsm_auth()
|
/external/wpa_supplicant_8/src/crypto/ |
D | milenage.h | 18 u8 *kc);
|
D | milenage.c | 235 int gsm_milenage(const u8 *opc, const u8 *k, const u8 *_rand, u8 *sres, u8 *kc) in gsm_milenage() argument 244 kc[i] = ck[i] ^ ck[i + 8] ^ ik[i] ^ ik[i + 8]; in gsm_milenage()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 222 int kr, kc; \ 226 kc = bc - tc; \ 227 CHECK_BETTER(second, tr + kr, tc + 2 * kc); \ 228 CHECK_BETTER(second, tr + 2 * kr, tc + kc); \ 230 kc = bc - tc; \ 231 CHECK_BETTER(second, tr + hstep, tc + 2 * kc); \ 232 CHECK_BETTER(second, tr - hstep, tc + 2 * kc); \ 236 CHECK_BETTER(second, tr + hstep, tc + kc); \ 240 CHECK_BETTER(second, tr - hstep, tc + kc); \ 270 kc = bc - tc; \ [all …]
|
/external/eigen/bench/ |
D | bench_gemm.cpp | 167 std::ptrdiff_t mc(m), nc(n), kc(p); in main() local 168 internal::computeProductBlockingSizes<Scalar,Scalar>(kc, mc, nc); in main() 169 std::cout << "blocking size (mc x kc) = " << mc << " x " << kc << "\n"; in main()
|
/external/wpa_supplicant_8/src/eap_server/ |
D | eap_sim_db.h | 42 u8 *_rand, u8 *kc, u8 *sres,
|
D | eap_sim_db.c | 44 u8 kc[EAP_SIM_MAX_CHAL][EAP_SIM_KC_LEN]; member 496 if (hexstr2bin(start, entry->u.sim.kc[num_chal], in eap_sim_db_sim_resp_auth() 927 u8 *_rand, u8 *kc, u8 *sres, in eap_sim_db_get_gsm_triplets() argument 971 os_memcpy(kc, entry->u.sim.kc, num_chal * EAP_SIM_KC_LEN); in eap_sim_db_get_gsm_triplets()
|
/external/icu/icu4c/source/data/translit/ |
D | sk_sk_FONIPA.txt | 10 $soften = [ptťkcčsš$] ;
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | eapol_test.c | 1073 unsigned char kc[8]; in scard_test() local 1115 if (scard_gsm_auth(scard, _rand, sres, kc)) in scard_test() 1119 if (scard_gsm_auth(scard, _rand, sres, kc)) in scard_test() 1181 unsigned char kc[8]; in scard_get_triplets() local 1215 if (scard_gsm_auth(scard, _rand, sres, kc)) in scard_get_triplets() 1223 printf("%02X", kc[j]); in scard_get_triplets()
|