| /netbsd/src/sys/external/bsd/drm2/dist/drm/i915/ |
| D | intel_wakeref.c | 19 static void rpm_get(struct intel_wakeref *wf) in rpm_get() argument 21 wf->wakeref = intel_runtime_pm_get(wf->rpm); in rpm_get() 24 static void rpm_put(struct intel_wakeref *wf) in rpm_put() argument 26 intel_wakeref_t wakeref = fetch_and_zero(&wf->wakeref); in rpm_put() 28 intel_runtime_pm_put(wf->rpm, wakeref); in rpm_put() 31 DRM_WAKEUP_ALL(&wf->wq, &wf->mutex); in rpm_put() 34 int __intel_wakeref_get_first(struct intel_wakeref *wf) in __intel_wakeref_get_first() argument 42 mutex_lock_nested(&wf->mutex, SINGLE_DEPTH_NESTING); in __intel_wakeref_get_first() 43 if (!atomic_read(&wf->count)) { in __intel_wakeref_get_first() 46 rpm_get(wf); in __intel_wakeref_get_first() [all …]
|
| D | intel_wakeref.h | 35 int (*get)(struct intel_wakeref *wf); 36 int (*put)(struct intel_wakeref *wf); 57 void __intel_wakeref_init(struct intel_wakeref *wf, 61 #define intel_wakeref_init(wf, rpm, ops) do { \ argument 64 __intel_wakeref_init((wf), (rpm), (ops), &__key); \ 69 int __intel_wakeref_get_first(struct intel_wakeref *wf); 70 void __intel_wakeref_put_last(struct intel_wakeref *wf, unsigned long flags); 87 intel_wakeref_get(struct intel_wakeref *wf) in intel_wakeref_get() argument 90 if (unlikely(!atomic_inc_not_zero(&wf->count))) in intel_wakeref_get() 91 return __intel_wakeref_get_first(wf); in intel_wakeref_get() [all …]
|
| D | intel_runtime_pm.h | 185 #define with_intel_runtime_pm(rpm, wf) \ argument 186 for ((wf) = intel_runtime_pm_get(rpm); (wf); \ 187 intel_runtime_pm_put((rpm), (wf)), (wf) = 0) 189 #define with_intel_runtime_pm_if_in_use(rpm, wf) \ argument 190 for ((wf) = intel_runtime_pm_get_if_in_use(rpm); (wf); \ 191 intel_runtime_pm_put((rpm), (wf)), (wf) = 0)
|
| /netbsd/src/external/bsd/openldap/ |
| D | Makefile | 52 @for wf in `find work/include -name '*.h'`; do \ 53 tf=${LDAP_SRCDIR}/include/$${wf##*/}; \ 55 cmp -s $${wf} $${tf} > /dev/null 2>&1 || ( \ 57 cp $${wf} $${tf} && \ 66 @for wf in `find work/doc/man -name '*.[0-9].tmp'` ; do \ 67 tf=${LDAP_SRCDIR}/man/$${wf##*/}; \ 69 cmp -s $${wf} $${tf} > /dev/null 2>&1 || ( \ 71 cp $${wf} $${tf} && \
|
| /netbsd/src/external/mit/expat/dist/tests/ |
| D | xmltest.sh | 154 for xmldir in ibm/not-wf/P* \ 155 ibm/not-wf/p28a \ 156 ibm/not-wf/misc \ 157 xmltest/not-wf/ext-sa \ 158 xmltest/not-wf/not-sa \ 159 xmltest/not-wf/sa \ 160 sun/not-wf ; do
|
| D | xmltest.log.expected | 3 Expected not well-formed: ibm/not-wf/misc/432gewf.xml 4 Expected not well-formed: xmltest/not-wf/not-sa/005.xml 5 Expected not well-formed: sun/not-wf/uri01.xml
|
| /netbsd/src/libexec/ftpd/ |
| D | logwtmp.c | 76 const char *wf = _PATH_WTMP; in ftpd_initwtmp() local 77 if ((fd = open(wf, O_WRONLY|O_APPEND, 0)) == -1) in ftpd_initwtmp() 78 syslog(LOG_ERR, "Cannot open `%s' (%m)", wf); in ftpd_initwtmp() 112 const char *wf = _PATH_WTMPX; in ftpd_initwtmpx() local 113 if ((fdx = open(wf, O_WRONLY|O_APPEND, 0)) == -1) in ftpd_initwtmpx() 114 syslog(LOG_ERR, "Cannot open `%s' (%m)", wf); in ftpd_initwtmpx()
|
| /netbsd/src/usr.bin/btkey/ |
| D | btkey.c | 57 bool cf, cd, lf, ld, rf, rd, wf, wd, nk; in main() local 62 cf = cd = lf = ld = rf = rd = wf = wd = nk = false; in main() 121 wf = true; in main() 139 if ((lf || ld) && (rf || rd || wf || wd || cf || cd || nk)) in main() 142 if (((rf && rd) || (rf && nk) || (rd && nk)) && (wf || wd)) in main() 182 if (wf || wd || cf || cd) in main() 185 if (wf) { in main()
|
| /netbsd/src/distrib/sgimips/miniroot/ |
| D | Makefile.inc.xxx | 20 ${DESTDIR}/usr/mdec/sgivol -wf aoutboot /usr/mdec/aoutboot ${VND} ; \ 21 ${DESTDIR}/usr/mdec/sgivol -wf ip2xboot /usr/mdec/ip2xboot ${VND} ; \ 22 ${DESTDIR}/usr/mdec/sgivol -wf ip3xboot /usr/mdec/ip3xboot ${VND}
|
| /netbsd/src/sys/dev/ic/ |
| D | vga.c | 328 struct wsdisplay_font *wf; in egavga_getfont() local 355 if (wsfont_lock(cookie, &wf)) in egavga_getfont() 364 f->wsfont = wf; in egavga_getfont() 563 struct wsdisplay_font *wf; in vga_init() local 568 if (cookie == -1 || wsfont_lock(cookie, &wf)) in vga_init() 570 vga_loadchars(&vc->hdl, 0, wf->firstchar, wf->numchars, in vga_init() 571 wf->fontheight, wf->data); in vga_init() 572 vga_builtinfont.wsfont = wf; in vga_init()
|
| D | vga_raster.c | 417 struct wsdisplay_font *wf; in vga_raster_init() local 427 if (cookie == -1 || wsfont_lock(cookie, &wf)) in vga_raster_init() 429 vf->font = wf; in vga_raster_init() 849 struct wsdisplay_font *wf; in vga_raster_setup_font() local 866 if (wsfont_lock(cookie, &wf)) in vga_raster_setup_font() 870 vf->font = wf; in vga_raster_setup_font()
|
| /netbsd/src/sys/kern/ |
| D | sys_pipe.c | 211 file_t *rf, *wf; in pipe1() local 233 error = fd_allocfile(&wf, &fd); in pipe1() 244 wf->f_flag = FWRITE | flags; in pipe1() 245 wf->f_type = DTYPE_PIPE; in pipe1() 246 wf->f_pipe = wpipe; in pipe1() 247 wf->f_ops = &pipeops; in pipe1() 254 fd_affix(p, wf, fildes[1]); in pipe1()
|
| D | uipc_syscalls.c | 1271 file_t *rf, *wf; in pipe1() local 1290 error = fsocreate(AF_LOCAL, &wso, SOCK_STREAM|soflags, 0, &wfd, &wf, in pipe1() 1297 wf->f_type = wf->f_type & ~(FREAD); in pipe1() 1325 fd_affix(p, wf, wfd); in pipe1() 1332 fd_abort(p, wf, wfd); in pipe1()
|
| D | uipc_socket2.c | 1531 sblock(struct sockbuf *sb, int wf) in sblock() argument 1544 if (wf != M_WAITOK) in sblock()
|
| /netbsd/src/external/mit/lua/dist/src/ |
| D | lstate.c | 428 lua_WarnFunction wf = G(L)->warnf; in luaE_warning() local 429 if (wf != NULL) in luaE_warning() 430 wf(G(L)->ud_warn, msg, tocont); in luaE_warning()
|
| /netbsd/src/sys/arch/luna68k/dev/ |
| D | omrasops.c | 1596 struct wsdisplay_font *wf = ri->ri_font; in om_mapchar() local 1598 if (wf->encoding != WSDISPLAY_FONTENC_ISO) { in om_mapchar() 1599 c = wsfont_map_unichar(wf, c); in om_mapchar() 1604 if (c < wf->firstchar || c >= (wf->firstchar + wf->numchars)) in om_mapchar()
|
| /netbsd/src/sys/arch/vax/vsa/ |
| D | spx.c | 1448 struct wsdisplay_font *wf; in spx_init_common() local 1505 if (cookie == -1 || wsfont_lock(cookie, &wf)) in spx_init_common() 1508 spx_font = *wf; in spx_init_common() 1511 aprint_normal_dev(self, "Using %s %dx%d font\n", wf->name, in spx_init_common()
|
| D | lcg.c | 992 struct wsdisplay_font *wf; in lcg_init_common() local 1094 if (cookie == -1 || wsfont_lock(cookie, &wf)) in lcg_init_common() 1096 lcg_font = *wf; in lcg_init_common()
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/rs6000/ |
| D | constraints.md | 50 (define_register_constraint "wf" "rs6000_constraints[RS6000_CONSTRAINT_wa]"
|
| /netbsd/src/external/gpl3/binutils/dist/ld/ |
| D | ChangeLog-2020 | 1029 * testsuite/ld-powerpc/tlsget.wf, 1031 * testsuite/ld-powerpc/tlsget2.wf: New testcases. 1038 * testsuite/ld-powerpc/tlsdesc.wf, 1040 * testsuite/ld-powerpc/tlsdesc2.wf, 1042 * testsuite/ld-powerpc/tlsopt5.wf, 1044 * testsuite/ld-powerpc/tlsopt6.wf: Update __glink_PLTresolve. 1823 * testsuite/ld-powerpc/notoc3.wf: New test. 4308 * testsuite/ld-powerpc/tlsdesc3.wf, 4311 * testsuite/ld-powerpc/tlsdesc4.wf: New tests. 4324 * testsuite/ld-powerpc/tlsdesc.wf, [all …]
|
| D | ChangeLog | 1932 * testsuite/ld-powerpc/tlsget.wf: Likewise. 1934 * testsuite/ld-powerpc/tlsget2.wf: Likewise.
|
| D | ChangeLog-2017 | 914 * testsuite/ld-powerpc/tlsopt5.wf: Update for reduced alignment. 1492 * testsuite/ld-powerpc/tlsopt5.wf: Likewise. 1762 * testsuite/ld-powerpc/tlsopt5.wf: New file.
|
| /netbsd/src/external/gpl3/binutils/dist/binutils/ |
| D | ChangeLog-0001 | 1160 * readelf.c (usage): Add -wf (--debug-dump=frames) option. 1161 (parse_args): Support -wf option.
|
| /netbsd/src/external/gpl3/binutils/dist/cpu/ |
| D | cris.cpu | 537 (define-pmacro wf-condition pbit) 695 (cc cs ne eq vc vs pl mi ls hi ge lt gt le a wf) 700 (define-pmacro sb wf)
|
| /netbsd/src/external/gpl3/gdb/dist/cpu/ |
| D | cris.cpu | 537 (define-pmacro wf-condition pbit) 695 (cc cs ne eq vc vs pl mi ls hi ge lt gt le a wf) 700 (define-pmacro sb wf)
|