/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/libvncserver/x11vnc/ |
D | keyboard.c | 76 static void delete_keycode(KeyCode kc, int bequiet); 492 int kc, ret = 0; in add_keysym() local 518 for (kc = minkey+1; kc <= maxkey; kc++) { in add_keysym() 524 if (keymap[ (kc-minkey) * syms_per_keycode + n] in add_keysym() 546 XChangeKeyboardMapping(dpy, kc, syms_per_keycode, in add_keysym() 562 "0x%x \"%s\"\n", kc, keysym, str ? str : "null"); in add_keysym() 570 added_keysyms[kc] = keysym; in add_keysym() 571 ret = kc; in add_keysym() 579 static void delete_keycode(KeyCode kc, int bequiet) { in delete_keycode() argument 582 if (!kc || !bequiet) {} in delete_keycode() [all …]
|
/external/netperf/ |
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 73 kc = kstat_open(); in cpu_util_init() 75 if (kc == NULL) { in cpu_util_init() 89 kstat_close(kc); in cpu_util_terminate() 129 ksp = kstat_lookup(kc, "cpu", cpu_num, "sys"); in get_cpu_counters() 132 nkcid = kstat_read(kc, ksp, NULL); in get_cpu_counters() 215 ksp = kstat_lookup(kc, "cpu", cpu_num, "intrstat"); in get_interrupt_counters() 220 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 | 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 | 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 | 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/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() 254 data->sres[0], data->kc[0]) || in eap_sim_gsm_auth() 256 data->sres[1], data->kc[1]) || in eap_sim_gsm_auth() 259 data->sres[2], data->kc[2]))) { in eap_sim_gsm_auth() 292 data->sres[i], data->kc[i])) { in eap_sim_gsm_auth() 303 data->kc[i], EAP_SIM_KC_LEN); in eap_sim_gsm_auth() 322 os_memcpy(data->kc[i], in eap_sim_gsm_auth() [all …]
|
/external/vboot_reference/utility/ |
D | dev_debug_vboot | 356 kc=0 361 kfile="kern_${kc}" 384 kc=$(expr $kc + 1)
|
/external/wpa_supplicant_8/hostapd/ |
D | hlr_auc_gw.c | 74 u8 kc[8]; member 340 if (strlen(pos) != 16 || hexstr2bin(pos, g->kc, 8)) { in read_gsm_triplets() 671 u8 _rand[16], sres[4], kc[8]; in sim_req_auth() local 675 gsm_milenage(m->opc, m->ki, _rand, sres, kc); in sim_req_auth() 677 rpos += wpa_snprintf_hex(rpos, rend - rpos, kc, 8); in sim_req_auth() 694 rpos += wpa_snprintf_hex(rpos, rend - rpos, g->kc, 8); in sim_req_auth() 738 u8 _rand[16], sres[4], kc[8]; in gsm_auth_req() local 742 gsm_milenage(m->opc, m->ki, _rand, sres, kc); in gsm_auth_req() 744 rpos += wpa_snprintf_hex(rpos, rend - rpos, kc, 8); in gsm_auth_req()
|
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/filter/ |
D | HydraulicErodeFilter.java | 46 public void setKc(float kc) { in setKc() argument 47 this.Kc = kc; in setKc()
|
/external/wpa_supplicant_8/src/utils/ |
D | pcsc_funcs.h | 20 unsigned char *sres, unsigned char *kc);
|
/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/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/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/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 221 int kr, kc; \ 225 kc = bc - tc; \ 226 CHECK_BETTER(second, tr + kr, tc + 2 * kc); \ 227 CHECK_BETTER(second, tr + 2 * kr, tc + kc); \ 229 kc = bc - tc; \ 230 CHECK_BETTER(second, tr + hstep, tc + 2 * kc); \ 231 CHECK_BETTER(second, tr - hstep, tc + 2 * kc); \ 235 CHECK_BETTER(second, tr + hstep, tc + kc); \ 239 CHECK_BETTER(second, tr - hstep, tc + kc); \
|
/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 440 if (hexstr2bin(start, entry->u.sim.kc[num_chal], in eap_sim_db_sim_resp_auth() 869 u8 *_rand, u8 *kc, u8 *sres, in eap_sim_db_get_gsm_triplets() argument 913 os_memcpy(kc, entry->u.sim.kc, num_chal * EAP_SIM_KC_LEN); in eap_sim_db_get_gsm_triplets()
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | eapol_test.c | 981 unsigned char kc[8]; in scard_test() local 1023 if (scard_gsm_auth(scard, _rand, sres, kc)) in scard_test() 1027 if (scard_gsm_auth(scard, _rand, sres, kc)) in scard_test() 1089 unsigned char kc[8]; in scard_get_triplets() local 1123 if (scard_gsm_auth(scard, _rand, sres, kc)) in scard_get_triplets() 1131 printf("%02X", kc[j]); in scard_get_triplets()
|
/external/icu/icu4c/source/data/translit/ |
D | sk_sk_FONIPA.txt | 10 $soften = [ptťkcčsš$] ;
|