Home
last modified time | relevance | path

Searched refs:nfp (Results 1 – 25 of 263) sorted by relevance

1234567891011

/netbsd-src/external/gpl3/binutils/dist/libctf/
H A Dctf-serialize.c954 ctf_dict_t ofp, *nfp; in ctf_serialize() local
1104 if ((nfp = ctf_simple_open_internal ((char *) buf, buf_size, NULL, 0, in ctf_serialize()
1112 (void) ctf_setmodel (nfp, ctf_getmodel (fp)); in ctf_serialize()
1114 nfp->ctf_parent = fp->ctf_parent; in ctf_serialize()
1115 nfp->ctf_parent_unreffed = fp->ctf_parent_unreffed; in ctf_serialize()
1116 nfp->ctf_refcnt = fp->ctf_refcnt; in ctf_serialize()
1117 nfp->ctf_flags |= fp->ctf_flags & ~LCTF_DIRTY; in ctf_serialize()
1118 if (nfp->ctf_dynbase == NULL) in ctf_serialize()
1119 nfp->ctf_dynbase = buf; /* Make sure buf is freed on close. */ in ctf_serialize()
1120 nfp->ctf_dthash = fp->ctf_dthash; in ctf_serialize()
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/libctf/
H A Dctf-serialize.c954 ctf_dict_t ofp, *nfp; in ctf_serialize() local
1104 if ((nfp = ctf_simple_open_internal ((char *) buf, buf_size, NULL, 0, in ctf_serialize()
1112 (void) ctf_setmodel (nfp, ctf_getmodel (fp)); in ctf_serialize()
1114 nfp->ctf_parent = fp->ctf_parent; in ctf_serialize()
1115 nfp->ctf_parent_unreffed = fp->ctf_parent_unreffed; in ctf_serialize()
1116 nfp->ctf_refcnt = fp->ctf_refcnt; in ctf_serialize()
1117 nfp->ctf_flags |= fp->ctf_flags & ~LCTF_DIRTY; in ctf_serialize()
1118 if (nfp->ctf_dynbase == NULL) in ctf_serialize()
1119 nfp->ctf_dynbase = buf; /* Make sure buf is freed on close. */ in ctf_serialize()
1120 nfp->ctf_dthash = fp->ctf_dthash; in ctf_serialize()
[all …]
/netbsd-src/usr.bin/config/
H A Dmkheaders.c475 FILE *tfp, *nfp; in moveifchanged() local
480 if ((nfp = fopen(nfname, "r")) == NULL) in moveifchanged()
484 if (fgets(nbuf, sizeof(nbuf), nfp) == NULL) { in moveifchanged()
498 if (fgets(nbuf, sizeof(nbuf), nfp) != NULL) { in moveifchanged()
505 (void) fclose(nfp); in moveifchanged()
515 if (nfp) in moveifchanged()
516 (void) fclose(nfp); in moveifchanged()
/netbsd-src/external/cddl/osnet/dist/common/ctf/
H A Dctf_create.c245 ctf_file_t ofp, *nfp; in ctf_update() local
433 if ((nfp = ctf_bufopen(&cts, NULL, NULL, &err)) == NULL) { in ctf_update()
438 (void) ctf_setmodel(nfp, ctf_getmodel(fp)); in ctf_update()
439 (void) ctf_import(nfp, fp->ctf_parent); in ctf_update()
441 nfp->ctf_refcnt = fp->ctf_refcnt; in ctf_update()
442 nfp->ctf_flags |= fp->ctf_flags & ~LCTF_DIRTY; in ctf_update()
443 nfp->ctf_data.cts_data = NULL; /* force ctf_data_free() on close */ in ctf_update()
444 nfp->ctf_dthash = fp->ctf_dthash; in ctf_update()
445 nfp->ctf_dthashlen = fp->ctf_dthashlen; in ctf_update()
446 nfp->ctf_dtdefs = fp->ctf_dtdefs; in ctf_update()
[all …]
/netbsd-src/tests/lib/libc/regex/
H A Dsplit.c224 print(int nf, int nfp, char *fields) in print() argument
229 bound = (nf > nfp) ? nfp : nf; in print()
/netbsd-src/sys/kern/
H A Duipc_syscalls.c1632 file_t *nfp = NULL; in do_sys_peeloff()
1650 error = fd_allocfile(&nfp, &fd); in do_sys_peeloff()
1670 mutex_enter(&nfp->f_lock); in do_sys_peeloff()
1671 nfp->f_count++; in do_sys_peeloff()
1672 mutex_exit(&nfp->f_lock); in do_sys_peeloff()
1673 fd_abort(curlwp->l_proc, nfp, fd); in do_sys_peeloff()
1680 nfp->f_socket = so; in do_sys_peeloff()
1681 nfp->f_flag = FREAD|FWRITE; in do_sys_peeloff()
1682 nfp->f_ops = &socketops; in do_sys_peeloff()
1683 nfp in do_sys_peeloff()
1629 file_t *nfp = NULL; do_sys_peeloff() local
[all...]
/netbsd-src/external/bsd/pcc/dist/pcc/arch/m68k/
H A Dlocal2.c40 static int regm, regf, fpsub, nfp; variable
55 regm = regf = nfp = 0; in prologue()
64 nfp += 12; in prologue()
70 printf(" movem.l #%d,%d(%%fp)\n", regm, -fpsub + nfp); in prologue()
82 printf(" movem.l %d(%%fp),#%d\n", -fpsub + nfp, regm); in eoftn()
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
H A Dexecutionengine.go42 func (options *MCJITCompilerOptions) SetMCJITNoFramePointerElim(nfp bool) {
43 options.C.NoFramePointerElim = boolToLLVMBool(nfp)
/netbsd-src/sys/netinet/
H A Dip_reass.c475 ipfr_queue_t *fp, *nfp; in ip_reass_ttl_decr() local
482 for (fp = LIST_FIRST(&ip_frags[i]); fp != NULL; fp = nfp) { in ip_reass_ttl_decr()
485 nfp = LIST_NEXT(fp, ipq_q); in ip_reass_ttl_decr()
/netbsd-src/external/cddl/osnet/dist/lib/libdtrace/common/
H A Ddt_printf.c1688 FILE *nfp; in dtrace_freopen() local
1742 if ((nfp = fopen(filename, "aF")) == NULL) { in dtrace_freopen()
1759 (void) snprintf(selfbuf, sizeof (selfbuf), "/dev/fd/%d", fileno(nfp)); in dtrace_freopen()
1769 (void) fclose(nfp); in dtrace_freopen()
1775 (void) fclose(nfp); in dtrace_freopen()
1779 (void) fclose(nfp); in dtrace_freopen()
1833 if ((nfp = fopen(dtp->dt_sprintf_buf, "a")) == NULL) { in dtrace_freopen()
1854 dtp->dt_freopen_fp = nfp; in dtrace_freopen()
/netbsd-src/external/gpl3/binutils.old/dist/opcodes/po/
H A Dopcodes.pot89 #: nfp-dis.c:2993 riscv-dis.c:1189 riscv-dis.c:1192
1894 #: nfp-dis.c:930
1898 #: nfp-dis.c:1334
1902 #: nfp-dis.c:1686
1906 #: nfp-dis.c:2055 nfp-dis.c:2326
1911 #: nfp-dis.c:2066 nfp-dis.c:2337
1916 #: nfp-dis.c:2558
1920 #: nfp-dis.c:2572
1924 #: nfp-dis.c:2717
1929 #: nfp-dis.c:2746
[all …]
H A Dsr.po102 #: nfp-dis.c:2993 riscv-dis.c:1140 riscv-dis.c:1143
1930 #: nfp-dis.c:930
1934 #: nfp-dis.c:1334
1938 #: nfp-dis.c:1686
1942 #: nfp-dis.c:2055 nfp-dis.c:2326
1947 #: nfp-dis.c:2066 nfp-dis.c:2337
1952 #: nfp-dis.c:2558
1956 #: nfp-dis.c:2572
1960 #: nfp-dis.c:2717
1965 #: nfp-dis.c:2746
[all …]
H A Duk.po104 #: nfp-dis.c:2993 riscv-dis.c:1140 riscv-dis.c:1143
1935 #: nfp-dis.c:930
1939 #: nfp-dis.c:1334
1943 #: nfp-dis.c:1686
1947 #: nfp-dis.c:2055 nfp-dis.c:2326
1952 #: nfp-dis.c:2066 nfp-dis.c:2337
1957 #: nfp-dis.c:2558
1961 #: nfp-dis.c:2572
1965 #: nfp-dis.c:2717
1970 #: nfp-dis.c:2746
[all …]
H A Dro.po103 #: nfp-dis.c:2993 riscv-dis.c:1140 riscv-dis.c:1143
2005 #: nfp-dis.c:930
2010 #: nfp-dis.c:1334
2014 #: nfp-dis.c:1686
2018 #: nfp-dis.c:2055 nfp-dis.c:2326
2023 #: nfp-dis.c:2066 nfp-dis.c:2337
2028 #: nfp-dis.c:2558
2032 #: nfp-dis.c:2572
2036 #: nfp-dis.c:2717
2041 #: nfp-dis.c:2746
[all …]
/netbsd-src/external/gpl3/binutils/dist/opcodes/po/
H A Dopcodes.pot88 #: mips-dis.c:2918 nfp-dis.c:2995 riscv-dis.c:1489 riscv-dis.c:1492
1768 #: nfp-dis.c:930
1772 #: nfp-dis.c:1334
1776 #: nfp-dis.c:1686
1780 #: nfp-dis.c:2055 nfp-dis.c:2326
1785 #: nfp-dis.c:2066 nfp-dis.c:2337
1790 #: nfp-dis.c:2558
1794 #: nfp-dis.c:2572
1798 #: nfp-dis.c:2719
1803 #: nfp-dis.c:2748
[all …]
H A Dsr.po103 #: mips-dis.c:2918 nfp-dis.c:2995 riscv-dis.c:1489 riscv-dis.c:1492
1816 #: nfp-dis.c:930
1820 #: nfp-dis.c:1334
1824 #: nfp-dis.c:1686
1828 #: nfp-dis.c:2055 nfp-dis.c:2326
1833 #: nfp-dis.c:2066 nfp-dis.c:2337
1838 #: nfp-dis.c:2558
1842 #: nfp-dis.c:2572
1846 #: nfp-dis.c:2719
1851 #: nfp-dis.c:2748
[all …]
H A Duk.po104 #: mips-dis.c:2918 nfp-dis.c:2995 riscv-dis.c:1489 riscv-dis.c:1492
1822 #: nfp-dis.c:930
1826 #: nfp-dis.c:1334
1830 #: nfp-dis.c:1686
1834 #: nfp-dis.c:2055 nfp-dis.c:2326
1839 #: nfp-dis.c:2066 nfp-dis.c:2337
1844 #: nfp-dis.c:2558
1848 #: nfp-dis.c:2572
1852 #: nfp-dis.c:2719
1857 #: nfp-dis.c:2748
[all …]
/netbsd-src/external/gpl3/gdb.old/dist/sim/erc32/
H A DREADME.gdb17 -nfp Disable FPU. FPops will cause an FPU disabled trap.
H A DNEWS68 * Added -nfp switch to disable FPU.
/netbsd-src/external/gpl3/gdb/dist/sim/erc32/
H A DREADME.gdb17 -nfp Disable FPU. FPops will cause an FPU disabled trap.
H A DNEWS68 * Added -nfp switch to disable FPU.
/netbsd-src/external/gpl3/binutils/dist/bfd/po/
H A DSRC-POTFILES.in95 cpu-nfp.c
248 elf64-nfp.c
/netbsd-src/external/gpl3/binutils.old/dist/bfd/po/
H A DSRC-POTFILES.in95 cpu-nfp.c
247 elf64-nfp.c
/netbsd-src/usr.sbin/sysinst/
H A Dutil.c1973 FILE *fp, *nfp; in del_rc_conf() local
2010 nfp = fdopen(fd, "w"); in del_rc_conf()
2011 if (!nfp) { in del_rc_conf()
2025 scripting_fprintf(nfp, "%s", buf); in del_rc_conf()
2029 scripting_fprintf(nfp, "%s", buf); in del_rc_conf()
2033 fclose(nfp); in del_rc_conf()
/netbsd-src/external/gpl3/gdb.old/dist/opcodes/po/
H A Dro.po103 #: nfp-dis.c:2993 riscv-dis.c:1140 riscv-dis.c:1143
2005 #: nfp-dis.c:930
2010 #: nfp-dis.c:1334
2014 #: nfp-dis.c:1686
2018 #: nfp-dis.c:2055 nfp-dis.c:2326
2023 #: nfp-dis.c:2066 nfp-dis.c:2337
2028 #: nfp-dis.c:2558
2032 #: nfp-dis.c:2572
2036 #: nfp-dis.c:2717
2041 #: nfp-dis.c:2746
[all …]

1234567891011