Home
last modified time | relevance | path

Searched refs:kc (Results 1 – 25 of 52) sorted by relevance

123

/external/llvm/test/Transforms/MergeFunc/
D2011-02-08-RemoveEqual.ll7 %"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/
D2008-02-29-RegAllocLocal.ll4 %"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/
Dkeyboard.c76 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/
Dnetcpu_kstat.c61 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 …]
Dnetcpu_kstat10.c41 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/
DTriangularSolverMatrix.h64 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 …]
DSelfadjointMatrixMatrix.h257 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 …]
DTriangularMatrixMatrix.h123 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 …]
DGeneralMatrixMatrix.h68 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 …]
DGeneralMatrixMatrixTriangular.h68 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/
Dqemu-mips64-linux-HOWTO.txt21 …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/
Deap_sim.c26 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/
Ddev_debug_vboot356 kc=0
361 kfile="kern_${kc}"
384 kc=$(expr $kc + 1)
/external/wpa_supplicant_8/hostapd/
Dhlr_auc_gw.c74 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/
DHydraulicErodeFilter.java46 public void setKc(float kc) { in setKc() argument
47 this.Kc = kc; in setKc()
/external/wpa_supplicant_8/src/utils/
Dpcsc_funcs.h20 unsigned char *sres, unsigned char *kc);
/external/v8/test/webkit/fast/js/kde/
Dmd5-1.js396 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/
Dmilenage.h18 u8 *kc);
Dmilenage.c235 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/
Dbench_gemm.cpp167 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/
Dvp9_mcomp.c221 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/
Deap_sim_db.h42 u8 *_rand, u8 *kc, u8 *sres,
Deap_sim_db.c44 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/
Deapol_test.c981 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/
Dsk_sk_FONIPA.txt10 $soften = [ptťkcčsš$] ;

123