HomeSort by: relevance | last modified time | path
    Searched refs:kf (Results 1 - 13 of 13) sorted by relevancy

  /src/sys/arch/m68k/m68k/
compat_16_machdep.c 94 struct sigframe_sigcontext *fp = getframe(l, sig, &onstack), kf;
109 kf.sf_ra = (int)p->p_sigctx.ps_sigcode;
113 kf.sf_ra = (int)ps->sa_sigdesc[sig].sd_tramp;
121 kf.sf_signum = sig;
122 kf.sf_code = code;
123 kf.sf_scp = &fp->sf_sc;
131 kf.sf_state.ss_flags = SS_USERREGS;
132 memcpy(kf.sf_state.ss_frame.f_regs, frame->f_regs,
139 kf.sf_state.ss_flags |= SS_RTEFRAME;
140 kf.sf_state.ss_frame.f_format = frame->f_format
    [all...]
sunos_machdep.c 104 struct sunos_sigframe *fp = getframe(l, sig, &onstack), kf;
133 kf.sf_signum = sig;
134 kf.sf_code = code;
135 kf.sf_scp = &fp->sf_sc;
136 kf.sf_addr = ~0; /* means: not computable */
139 kf.sf_sc.sc_sp = frame->f_regs[SP];
140 kf.sf_sc.sc_pc = frame->f_pc;
141 kf.sf_sc.sc_ps = frame->f_sr;
144 kf.sf_sc.sc_onstack = l->l_sigstk.ss_flags & SS_ONSTACK;
147 native_sigset_to_sigset13(mask, &kf.sf_sc.sc_mask)
    [all...]
sig_machdep.c 157 struct sigframe_siginfo *fp = getframe(l, sig, &onstack), kf;
162 memset(&kf, 0, sizeof(kf));
163 kf.sf_ra = (int)ps->sa_sigdesc[sig].sd_tramp;
164 kf.sf_signum = sig;
165 kf.sf_sip = &fp->sf_si;
166 kf.sf_ucp = &fp->sf_uc;
167 kf.sf_si._info = ksi->ksi_info;
168 kf.sf_uc.uc_flags = _UC_SIGMASK;
169 kf.sf_uc.uc_sigmask = *mask
    [all...]
  /src/sys/compat/linux/arch/m68k/
linux_machdep.c 105 struct linux_sigframe *fp, kf; local in function:setup_linux_sigframe
121 memset(&kf, 0, sizeof(kf));
124 kf.sf_psigtramp = fp->sf_sigtramp; /* return addr for handler */
125 kf.sf_signum = native_to_linux_signo[sig];
126 kf.sf_code = frame->f_vector; /* Does anyone use it? */
127 kf.sf_scp = &fp->sf_c.c_sc;
130 kf.sf_sigtramp[0] = LINUX_SF_SIGTRAMP0;
131 kf.sf_sigtramp[1] = LINUX_SF_SIGTRAMP1;
139 kf.sf_c.c_sc.sc_d0 = frame->f_regs[D0]
269 struct linux_rt_sigframe *fp, kf; local in function:setup_linux_rt_sigframe
    [all...]
  /src/sys/arch/x68k/dev/
ite_tv.c 312 volatile uint16_t *kf; local in function:tv_putc_nm
320 kf = (volatile uint16_t *)tv_kfont[hi];
321 kf += lo * FONTHEIGHT;
324 *(uint16_t *)p = *kf++;
340 volatile uint16_t *kf; local in function:tv_putc_in
348 kf = (volatile uint16_t *)tv_kfont[hi];
349 kf += lo * FONTHEIGHT;
352 *(uint16_t *)p = ~*kf++;
369 volatile uint16_t *kf; local in function:tv_putc_bd
377 kf = (volatile uint16_t *)tv_kfont[hi]
417 volatile uint16_t *kf; local in function:tv_putc_ul
454 volatile uint16_t *kf; local in function:tv_putc_bd_in
486 volatile uint16_t *kf; local in function:tv_putc_ul_in
523 volatile uint16_t *kf; local in function:tv_putc_bd_ul
570 volatile uint16_t *kf; local in function:tv_putc_bd_ul_in
    [all...]
  /src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/renesas/
Makefile 33 dtb-$(CONFIG_ARCH_R8A77950) += r8a77950-ulcb-kf.dtb
38 dtb-$(CONFIG_ARCH_R8A77951) += r8a77951-ulcb-kf.dtb
43 dtb-$(CONFIG_ARCH_R8A77960) += r8a77960-ulcb-kf.dtb
47 dtb-$(CONFIG_ARCH_R8A77961) += r8a77961-ulcb-kf.dtb
52 dtb-$(CONFIG_ARCH_R8A77965) += r8a77965-ulcb-kf.dtb
68 dtb-$(CONFIG_ARCH_R8A77951) += r8a779m1-ulcb-kf.dtb
72 dtb-$(CONFIG_ARCH_R8A77961) += r8a779m3-ulcb-kf.dtb
  /src/sys/miscfs/kernfs/
kernfs.h 170 #define KERNFS_ALLOCTYPE(kf) kernfs_alloctype(sizeof((kf)) / \
171 sizeof((kf)[0]), (kf))
kernfs_vnops.c 255 kernfs_alloctype(int nkf, const struct kernfs_fileop *kf)
274 skf.kf_fileop = kf[i].kf_fileop;
276 fkf->kf_vop = kf[i].kf_vop;
285 struct kernfs_fileop *kf, skf; local in function:kernfs_try_fileop
289 if ((kf = SPLAY_FIND(kfsfileoptree, &kfsfileoptree, &skf)))
290 if (kf->kf_vop)
291 return kf->kf_vop(v);
299 struct kernfs_fileop *kf, skf; local in function:kernfs_try_xread
303 if ((kf = SPLAY_FIND(kfsfileoptree, &kfsfileoptree, &skf)))
304 if (kf->kf_xread
313 struct kernfs_fileop *kf, skf; local in function:kernfs_try_xwrite
    [all...]
  /src/usr.bin/sockstat/
sockstat.c 549 print_socket(struct kinfo_file *kf, struct kinfo_pcb *kp, struct kinfo_proc2 *p)
570 printf("%-5d ", (int)kf->ki_pid);
571 printf("%2d ", (int)kf->ki_fd);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv04/
nouveau_dispnv04_tvmodesnv17.c 270 int64_t kf; member in struct:filter_params
347 + (p->kf + p->kif*i + p->ki2f*i*i +
  /src/sys/kern/
kern_descrip.c 2241 struct kinfo_file kf; local in function:sysctl_kern_file2
2262 out_size = MIN(sizeof(kf), elem_size);
2340 fill_file2(&kf, fp, ff, i, p->p_pid);
2344 &kf, dp, out_size);
  /src/tests/usr.bin/netpgpverify/
t_netpgpverify.sh 1714 XBrmoiEvA1UbA3KFrKfL3PFdQUVQjBB/3pH63ri5O1mCgqK/tjEaGmH9kmfo//kF
6208 1nHtzHKb70T4633HbLJ0ppDkbIGgPoEDxZ50k1Bsfye8//yP/+kf/4v/Nginog9m
  /src/share/terminfo/
terminfo 14908 # bezel buttons for the 5430/pt505 terminal. The "kf" designations do
14960 # "kf" functions adds carriage return to output string if terminal is in
    [all...]

Completed in 119 milliseconds