Searched refs:mode (Results 26 - 50 of 2233) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/gcc/config/
H A Dfloatunsixf.c2 typedef int SItype __attribute__ ((mode (SI)));
3 typedef unsigned int USItype __attribute__ ((mode (SI)));
4 typedef float XFtype __attribute__ ((mode (XF)));
H A Dfixsfdi.c2 typedef unsigned int USItype __attribute__ ((mode (SI)));
3 typedef int DItype __attribute__ ((mode (DI)));
4 typedef unsigned int UDItype __attribute__ ((mode (DI)));
5 typedef float SFtype __attribute__ ((mode (SF)));
6 typedef float DFtype __attribute__ ((mode (DF)));
H A Dfloatundisf.c2 typedef int DItype __attribute__ ((mode (DI)));
3 typedef unsigned int UDItype __attribute__ ((mode (DI)));
4 typedef unsigned int USItype __attribute__ ((mode (SI)));
5 typedef float SFtype __attribute__ ((mode (SF)));
6 typedef float DFtype __attribute__ ((mode (DF)));
H A Dfloatdisf.c2 typedef int DItype __attribute__ ((mode (DI)));
3 typedef unsigned int UDItype __attribute__ ((mode (DI)));
4 typedef int SItype __attribute__ ((mode (SI)));
5 typedef unsigned int USItype __attribute__ ((mode (SI)));
6 typedef float SFtype __attribute__ ((mode (SF)));
7 typedef float DFtype __attribute__ ((mode (DF)));
H A Dfixdfdi.c2 typedef unsigned int USItype __attribute__ ((mode (SI)));
3 typedef int DItype __attribute__ ((mode (DI)));
4 typedef unsigned int UDItype __attribute__ ((mode (DI)));
5 typedef float DFtype __attribute__ ((mode (DF)));
/freebsd-11-stable/lib/libc/stdio/
H A Dfwide.c39 fwide(FILE *fp, int mode) argument
45 if (mode != 0 && fp->_orientation == 0)
46 fp->_orientation = mode > 0 ? 1 : -1;
/freebsd-11-stable/sys/i386/ibcs2/
H A Dibcs2_stat.h83 #define IBCS2_S_ISFIFO(mode) (((mode) & IBCS2_S_IFMT) == IBCS2_S_IFIFO)
84 #define IBCS2_S_ISCHR(mode) (((mode) & IBCS2_S_IFMT) == IBCS2_S_IFCHR)
85 #define IBCS2_S_ISDIR(mode) (((mode) & IBCS2_S_IFMT) == IBCS2_S_IFDIR)
86 #define IBCS2_S_ISBLK(mode) (((mode) & IBCS2_S_IFMT) == IBCS2_S_IFBLK)
87 #define IBCS2_S_ISREG(mode) (((mode)
[all...]
/freebsd-11-stable/contrib/gcc/
H A Drtlhooks.c42 gen_lowpart_general (enum machine_mode mode, rtx x)
44 rtx result = gen_lowpart_common (mode, x);
54 result = gen_lowpart_common (mode, copy_to_reg (x));
68 && TRULY_NOOP_TRUNCATION (GET_MODE_BITSIZE (mode),
71 return gen_lowpart_general (mode, force_reg (GET_MODE (x), x));
75 - MAX (GET_MODE_SIZE (mode), UNITS_PER_WORD));
80 offset -= (MIN (UNITS_PER_WORD, GET_MODE_SIZE (mode))
83 return adjust_address (x, mode, offset);
90 gen_lowpart_no_emit_general (enum machine_mode mode, rtx x)
92 rtx result = gen_lowpart_if_possible (mode,
41 gen_lowpart_general(enum machine_mode mode, rtx x) argument
89 gen_lowpart_no_emit_general(enum machine_mode mode, rtx x) argument
137 gen_lowpart_if_possible(enum machine_mode mode, rtx x) argument
[all...]
/freebsd-11-stable/lib/libc/string/
H A Dstrmode.c41 strmode(/* mode_t */ int mode, char *p) argument
44 switch (mode & S_IFMT) {
78 if (mode & S_IRUSR)
82 if (mode & S_IWUSR)
86 switch (mode & (S_IXUSR | S_ISUID)) {
101 if (mode & S_IRGRP)
105 if (mode & S_IWGRP)
109 switch (mode & (S_IXGRP | S_ISGID)) {
124 if (mode & S_IROTH)
128 if (mode
[all...]
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dstrmode.c40 /* XXX mode should be mode_t */
43 strmode(int mode, char *p) argument
46 switch (mode & S_IFMT) {
77 if (mode & S_IRUSR)
81 if (mode & S_IWUSR)
85 switch (mode & (S_IXUSR | S_ISUID)) {
100 if (mode & S_IRGRP)
104 if (mode & S_IWGRP)
108 switch (mode & (S_IXGRP | S_ISGID)) {
123 if (mode
[all...]
/freebsd-11-stable/sys/contrib/xz-embedded/linux/lib/xz/
H A Dxz_private.h53 /* If no specific decoding mode is requested, enable support for all modes. */
62 * The DEC_IS_foo(mode) macros are used in "if" statements. If only some
67 # define DEC_IS_SINGLE(mode) ((mode) == XZ_SINGLE)
69 # define DEC_IS_SINGLE(mode) (false)
73 # define DEC_IS_PREALLOC(mode) ((mode) == XZ_PREALLOC)
75 # define DEC_IS_PREALLOC(mode) (false)
79 # define DEC_IS_DYNALLOC(mode) ((mode)
[all...]
/freebsd-11-stable/contrib/wpa/wpa_supplicant/
H A Dop_classes.c19 static enum chan_allowed allow_channel(struct hostapd_hw_modes *mode, u8 chan, argument
24 for (i = 0; i < mode->num_channels; i++) {
25 if (mode->channels[i].chan == chan)
29 if (i == mode->num_channels ||
30 (mode->channels[i].flag & HOSTAPD_CHAN_DISABLED))
34 *flags = mode->channels[i].flag;
36 if (mode->channels[i].flag & HOSTAPD_CHAN_NO_IR)
43 static int get_center_80mhz(struct hostapd_hw_modes *mode, u8 channel) argument
48 if (mode->mode !
65 verify_80mhz(struct hostapd_hw_modes *mode, u8 channel) argument
100 get_center_160mhz(struct hostapd_hw_modes *mode, u8 channel) argument
122 verify_160mhz(struct hostapd_hw_modes *mode, u8 channel) argument
162 verify_channel(struct hostapd_hw_modes *mode, u8 channel, u8 bw) argument
216 struct hostapd_hw_modes *mode; local
[all...]
/freebsd-11-stable/etc/
H A Drc.bsdextended63 #${CMD} add subject uid 80 object not uid 80 mode rxws;
64 #${CMD} add subject gid 80 object not gid 80 mode rxws;
68 #${CMD} add subject uid 54 object not uid 54 mode rxws;
69 #${CMD} add subject gid 26 object gid 54 mode rxws;
73 ${CMD} add subject uid 0 object not uid 0 mode arxws;
74 ${CMD} add subject gid 0 object not gid 0 mode arxws;
78 #${CMD} add subject uid 54 object not uid 54 mode rxws;
79 #${CMD} add subject gid 54 object not gid 54 mode rxws;
83 ${CMD} add subject uid 3 object not uid 3 mode rxws;
84 ${CMD} add subject gid 7 object not gid 7 mode rxw
[all...]
/freebsd-11-stable/tools/regression/geom/ConfCmp/
H A Da2d.conf12 <mode>r0w0e0</mode>
22 <mode>r0w0e0</mode>
32 <mode>r0w0e0</mode>
42 <mode>r0w0e0</mode>
52 <mode>r0w0e0</mode>
[all...]
H A Da2.conf12 <mode>r0w0e0</mode>
22 <mode>r0w0e0</mode>
32 <mode>r0w0e0</mode>
42 <mode>r0w0e0</mode>
52 <mode>r0w0e0</mode>
[all...]
H A Da2a.conf12 <mode>r0w0e0</mode>
22 <mode>r0w0e0</mode>
32 <mode>r0w0e0</mode>
42 <mode>r0w0e0</mode>
52 <mode>r0w0e0</mode>
[all...]
H A Da2b.conf12 <mode>r0w0e0</mode>
22 <mode>r0w0e0</mode>
32 <mode>r0w0e0</mode>
42 <mode>r0w0e0</mode>
52 <mode>r0w0e0</mode>
[all...]
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dfopen_unlocked.c39 @deftypefn Extension {FILE *} fopen_unlocked (const char *@var{path}, const char * @var{mode})
48 @deftypefn Extension {FILE *} fdopen_unlocked (int @var{fildes}, const char * @var{mode})
57 @deftypefn Extension {FILE *} freopen_unlocked (const char * @var{path}, const char * @var{mode}, FILE * @var{stream})
105 fopen_unlocked (const char *path, const char *mode) argument
107 FILE *const fp = fopen (path, mode);
113 fdopen_unlocked (int fildes, const char *mode) argument
115 FILE *const fp = fdopen (fildes, mode);
121 freopen_unlocked (const char *path, const char *mode, FILE *stream) argument
123 FILE *const fp = freopen (path, mode, stream);
/freebsd-11-stable/contrib/binutils/binutils/
H A Dfilemode.c109 mode_string (unsigned long mode, char *str)
111 str[0] = ftypelet ((unsigned long) mode);
112 str[1] = (mode & S_IRUSR) != 0 ? 'r' : '-';
113 str[2] = (mode & S_IWUSR) != 0 ? 'w' : '-';
114 str[3] = (mode & S_IXUSR) != 0 ? 'x' : '-';
115 str[4] = (mode & S_IRGRP) != 0 ? 'r' : '-';
116 str[5] = (mode & S_IWGRP) != 0 ? 'w' : '-';
117 str[6] = (mode & S_IXGRP) != 0 ? 'x' : '-';
118 str[7] = (mode & S_IROTH) != 0 ? 'r' : '-';
119 str[8] = (mode
108 mode_string(unsigned long mode, char *str) argument
[all...]
/freebsd-11-stable/contrib/pjdfstest/tests/chmod/
H A D12.t21 expect 0777 -u 65534 -g 65534 open ${n0} O_WRONLY : write 0 x : fstat 0 mode
22 expect 0777 stat ${n0} mode
27 expect 0777 -u 65534 -g 65534 open ${n0} O_RDWR : write 0 x : fstat 0 mode
28 expect 0777 stat ${n0} mode
33 expect 0777 -u 65534 -g 65534 open ${n0} O_RDWR : write 0 x : fstat 0 mode
34 expect 0777 stat ${n0} mode
/freebsd-11-stable/lib/libc/compat-43/
H A Dcreat.c44 int __creat(const char *path, mode_t mode);
48 __creat(const char *path, mode_t mode) argument
53 O_CREAT | O_TRUNC, mode));
/freebsd-11-stable/lib/libc/sys/
H A Dopenat.c51 int mode; local
55 mode = va_arg(ap, int);
58 mode = 0;
61 __libc_interposing[INTERPOS_openat])(fd, path, flags, mode));
/freebsd-11-stable/libexec/tftpd/
H A Dtftp-file.h29 int write_init(int fd, FILE *f, const char *mode);
33 int read_init(int fd, FILE *f, const char *mode);
/freebsd-11-stable/sys/dev/vkbd/
H A Dvkbd_var.h39 int mode; /* keyboard mode */ member in struct:vkbd_status
/freebsd-11-stable/lib/libc/tests/gen/
H A Dpopen_test.c55 check_cloexec(FILE *fp, const char *mode) argument
63 if (strchr(mode, 'e') != NULL)
76 const char *mode; local
80 mode = allmodes[i];
81 fp = popen("exit 7", mode);
82 ATF_CHECK_MSG(fp != NULL, "popen(, \"%s\") failed", mode);
85 check_cloexec(fp, mode);
97 const char *mode; local
102 mode = rmodes[i];
103 fp = popen("exit 9", mode);
141 const char *mode; local
215 const char *mode; local
[all...]

Completed in 205 milliseconds

1234567891011>>