Searched refs:kp (Results 1 - 25 of 103) sorted by relevance

12345

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A D20040309-1.c7 char *kp, *sp; local
11 while (kp)
17 if (*kp)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/compile/
H A D20040309-1.c7 char *kp, *sp; local
11 while (kp)
17 if (*kp)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.other/
H A Ddefarg3.C7 void f (int *ip, int kp = hp - jp)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.other/
H A Ddefarg3.C7 void f (int *ip, int kp = hp - jp)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.mike/
H A Dpmf9.C9 Q() { kp = new K; }
12 K * kp; member in class:Q
16 return (kp->f)(42);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.mike/
H A Dpmf9.C9 Q() { kp = new K; }
12 K * kp; member in class:Q
16 return (kp->f)(42);
/netbsd-6-1-5-RELEASE/sys/arch/atari/stand/tostools/libtos/
H A Dtosdefs.h84 struct kparamb kp; member in struct:osdsc
87 #define ksize kp.ksize
88 #define kstart kp.kp
89 #define kentry kp.entry
90 #define k_esym kp.esym_loc
91 #define stmem_size kp.stmem_size
92 #define ttmem_size kp.ttmem_size
93 #define ttmem_start kp.ttmem_start
94 #define cputype kp
[all...]
/netbsd-6-1-5-RELEASE/usr.bin/systat/
H A Dps.c100 struct kinfo_proc2 *kp; local
114 kp = pt[k].pt_kp;
115 if (showuser != SHOWUSER_ANY && kp->p_uid != showuser)
117 user = user_from_uid(kp->p_uid, 0);
118 pid = kp->p_pid;
157 state2str(struct kinfo_proc2 *kp) argument
164 flag = kp->p_flag;
167 switch (kp->p_stat) {
174 *cp = kp->p_slptime >= (uint32_t)maxslp ? 'I' : 'S';
196 if (kp
219 tty2str(struct kinfo_proc2 *kp) argument
241 vsz2int(struct kinfo_proc2 *kp) argument
251 rss2int(struct kinfo_proc2 *kp) argument
262 comm2str(struct kinfo_proc2 *kp) argument
297 pmem2float(struct kinfo_proc2 *kp) argument
312 start2str(struct kinfo_proc2 *kp) argument
339 time2str(struct kinfo_proc2 *kp) argument
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/tmux/dist/
H A Dosdep-darwin.c37 struct kinfo_proc kp; local
42 size = sizeof kp;
43 if (sysctl(mib, 4, &kp, &size, NULL, 0) == -1)
45 if (*kp.kp_proc.p_comm == '\0')
48 return (strdup(kp.kp_proc.p_comm));
/netbsd-6-1-5-RELEASE/external/bsd/tcpdump/dist/
H A Dprint-krb.c160 register const struct krb *kp; local
166 #define IS_LENDIAN(kp) (((kp)->type & 0x01) != 0)
167 #define KTOHSP(kp, cp) (IS_LENDIAN(kp) ? EXTRACT_LE_16BITS(cp) : EXTRACT_16BITS(cp))
169 kp = (struct krb *)cp;
171 if ((&kp->type) >= snapend) {
176 type = kp->type & (0xFF << 1);
179 IS_LENDIAN(kp) ? "le" : "be", tok2str(type2str, NULL, type));
210 len = KTOHSP(kp, c
237 register const struct krb *kp; local
[all...]
/netbsd-6-1-5-RELEASE/usr.bin/pkill/
H A Dpkill.c118 const struct kinfo_proc2 *kp; local
285 for (i = 0, kp = plist; i < nproc; i++, kp++) {
286 if ((kp->p_flag & P_SYSTEM) != 0 || kp->p_pid == mypid)
290 if ((pargv = kvm_getargv2(kd, kp, 0)) == NULL)
303 mstr = kp->p_comm;
324 for (i = 0, kp = plist; i < nproc; i++, kp++) {
325 if ((kp
461 killact(const struct kinfo_proc2 *kp) argument
487 reniceact(const struct kinfo_proc2 *kp) argument
513 grepact(const struct kinfo_proc2 *kp) argument
[all...]
/netbsd-6-1-5-RELEASE/usr.bin/window/
H A Dwwinit.c58 char *kp; local
275 kp = wwwintermcap;
277 wwaddcap1(WWT_REV, &kp);
279 wwaddcap1(WWT_BLK, &kp);
281 wwaddcap1(WWT_UL, &kp);
283 wwaddcap1(WWT_GRP, &kp);
285 wwaddcap1(WWT_DIM, &kp);
287 wwaddcap1(WWT_USR, &kp);
289 wwaddcap1(WWT_ALDL, &kp);
291 wwaddcap1(WWT_IMEI, &kp);
348 wwaddcap(const char *cap, char **kp) argument
370 wwaddcap1(const char *cap, char **kp) argument
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/amiga/stand/bootblock/bootxx_ffs/
H A Dmain.c74 void *kp; local
110 kp = alloc(ksize);
111 if (kp == 0) {
116 if (read(io, kp, ksize) != ksize) {
121 if (strcmp(kp, "DOS") != 0 &&
122 (*(u_int32_t *)kp) != 0x424f4f54) {
128 startit(kp, aio, ConsoleBase);
132 dealloc(kp, ksize);
/netbsd-6-1-5-RELEASE/sys/netkey/
H A Dkeysock.c76 struct keycb *kp = (struct keycb *)rp; local
79 error = (*kp->kp_receive)(so, paddr, uio, mp0, controlp, flagsp);
90 m = kp->kp_queue;
93 kp->kp_queue = m->m_nextpkt;
112 struct keycb *kp = (struct keycb *)sotorawcb(so); local
118 kp = (struct keycb *)malloc(sizeof(*kp), M_PCB,
120 so->so_pcb = (void *)kp;
121 kp->kp_receive = so->so_receive;
124 if (req == PRU_DETACH && kp) {
240 struct keycb *kp = (struct keycb *)rp; local
335 struct keycb *kp; local
[all...]
/netbsd-6-1-5-RELEASE/usr.bin/sockstat/
H A Dsockstat.c118 struct kinfo_pcb *kp; local
221 if ((kp = pick_socket(&flist[i])) != NULL &&
223 print_socket(&flist[i], kp, &p);
385 socket_add_hash(struct kinfo_pcb *kp, int n) argument
398 si[i].s_sock = &kp[i];
399 hash = (int)(kp[i].ki_sockaddr % HASHSIZE);
405 isconnected(struct kinfo_pcb *kp) argument
408 if ((kp->ki_sostate & SS_ISCONNECTED) ||
409 (kp->ki_prstate >= INP_CONNECTED) ||
410 (kp
418 islistening(struct kinfo_pcb *kp) argument
457 struct kinfo_pcb *kp; local
547 print_socket(struct kinfo_file *kf, struct kinfo_pcb *kp, struct kinfo_proc2 *p) argument
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/am-utils/dist/amd/
H A Dinfo_file.c112 char *kp; local
138 for (kp = key_val; *kp && isascii((unsigned char)*kp) && isspace((unsigned char)*kp); kp++) ;
143 if (!*kp)
149 for (cp = kp; *cp && (!isascii((unsigned char)*cp) || !isspace((unsigned char)*cp)); cp++) ;
157 if (fn || (*key == *kp && STREQ(key, kp))) {
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/amiga/stand/bootblock/ppcboot/
H A Dppcstart.c42 startit(kp, ksize, entry, fmem, fmemsz, cmemsz,
46 u_long kp, ksize, entry, fmem, fmemsz, cmemsz,
61 *(volatile u_int32_t *)0xfff000f8 = kp;
/netbsd-6-1-5-RELEASE/lib/libkvm/
H A Dkvm_proc.c128 #define PTOMINI(kp, p) \
130 (p)->p_stat = (kp)->p_stat; \
131 (p)->p_pid = (kp)->p_pid; \
133 (p)->p_vmspace = (kp)->p_vmspace; \
136 #define KPTOMINI(kp, p) \
138 (p)->p_stat = (kp)->kp_proc.p_stat; \
139 (p)->p_pid = (kp)->kp_proc.p_pid; \
140 (p)->p_paddr = (kp)->kp_eproc.e_paddr; \
141 (p)->p_vmspace = (kp)->kp_proc.p_vmspace; \
144 #define KP2TOMINI(kp,
522 struct kinfo_proc *kp; local
1094 kvm_getargv(kvm_t *kd, const struct kinfo_proc *kp, int nchr) argument
1103 kvm_getenvv(kvm_t *kd, const struct kinfo_proc *kp, int nchr) argument
1190 kvm_getargv2(kvm_t *kd, const struct kinfo_proc2 *kp, int nchr) argument
1197 kvm_getenvv2(kvm_t *kd, const struct kinfo_proc2 *kp, int nchr) argument
[all...]
/netbsd-6-1-5-RELEASE/dist/nvi/ex/
H A Dex_usage.c150 VIKEYS const *kp; local
170 kp = &tmotion;
172 kp = &vikeys[key];
174 if (kp->usage == NULL)
181 isblank((unsigned char)*kp->help) ? "" : " ", kp->help, kp->usage);
187 kp = &tmotion;
189 kp = &vikeys[key];
190 if (kp
[all...]
/netbsd-6-1-5-RELEASE/lib/libedit/
H A Demacs.c93 Char *cp, *p, *kp; local
101 for (p = el->el_line.cursor, kp = el->el_chared.c_kill.buf; p < cp; p++)
103 *kp++ = *p;
104 el->el_chared.c_kill.last = kp;
122 Char *kp, *cp; local
139 for (kp = el->el_chared.c_kill.buf; kp < el->el_chared.c_kill.last; kp++)
140 *cp++ = *kp;
158 Char *kp, *c local
180 Char *kp, *cp; local
213 Char *kp, *cp; local
[all...]
/netbsd-6-1-5-RELEASE/dist/nvi/vi/
H A Dv_event.c349 vp->kp = &vikeys['0'];
352 vp->kp = &vikeys['G'];
355 vp->kp = &vikeys['x'];
360 vp->kp = &vikeys['\012'];
363 vp->kp = &vikeys['$'];
366 vp->kp = &vikeys['i'];
369 vp->kp = &vikeys['\010'];
374 vp->kp = &vikeys['\006'];
379 vp->kp = &vikeys['\002'];
382 vp->kp
[all...]
/netbsd-6-1-5-RELEASE/sys/dev/wscons/
H A Dwskbdutil.c375 fillmapentry(const keysym_t *kp, int len, struct wscons_keymap *mapentry) argument
386 mapentry->group1[0] = kp[0];
387 mapentry->group1[1] = ksym_upcase(kp[0]);
393 mapentry->group1[0] = kp[0];
394 mapentry->group1[1] = kp[1];
400 mapentry->group1[0] = kp[0];
401 mapentry->group1[1] = kp[1];
402 mapentry->group2[0] = kp[2];
403 mapentry->group2[1] = ksym_upcase(kp[2]);
407 mapentry->group1[0] = kp[
421 const keysym_t *kp; local
493 const keysym_t *kp; local
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/am-utils/dist/mk-amd-map/
H A Dmk-amd-map.c122 char *kp; local
149 for (kp = key_val; *kp && isascii((unsigned char)*kp) && isspace((unsigned char)*kp); kp++) ;
154 if (!*kp)
160 for (cp = kp; *cp && (!isascii((unsigned char)*cp) || !isspace((unsigned char)*cp)); cp++) ;
170 if (*kp == '+') {
171 fprintf(stderr, "Can't interpolate %s\n", kp);
[all...]
/netbsd-6-1-5-RELEASE/sys/netipsec/
H A Dkeysock.c308 struct keycb *kp; local
367 kp = (struct keycb *)rp;
396 if (kp->kp_registered) {
461 struct keycb *kp; local
466 kp = (struct keycb *)malloc(sizeof *kp, M_PCB, M_WAITOK|M_ZERO); /* XXX */
467 if (kp == 0)
478 so->so_pcb = kp;
480 kp = (struct keycb *)sotorawcb(so);
482 free(kp, M_PC
537 struct keycb *kp = (struct keycb *)sotorawcb(so); local
635 struct keycb *kp = (struct keycb *)sotorawcb(so); local
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/openldap/dist/servers/slapd/overlays/
H A Dunique.c942 char *kp,
968 len = snprintf( kp, ks, "(%s=%s)", ad->ad_cname.bv_val, bv.bv_val );
970 kp += len;
977 len = snprintf( kp, ks, "(%s=*)", ad->ad_cname.bv_val );
979 kp += len;
983 return kp;
1067 char *key, *kp; local
1126 kp = key = op->o_tmpalloc(ks, op->o_tmpmemctx);
1129 len = snprintf (kp, ks, "(&%s", uri->filter.bv_val);
1131 kp
937 build_filter( unique_domain *domain, unique_domain_uri *uri, AttributeDescription *ad, BerVarray b, char *kp, int ks, void *ctx ) argument
1188 char *key, *kp; local
1300 char *key, *kp; local
[all...]

Completed in 193 milliseconds

12345