Searched refs:mode (Results 1 - 25 of 5947) sorted by relevance

1234567891011>>

/netbsd-current/share/examples/wsmoused/
H A Dwsmoused.conf18 # Selection mode (sel) specific configuration.
19 mode selection {
27 mode action {
/netbsd-current/external/gpl3/autoconf/dist/lib/emacs/
H A DMakefile.am3 dist_lisp_LISP = autoconf-mode.el autotest-mode.el
/netbsd-current/crypto/dist/ipsec-tools/src/racoon/contrib/
H A Dsp.pl6 $mode = 'transport';
8 $mode = $ARGV[2];
12 if ($mode eq 'transport') {
13 print STDERR "install esp transport mode: $src -> $dst\n";
16 } elsif ($mode eq 'delete') {
/netbsd-current/external/gpl3/gdb/dist/libdecnumber/
H A DdecRound.c42 /* Set the decNumber rounding mode from the FE_DEC_* value in MODE. */
45 __dfp_set_round (int mode) argument
47 switch (mode)
60 /* We can't use assert in libgcc, so just return the default mode. */
65 /* Return the decNumber rounding mode as an FE_DEC_* value. */
70 int mode; local
75 mode = FE_DEC_DOWNWARD; break;
77 mode = FE_DEC_TONEAREST; break;
79 mode = FE_DEC_TONEARESTFROMZERO; break;
81 mode
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/libdecnumber/
H A DdecRound.c42 /* Set the decNumber rounding mode from the FE_DEC_* value in MODE. */
45 __dfp_set_round (int mode) argument
47 switch (mode)
60 /* We can't use assert in libgcc, so just return the default mode. */
65 /* Return the decNumber rounding mode as an FE_DEC_* value. */
70 int mode; local
75 mode = FE_DEC_DOWNWARD; break;
77 mode = FE_DEC_TONEAREST; break;
79 mode = FE_DEC_TONEARESTFROMZERO; break;
81 mode
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libdecnumber/
H A DdecRound.c42 /* Set the decNumber rounding mode from the FE_DEC_* value in MODE. */
45 __dfp_set_round (int mode) argument
47 switch (mode)
60 /* We can't use assert in libgcc, so just return the default mode. */
65 /* Return the decNumber rounding mode as an FE_DEC_* value. */
70 int mode; local
75 mode = FE_DEC_DOWNWARD; break;
77 mode = FE_DEC_TONEAREST; break;
79 mode = FE_DEC_TONEARESTFROMZERO; break;
81 mode
[all...]
/netbsd-current/external/gpl3/gcc/dist/libdecnumber/
H A DdecRound.c42 /* Set the decNumber rounding mode from the FE_DEC_* value in MODE. */
45 __dfp_set_round (int mode) argument
47 switch (mode)
60 /* We can't use assert in libgcc, so just return the default mode. */
65 /* Return the decNumber rounding mode as an FE_DEC_* value. */
70 int mode; local
75 mode = FE_DEC_DOWNWARD; break;
77 mode = FE_DEC_TONEAREST; break;
79 mode = FE_DEC_TONEARESTFROMZERO; break;
81 mode
[all...]
/netbsd-current/lib/libc/stdio/
H A Dfwide.c43 fwide(FILE *fp, int mode) argument
51 * for mode value.
55 if (mode > 0)
56 mode = 1;
57 else if (mode < 0)
58 mode = -1;
65 if (wcio->wcio_mode == 0 && mode != 0)
66 wcio->wcio_mode = mode;
68 mode = wcio->wcio_mode;
71 return mode;
[all...]
/netbsd-current/bin/ps/
H A Dextern.h49 void command(struct pinfo *, VARENT *, enum mode);
50 void cpuid(struct pinfo *, VARENT *, enum mode);
51 void cputime(struct pinfo *, VARENT *, enum mode);
56 void elapsed(struct pinfo *, VARENT *, enum mode);
59 void gname(struct pinfo *, VARENT *, enum mode);
60 void groups(struct pinfo *, VARENT *, enum mode);
61 void groupnames(struct pinfo *, VARENT *, enum mode);
62 void lcputime(struct pinfo *, VARENT *, enum mode);
63 void logname(struct pinfo *, VARENT *, enum mode);
64 void longtname(struct pinfo *, VARENT *, enum mode);
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/i386/
H A Davx512f-16bit.s1 # Check AVX512F instructions in 16-bit mode
/netbsd-current/external/gpl3/gdb/dist/sim/common/
H A Dcgen-mem.h36 #define DECLARE_GETMEM_EXTERN(mode, size) \
37 extern mode XCONCAT2 (GETMEM,mode) (SIM_CPU *, IADDR, ADDR);
40 #define DECLARE_GETMEM(mode, size) \
41 DECLARE_GETMEM_EXTERN (mode, size) \
42 MEMOPS_INLINE mode \
43 XCONCAT2 (GETMEM,mode) (SIM_CPU *cpu, IADDR pc, ADDR a) \
45 PROFILE_COUNT_READ (cpu, a, XCONCAT2 (MODE_,mode)); \
50 #define DECLARE_GETMEM(mode, size) DECLARE_GETMEM_EXTERN (mode, siz
[all...]
/netbsd-current/external/gpl2/diffutils/dist/lib/
H A Dsetmode.h3 /* Set a file descriptor's mode to binary or to text.
27 # define set_binary_mode(fd, mode) 1
/netbsd-current/external/bsd/ntp/dist/libntp/
H A Dmodetoa.c4 * modetoa - return an asciized mode
14 size_t mode
30 if (mode >= COUNTOF(modestrings)) {
32 snprintf(bp, LIB_BUFLENGTH, "mode#%zu", mode);
36 return modestrings[mode];
/netbsd-current/external/gpl3/gcc.old/dist/libgcc/config/rl78/
H A Dlib2div.c26 typedef int sint32_type __attribute__ ((mode (SI)));
27 typedef unsigned int uint32_type __attribute__ ((mode (SI)));
28 typedef int sint16_type __attribute__ ((mode (HI)));
29 typedef unsigned int uint16_type __attribute__ ((mode (HI)));
30 typedef int sint08_type __attribute__ ((mode (QI)));
31 typedef unsigned int uint08_type __attribute__ ((mode (QI)));
32 typedef int word_type __attribute__ ((mode (__word__)));
/netbsd-current/external/gpl3/gcc.old/dist/libgcc/config/pru/
H A Dlib2bitcountHI.c26 typedef int sint32_type __attribute__ ((mode (SI)));
27 typedef unsigned int uint32_type __attribute__ ((mode (SI)));
28 typedef int sint16_type __attribute__ ((mode (HI)));
29 typedef unsigned int uint16_type __attribute__ ((mode (HI)));
30 typedef int sint08_type __attribute__ ((mode (QI)));
31 typedef unsigned int uint08_type __attribute__ ((mode (QI)));
32 typedef int word_type __attribute__ ((mode (__word__)));
H A Dlib2divHI.c1 /* HI mode divide routines for libgcc for PRU
26 typedef int sint32_type __attribute__ ((mode (SI)));
27 typedef unsigned int uint32_type __attribute__ ((mode (SI)));
28 typedef int sint16_type __attribute__ ((mode (HI)));
29 typedef unsigned int uint16_type __attribute__ ((mode (HI)));
30 typedef int sint08_type __attribute__ ((mode (QI)));
31 typedef unsigned int uint08_type __attribute__ ((mode (QI)));
32 typedef int word_type __attribute__ ((mode (__word__)));
H A Dlib2divQI.c1 /* QI mode divide routines for libgcc for PRU
26 typedef int sint32_type __attribute__ ((mode (SI)));
27 typedef unsigned int uint32_type __attribute__ ((mode (SI)));
28 typedef int sint16_type __attribute__ ((mode (HI)));
29 typedef unsigned int uint16_type __attribute__ ((mode (HI)));
30 typedef int sint08_type __attribute__ ((mode (QI)));
31 typedef unsigned int uint08_type __attribute__ ((mode (QI)));
32 typedef int word_type __attribute__ ((mode (__word__)));
/netbsd-current/external/gpl3/gcc.old/dist/libgcc/config/msp430/
H A Dlib2divSI.c1 /* SI mode divide routines for libgcc for MSP430
26 typedef int sint32_type __attribute__ ((mode (SI)));
27 typedef unsigned int uint32_type __attribute__ ((mode (SI)));
28 typedef int sint16_type __attribute__ ((mode (HI)));
29 typedef unsigned int uint16_type __attribute__ ((mode (HI)));
30 typedef int sint08_type __attribute__ ((mode (QI)));
31 typedef unsigned int uint08_type __attribute__ ((mode (QI)));
32 typedef int word_type __attribute__ ((mode (__word__)));
H A Dlib2bitcountHI.c26 typedef int sint32_type __attribute__ ((mode (SI)));
27 typedef unsigned int uint32_type __attribute__ ((mode (SI)));
28 typedef int sint16_type __attribute__ ((mode (HI)));
29 typedef unsigned int uint16_type __attribute__ ((mode (HI)));
30 typedef int sint08_type __attribute__ ((mode (QI)));
31 typedef unsigned int uint08_type __attribute__ ((mode (QI)));
32 typedef int word_type __attribute__ ((mode (__word__)));
H A Dlib2divHI.c1 /* HI mode divide routines for libgcc for MSP430
26 typedef int sint32_type __attribute__ ((mode (SI)));
27 typedef unsigned int uint32_type __attribute__ ((mode (SI)));
28 typedef int sint16_type __attribute__ ((mode (HI)));
29 typedef unsigned int uint16_type __attribute__ ((mode (HI)));
30 typedef int sint08_type __attribute__ ((mode (QI)));
31 typedef unsigned int uint08_type __attribute__ ((mode (QI)));
32 typedef int word_type __attribute__ ((mode (__word__)));
H A Dlib2divQI.c1 /* QI mode divide routines for libgcc for MSP430
26 typedef int sint32_type __attribute__ ((mode (SI)));
27 typedef unsigned int uint32_type __attribute__ ((mode (SI)));
28 typedef int sint16_type __attribute__ ((mode (HI)));
29 typedef unsigned int uint16_type __attribute__ ((mode (HI)));
30 typedef int sint08_type __attribute__ ((mode (QI)));
31 typedef unsigned int uint08_type __attribute__ ((mode (QI)));
32 typedef int word_type __attribute__ ((mode (__word__)));
/netbsd-current/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/
H A Dcipher_blowfish_hw.c27 # define PROV_CIPHER_HW_blowfish_mode(mode, UCMODE) \
28 IMPLEMENT_CIPHER_HW_##UCMODE(mode, blowfish, PROV_BLOWFISH_CTX, BF_KEY, \
29 BF_##mode) \
30 static const PROV_CIPHER_HW bf_##mode = { \
32 cipher_hw_blowfish_##mode##_cipher \
34 const PROV_CIPHER_HW *ossl_prov_cipher_hw_blowfish_##mode(size_t keybits) \
36 return &bf_##mode; \
H A Dcipher_cast5_hw.c27 # define PROV_CIPHER_HW_cast_mode(mode, UCMODE) \
28 IMPLEMENT_CIPHER_HW_##UCMODE(mode, cast5, PROV_CAST_CTX, CAST_KEY, \
29 CAST_##mode) \
30 static const PROV_CIPHER_HW cast5_##mode = { \
32 cipher_hw_cast5_##mode##_cipher \
34 const PROV_CIPHER_HW *ossl_prov_cipher_hw_cast5_##mode(size_t keybits) \
36 return &cast5_##mode; \
H A Dcipher_rc5_hw.c26 # define PROV_CIPHER_HW_rc5_mode(mode, UCMODE) \
27 IMPLEMENT_CIPHER_HW_##UCMODE(mode, rc5, PROV_RC5_CTX, RC5_32_KEY, \
28 RC5_32_##mode) \
29 static const PROV_CIPHER_HW rc5_##mode = { \
31 cipher_hw_rc5_##mode##_cipher \
33 const PROV_CIPHER_HW *ossl_prov_cipher_hw_rc5_##mode(size_t keybits) \
35 return &rc5_##mode; \
H A Dcipher_seed_hw.c27 # define PROV_CIPHER_HW_seed_mode(mode, UCMODE) \
28 IMPLEMENT_CIPHER_HW_##UCMODE(mode, seed, PROV_SEED_CTX, SEED_KEY_SCHEDULE, \
29 SEED_##mode) \
30 static const PROV_CIPHER_HW seed_##mode = { \
32 cipher_hw_seed_##mode##_cipher \
34 const PROV_CIPHER_HW *ossl_prov_cipher_hw_seed_##mode(size_t keybits) \
36 return &seed_##mode; \

Completed in 268 milliseconds

1234567891011>>