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

1234567891011>>

/freebsd-10.1-release/lib/libkse/thread/
H A Dthr_creat.c40 int ___creat(const char *path, mode_t mode);
45 ___creat(const char *path, mode_t mode) argument
51 ret = __creat(path, mode);
/freebsd-10.1-release/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-10.1-release/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-10.1-release/contrib/gcc/config/
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-10.1-release/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-10.1-release/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-10.1-release/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-10.1-release/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-10.1-release/tools/regression/lib/libc/stdio/
H A Dtest-fopen.c43 runtest(const char *fname, const char *mode) argument
48 fp = fopen(fname, mode);
51 testnum++, fname, mode);
61 testnum++, fname, mode);
62 if (fcntl(fd, F_GETFD) == (strchr(mode, 'e') != NULL ? FD_CLOEXEC : 0))
67 if (strchr(mode, '+'))
68 wantedflags = O_RDWR | (*mode == 'a' ? O_APPEND : 0);
69 else if (*mode == 'r')
71 else if (*mode == 'w')
73 else if (*mode
[all...]
/freebsd-10.1-release/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...]
H A Da2c.conf12 <mode>r0w0e0</mode>
22 <mode>r0w0e0</mode>
32 <mode>r0w0e0</mode>
51 <mode>r0w0e0</mode>
61 <mode>r0w0e0</mode>
[all...]
/freebsd-10.1-release/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-10.1-release/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-10.1-release/tools/regression/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-10.1-release/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-10.1-release/sys/dev/vkbd/
H A Dvkbd_var.h39 int mode; /* keyboard mode */ member in struct:vkbd_status
/freebsd-10.1-release/tools/test/ppsapi/
H A Dppsapitest.c38 int i, mode; local
83 i = time_pps_getcap(ph, &mode);
88 if (mode & PPS_CAPTUREASSERT)
90 if (mode & PPS_CAPTURECLEAR)
92 if (mode & PPS_OFFSETASSERT)
94 if (mode & PPS_OFFSETCLEAR)
96 if (mode & PPS_ECHOASSERT)
98 if (mode & PPS_ECHOCLEAR)
100 if (mode & PPS_CANWAIT)
102 if (mode
[all...]
/freebsd-10.1-release/tools/tools/usbtest/
H A Dusbtest.c193 int mode = 0; local
203 error = sysctlbyname("hw.usb.g_audio.mode", NULL, NULL,
204 &mode, sizeof(mode));
207 printf("WARNING: Could not set audio mode "
208 "to %d (error=%d)\n", mode, errno);
234 "1) Set Silent mode %s\n"
235 "2) Set Dump mode %s\n"
236 "3) Set Loop mode %s\n"
237 "4) Set Pattern mode
316 int mode = 0; local
405 int mode = 0; local
522 int mode = 0; local
[all...]
/freebsd-10.1-release/tools/regression/lib/libc/gen/
H A Dtest-popen.c55 check_cloexec(FILE *fp, const char *mode) argument
63 (strchr(mode, 'e') != NULL ? FD_CLOEXEC : 0))
72 const char *mode; local
81 mode = allmodes[i];
82 fp = popen("exit 7", mode);
84 fprintf(stderr, "popen(, \"%s\") failed", mode);
88 check_cloexec(fp, mode);
95 mode = rmodes[i];
96 fp = popen("exit 9", mode);
98 fprintf(stderr, "popen(, \"%s\") failed", mode);
[all...]

Completed in 296 milliseconds

1234567891011>>