Home
last modified time | relevance | path

Searched refs:omask (Results 1 – 25 of 96) sorted by relevance

1234

/netbsd/crypto/external/bsd/openssl.old/dist/crypto/des/asm/
H A Ddest4-sparcv9.pl122 srl $omask, %g4, $omask
193 orn %g0, $omask, $omask
197 orn %g0, $omask, $omask
223 srl $omask, %g4, $omask
293 orn %g0, $omask, $omask
297 orn %g0, $omask, $omask
331 srl $omask, %g4, $omask
453 orn %g0, $omask, $omask
457 orn %g0, $omask, $omask
483 srl $omask, %g4, $omask
[all …]
/netbsd/crypto/external/bsd/openssl/dist/crypto/des/asm/
H A Ddest4-sparcv9.pl124 srl $omask, %g4, $omask
195 orn %g0, $omask, $omask
199 orn %g0, $omask, $omask
225 srl $omask, %g4, $omask
295 orn %g0, $omask, $omask
299 orn %g0, $omask, $omask
333 srl $omask, %g4, $omask
455 orn %g0, $omask, $omask
459 orn %g0, $omask, $omask
485 srl $omask, %g4, $omask
[all …]
/netbsd/crypto/external/bsd/openssl.old/dist/crypto/perlasm/
H A Dsparcv9_modes.pl87 srl $omask, $ooff, $omask
155 orn %g0, $omask, $omask
159 orn %g0, $omask, $omask
179 srl $omask, $ivoff, $omask
186 orn %g0, $omask, $omask
305 srl $omask, $ooff, $omask
377 orn %g0, $omask, $omask
381 orn %g0, $omask, $omask
487 orn %g0, $omask, $omask
491 orn %g0, $omask, $omask
[all …]
/netbsd/crypto/external/bsd/openssl/dist/crypto/perlasm/
H A Dsparcv9_modes.pl87 srl $omask, $ooff, $omask
155 orn %g0, $omask, $omask
159 orn %g0, $omask, $omask
179 srl $omask, $ivoff, $omask
186 orn %g0, $omask, $omask
305 srl $omask, $ooff, $omask
377 orn %g0, $omask, $omask
381 orn %g0, $omask, $omask
487 orn %g0, $omask, $omask
491 orn %g0, $omask, $omask
[all …]
/netbsd/external/bsd/ntp/dist/libntp/
H A Diosignal.c509 int mask, omask; in unblock_io_and_alarm() local
512 omask = sigblock(0); in unblock_io_and_alarm()
513 omask &= ~mask; in unblock_io_and_alarm()
514 (void) sigsetmask(omask); in unblock_io_and_alarm()
520 int mask, omask; in unblock_sigio() local
528 omask = sigblock(0); in unblock_sigio()
529 omask &= ~mask; in unblock_sigio()
530 (void) sigsetmask(omask); in unblock_sigio()
536 int mask, omask; in wait_for_signal() local
539 omask = sigblock(0); in wait_for_signal()
[all …]
/netbsd/bin/ksh/
H A Djobs.c437 sigset_t omask; local
451 sigprocmask(SIG_BLOCK, &sm_sigchld, &omask);
679 sigset_t omask; in startlast() local
697 sigset_t omask; in waitlast() local
728 sigset_t omask; local
780 sigset_t omask; local
823 sigset_t omask; local
871 sigprocmask(SIG_SETMASK, &omask,
957 sigset_t omask; local
1002 sigset_t omask; in j_notify() local
[all …]
/netbsd/lib/libc/compat-43/
H A Dsigcompat.c85 sigset_t nmask, omask; in sigsetmask() local
91 n = sigprocmask(SIG_SETMASK, &nmask, &omask); in sigsetmask()
94 return (omask.__bits[0]); in sigsetmask()
100 sigset_t nmask, omask; in sigblock() local
106 n = sigprocmask(SIG_BLOCK, &nmask, &omask); in sigblock()
109 return (omask.__bits[0]); in sigblock()
/netbsd/lib/libm/softfloat/
H A Dfedisableexcept.c47 fp_except omask; in __weak_alias() local
49 omask = fpgetmask(); in __weak_alias()
50 fpsetmask(omask & ~__FPE(excepts)); in __weak_alias()
51 return __FEE(omask); in __weak_alias()
H A Dfeenableexcept.c47 fp_except omask; in __weak_alias() local
49 omask = fpgetmask(); in __weak_alias()
50 fpsetmask(omask | __FPE(excepts)); in __weak_alias()
51 return __FEE(omask); in __weak_alias()
/netbsd/usr.sbin/rbootd/
H A Drbootd.c77 int c, fd, omask; in main() local
184 omask = sigblock(sigmask(SIGHUP)); /* prevent reconfig's */ in main()
197 (void) sigsetmask(omask); /* allow reconfig's */ in main()
231 omask = sigblock(sigmask(SIGHUP)); in main()
246 (void) sigsetmask(omask); in main()
252 (void) sigsetmask(omask); in main()
/netbsd/lib/libc/gen/
H A Dpause.c55 sigset_t omask; in __weak_alias() local
57 if (sigprocmask(SIG_BLOCK, NULL, &omask) == -1) in __weak_alias()
60 return sigsuspend(&omask); in __weak_alias()
/netbsd/lib/libc/stdlib/
H A Dsystem.c58 sigset_t nmask, omask, sigdefault; in system() local
87 if (sigprocmask(SIG_BLOCK, &nmask, &omask) == -1) { in system()
114 posix_spawnattr_setsigmask(&attr, &omask); in system()
138 (void)sigprocmask(SIG_SETMASK, &omask, NULL); in system()
/netbsd/usr.sbin/syslogd/
H A Dtls.c919 sigset_t newmask, omask; in dispatch_SSL_connect() local
958 RESTORE_SIGNALS(omask); in dispatch_SSL_connect()
970 RESTORE_SIGNALS(omask); in dispatch_SSL_connect()
1281 sigset_t newmask, omask; in dispatch_tls_accept() local
1309 RESTORE_SIGNALS(omask); in dispatch_tls_accept()
1330 RESTORE_SIGNALS(omask); in dispatch_tls_accept()
1447 RESTORE_SIGNALS(omask); in dispatch_socket_accept()
1495 RESTORE_SIGNALS(omask); in dispatch_tls_eof()
1565 RESTORE_SIGNALS(omask); in dispatch_tls_read()
1834 RESTORE_SIGNALS(omask); in dispatch_tls_send()
[all …]
/netbsd/sys/external/isc/atheros_hal/dist/ar5210/
H A Dar5210_interrupts.c92 uint32_t omask = ahp->ah_maskReg; in ar5210SetInterrupts() local
96 __func__, omask, ints); in ar5210SetInterrupts()
103 if (omask & HAL_INT_GLOBAL) { in ar5210SetInterrupts()
133 return omask; in ar5210SetInterrupts()
/netbsd/lib/librumpclient/
H A Drumpclient.c377 rv = cliwaitresp(spc, &rw, omask, false); in syscall_req()
394 sigset_t omask; in handshake_req() local
437 pthread_sigmask(SIG_SETMASK, &fullset, &omask); in handshake_req()
459 rv = cliwaitresp(spc, &rw, &omask, haslock); in handshake_req()
468 pthread_sigmask(SIG_SETMASK, &omask, NULL); in handshake_req()
495 rv = cliwaitresp(spc, &rw, omask, false); in prefork_req()
579 sigset_t omask; in rumpclient_syscall() local
583 pthread_sigmask(SIG_SETMASK, &fullset, &omask); in rumpclient_syscall()
602 pthread_sigmask(SIG_SETMASK, &omask, NULL); in rumpclient_syscall()
999 sigset_t omask; in rumpclient_prefork() local
[all …]
/netbsd/sys/external/isc/atheros_hal/dist/ar5211/
H A Dar5211_interrupts.c109 uint32_t omask = ahp->ah_maskReg; in ar5211SetInterrupts() local
113 __func__, omask, ints); in ar5211SetInterrupts()
120 if (omask & HAL_INT_GLOBAL) { in ar5211SetInterrupts()
159 return omask; in ar5211SetInterrupts()
/netbsd/usr.bin/tip/
H A Dtipout.c125 int omask; in tipout() local
138 for (omask = 0;; (void)sigsetmask(omask)) { in tipout()
171 omask = sigblock(SIGTERM); in tipout()
/netbsd/usr.sbin/altq/altqstat/
H A Dqdisc_fifoq.c56 sigset_t omask; in fifoq_stat_loop() local
90 if (sigprocmask(SIG_BLOCK, NULL, &omask) == 0) in fifoq_stat_loop()
91 sigsuspend(&omask); in fifoq_stat_loop()
H A Dqdisc_red.c58 sigset_t omask; in red_stat_loop() local
106 if (sigprocmask(SIG_BLOCK, NULL, &omask) == 0) in red_stat_loop()
107 sigsuspend(&omask); in red_stat_loop()
H A Dqdisc_priq.c60 sigset_t omask; in priq_stat_loop() local
123 if (sigprocmask(SIG_BLOCK, NULL, &omask) == 0) in priq_stat_loop()
124 sigsuspend(&omask); in priq_stat_loop()
/netbsd/sys/compat/common/
H A Dcompat_util.c95 for (out = 0; tab->omask != 0; tab++) { in emul_flags_translate()
96 if ((in & tab->omask) == tab->oval) { in emul_flags_translate()
97 in &= ~tab->omask; in emul_flags_translate()
/netbsd/usr.bin/apply/
H A Dapply.c210 int omask; in shell_system() local
228 omask = sigblock(sigmask(SIGCHLD)); in shell_system()
236 (void)sigsetmask(omask); in shell_system()
246 (void)sigsetmask(omask); in shell_system()
/netbsd/lib/libm/arch/i387/
H A Dfenv.c477 uint32_t mxcsr, omask; in feenableexcept() local
487 omask = (control | mxcsr >> __SSE_EMASK_SHIFT) & FE_ALL_EXCEPT; in feenableexcept()
495 return (FE_ALL_EXCEPT & ~omask); in feenableexcept()
501 uint32_t mxcsr, omask; in fedisableexcept() local
511 omask = (control | mxcsr >> __SSE_EMASK_SHIFT) & FE_ALL_EXCEPT; in fedisableexcept()
519 return (FE_ALL_EXCEPT & ~omask); in fedisableexcept()
/netbsd/lib/libm/arch/x86_64/
H A Dfenv.c504 uint32_t mxcsr, omask; in feenableexcept() local
513 omask = (control | mxcsr >> _SSE_EMASK_SHIFT) & FE_ALL_EXCEPT; in feenableexcept()
520 return (FE_ALL_EXCEPT & ~omask); in feenableexcept()
527 uint32_t mxcsr, omask; in fedisableexcept() local
535 omask = (control | mxcsr >> _SSE_EMASK_SHIFT) & FE_ALL_EXCEPT; in fedisableexcept()
542 return (FE_ALL_EXCEPT & ~omask); in fedisableexcept()
/netbsd/sys/external/isc/atheros_hal/dist/ar5212/
H A Dar5212_interrupts.c142 uint32_t omask = ahp->ah_maskReg; in ar5212SetInterrupts() local
146 __func__, omask, ints); in ar5212SetInterrupts()
148 if (omask & HAL_INT_GLOBAL) { in ar5212SetInterrupts()
201 return omask; in ar5212SetInterrupts()

1234