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

1234567891011>>

/openbsd-current/lib/libc/stdio/
H A Dfwide.c37 fwide(FILE *fp, int mode) argument
43 * for mode value.
47 if (mode > 0)
48 mode = 1;
49 else if (mode < 0)
50 mode = -1;
59 if (wcio->wcio_mode == 0 && mode != 0)
60 wcio->wcio_mode = mode;
62 mode = wcio->wcio_mode;
65 return mode;
[all...]
/openbsd-current/gnu/usr.bin/cvs/os2/
H A Dmkdir.c9 os2_mkdir (const char *path, int mode) argument
14 assert (mode == 0777);
H A Dpopen.h4 FILE *popen (const char *cmd, const char *mode);
/openbsd-current/gnu/usr.bin/cvs/windows-NT/
H A Dmkdir.c9 wnt_mkdir (const char *path, int mode) argument
14 assert (mode == 0777);
/openbsd-current/gnu/gcc/libdecnumber/
H A DdecRound.c47 /* Set the decNumber rounding mode from the FE_DEC_* value in MODE. */
50 __dfp_set_round (int mode) argument
52 switch (mode)
65 /* We can't use assert in libgcc, so just return the default mode. */
70 /* Return the decNumber rounding mode as an FE_DEC_* value. */
75 int mode; local
80 mode = FE_DEC_DOWNWARD; break;
82 mode = FE_DEC_TONEAREST; break;
84 mode = FE_DEC_TONEARESTFROMZERO; break;
86 mode
[all...]
/openbsd-current/gnu/usr.bin/binutils/include/mpw/
H A Dvarargs.h9 #define va_arg(list,mode) ((mode *)(list += sizeof(mode)))[-1]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Deh52.C3 int promote_mode (int mode, int *punsignedp) argument
7 return mode;
/openbsd-current/lib/libc/compat-43/
H A Dcreat.c34 creat(const char *path, mode_t mode) argument
36 return(open(path, O_WRONLY|O_CREAT|O_TRUNC, mode));
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/init/
H A Darray10.C4 typedef int __attribute__((mode(V2SI))) vec;
/openbsd-current/regress/sbin/isakmpd/common/
H A Dmonitor.c10 monitor_open(const char *path, int flags, mode_t mode) argument
/openbsd-current/lib/libcrypto/
H A Dmem_dbg.c115 CRYPTO_mem_ctrl(int mode) argument
/openbsd-current/sys/dev/pci/drm/i915/gt/
H A Dintel_gt_ccs_mode.c14 u32 mode = 0; local
27 mode |= XEHP_CCS_MODE_CSLICE(cslice, first_ccs);
34 mode |= XEHP_CCS_MODE_CSLICE(cslice,
38 return mode;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D980825-1.c14 boolean mode = TRUE; local
21 mode = TRUE;
23 case '+': mode = TRUE; break;
24 case '-': mode = FALSE; break;
25 case 'c': Option.include.classNames = mode; break;
26 case 'd': Option.include.defines = mode; break;
27 case 'e': Option.include.enumerators = mode; break;
H A Dsimd-1.c1 typedef int v2si __attribute__ ((mode(V2SI)));
2 typedef unsigned di __attribute__ ((mode(DI)));
/openbsd-current/gnu/gcc/gcc/
H A Daddresses.h26 base_reg_class (enum machine_mode mode ATTRIBUTE_UNUSED,
31 return MODE_CODE_BASE_REG_CLASS (mode, outer_code, index_code);
35 return MODE_BASE_REG_REG_CLASS (mode);
38 return MODE_BASE_REG_CLASS (mode);
51 ok_for_base_p_1 (unsigned regno, enum machine_mode mode ATTRIBUTE_UNUSED,
56 return REGNO_MODE_CODE_OK_FOR_BASE_P (regno, mode, outer_code, index_code);
60 return REGNO_MODE_OK_FOR_REG_BASE_P (regno, mode);
63 return REGNO_MODE_OK_FOR_BASE_P (regno, mode);
74 regno_ok_for_base_p (unsigned regno, enum machine_mode mode, argument
80 return ok_for_base_p_1 (regno, mode, outer_cod
[all...]
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...]
/openbsd-current/sys/kern/
H A Dsysv_ipc.c44 ipcperm(struct ucred *cred, struct ipc_perm *perm, int mode) argument
47 if (mode == IPC_M) {
55 if (vaccess(VNON, perm->mode, perm->uid, perm->gid, mode, cred) == 0 ||
56 vaccess(VNON, perm->mode, perm->cuid, perm->cgid, mode, cred) == 0)
/openbsd-current/games/hunt/hunt/
H A Dconnect.c44 u_int32_t mode; local
49 mode = C_MESSAGE;
51 mode = C_MONITOR;
53 mode = C_PLAYER;
63 mode = htonl(mode);
70 (void) write(Socket, &mode, sizeof mode);
/openbsd-current/games/sail/
H A Dmain.c60 mode = MODE_DRIVER;
62 mode = MODE_LOGGER;
64 mode = MODE_PLAYER;
68 mode = MODE_DRIVER;
71 mode = MODE_LOGGER;
93 mode = i;
94 switch (mode) {
102 warnx("Unknown mode %d", mode);
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A Dbf-spl1.c5 typedef SFtype __attribute__ ((mode (SF)));
6 typedef DFtype __attribute__ ((mode (DF)));
8 typedef int HItype __attribute__ ((mode (HI)));
9 typedef int SItype __attribute__ ((mode (SI)));
10 typedef int DItype __attribute__ ((mode (DI)));
12 typedef unsigned int UHItype __attribute__ ((mode (HI)));
13 typedef unsigned int USItype __attribute__ ((mode (SI)));
14 typedef unsigned int UDItype __attribute__ ((mode (DI)));
/openbsd-current/gnu/usr.bin/perl/os2/
H A Ddlfcn.h1 void *dlopen(const char *path, int mode);
/openbsd-current/lib/libcurses/
H A Dnc_access.h60 #define safe_fopen(name,mode) fopen(name,mode)
62 #define safe_open3(name,flags,mode) open(name,flags,mode)
66 #define safe_fopen(name,mode) _nc_safe_fopen(name,mode)
68 #define safe_open3(name,flags,mode) _nc_safe_open3(name,flags,mode)
/openbsd-current/gnu/gcc/gcc/config/
H A Dfloatunsisf.c2 typedef int SItype __attribute__ ((mode (SI)));
3 typedef unsigned int USItype __attribute__ ((mode (SI)));
4 typedef float SFtype __attribute__ ((mode (SF)));
H A Dfloatunsitf.c2 typedef int SItype __attribute__ ((mode (SI)));
3 typedef unsigned int USItype __attribute__ ((mode (SI)));
4 typedef float TFtype __attribute__ ((mode (TF)));
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)));

Completed in 247 milliseconds

1234567891011>>