Home
last modified time | relevance | path

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

/dragonfly/bin/mkdir/
HDmkdir.c57 mode_t omode; in main() local
83 omode = S_IRWXU | S_IRWXG | S_IRWXO; in main()
93 omode = getmode(set, S_IRWXU | S_IRWXG | S_IRWXO); in main()
100 if (build(*argv, omode)) in main()
102 } else if (mkdir(*argv, omode) < 0) { in main()
120 if (success && mode != NULL && chmod(*argv, omode) == -1) { in main()
129 build(char *path, mode_t omode) in build() argument
171 mkdir_race(path, last ? omode : in build()
/dragonfly/usr.bin/truncate/
HDtruncate.c51 mode_t omode; in main() local
104 omode = S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH; in main()
107 if ((fd = open(fname, oflags, omode)) == -1) { in main()
/dragonfly/lib/libc/gen/
HDsetmode.c80 getmode(const void *bbox, mode_t omode) in getmode() argument
86 newmode = omode; in getmode()
134 if (omode & (S_IFDIR|S_IXUSR|S_IXGRP|S_IXOTH)) in getmode()
141 printf("getmode:%04o -> %04o\n", omode, newmode); in getmode()
/dragonfly/libexec/getty/
HDsubr.c267 iflag = omode.c_iflag; in set_flags()
268 oflag = omode.c_oflag; in set_flags()
269 cflag = omode.c_cflag; in set_flags()
270 lflag = omode.c_lflag; in set_flags()
HDextern.h41 extern struct termios tmode, omode;
HDmain.c81 struct termios omode; variable
451 omode = tmode; /* fill c_cc for dogettytab() */ in defttymode()
467 omode = tmode; in defttymode()
HDinit.c51 #define M(a) (&omode.c_cc[a])
/dragonfly/crypto/openssh/
HDscp.c1669 mode_t mode, omode, mask; local
1875 omode = mode;
1940 if (exists || omode != mode)
1942 if (fchmod(ofd, omode)) {
1944 if (chmod(np, omode)) {
1950 if (!exists && omode != mode)
1952 if (fchmod(ofd, omode & ~mask)) {
1954 if (chmod(np, omode & ~mask)) {
/dragonfly/usr.bin/xinstall/
HDxinstall.c480 int omode; in makelink() local
488 omode = mode; in makelink()
500 mode = omode; in makelink()
/dragonfly/contrib/gcc-4.7/gcc/
HDemit-rtl.c682 validate_subreg (enum machine_mode omode, enum machine_mode imode, in validate_subreg() argument
686 unsigned int osize = GET_MODE_SIZE (omode); in validate_subreg()
700 if (omode == word_mode) in validate_subreg()
709 && GET_MODE_INNER (imode) == omode) in validate_subreg()
716 else if (VECTOR_MODE_P (omode) && GET_MODE_INNER (omode) == imode) in validate_subreg()
721 else if (FLOAT_MODE_P (imode) || FLOAT_MODE_P (omode)) in validate_subreg()
741 && GET_MODE_INNER (imode) == omode) in validate_subreg()
743 else if (REG_CANNOT_CHANGE_MODE_P (regno, imode, omode)) in validate_subreg()
747 return subreg_offset_representable_p (regno, imode, offset, omode); in validate_subreg()
759 unsigned int low_off = subreg_lowpart_offset (omode, wmode); in validate_subreg()
HDloop-iv.c932 enum machine_mode omode = mode; in iv_analyze_expr() local
966 omode = GET_MODE (op0); in iv_analyze_expr()
1000 && !iv_analyze_expr (insn, op0, omode, &iv0)) in iv_analyze_expr()
1004 && !iv_analyze_expr (insn, op1, omode, &iv1)) in iv_analyze_expr()
HDcombine.c10795 gen_lowpart_for_combine (enum machine_mode omode, rtx x) in gen_lowpart_for_combine() argument
10798 unsigned int osize = GET_MODE_SIZE (omode); in gen_lowpart_for_combine()
10802 if (omode == imode) in gen_lowpart_for_combine()
10807 if (GET_MODE_SIZE (omode) > UNITS_PER_WORD in gen_lowpart_for_combine()
10826 if (imode == omode) in gen_lowpart_for_combine()
10832 result = gen_lowpart_common (omode, x); in gen_lowpart_for_combine()
10850 return gen_rtx_SUBREG (omode, x, 0); in gen_lowpart_for_combine()
10860 return adjust_address_nv (x, omode, offset); in gen_lowpart_for_combine()
10866 return gen_rtx_fmt_ee (GET_CODE (x), omode, XEXP (x, 0), XEXP (x, 1)); in gen_lowpart_for_combine()
10876 offset = subreg_lowpart_offset (omode, imode); in gen_lowpart_for_combine()
[all …]
HDvarasm.c2526 enum machine_mode omode, imode; in assemble_integer() local
2538 omode = mode_for_size (subsize * BITS_PER_UNIT, mclass, 0); in assemble_integer()
2543 rtx partial = simplify_subreg (omode, x, imode, i); in assemble_integer()
HDoptabs.c2830 lowpart_subreg_maybe_copy (enum machine_mode omode, rtx val, in lowpart_subreg_maybe_copy() argument
2834 ret = lowpart_subreg (omode, val, imode); in lowpart_subreg_maybe_copy()
2838 ret = lowpart_subreg (omode, val, imode); in lowpart_subreg_maybe_copy()
HDexpr.c10762 enum machine_mode omode = TYPE_MODE (index_type); in try_casesi() local
10772 omode, 1, default_label); in try_casesi()
/dragonfly/contrib/gcc-8.0/gcc/
HDemit-rtl.c894 validate_subreg (machine_mode omode, machine_mode imode, in validate_subreg() argument
898 poly_uint64 osize = GET_MODE_SIZE (omode); in validate_subreg()
919 if (omode == word_mode) in validate_subreg()
928 && GET_MODE_INNER (imode) == omode) in validate_subreg()
935 else if (VECTOR_MODE_P (omode) && GET_MODE_INNER (omode) == imode) in validate_subreg()
940 else if (FLOAT_MODE_P (imode) || FLOAT_MODE_P (omode)) in validate_subreg()
966 && GET_MODE_INNER (imode) == omode) in validate_subreg()
968 else if (!REG_CAN_CHANGE_MODE_P (regno, imode, omode)) in validate_subreg()
971 return subreg_offset_representable_p (regno, imode, offset, omode); in validate_subreg()
991 && ! (lra_in_progress && (FLOAT_MODE_P (imode) || FLOAT_MODE_P (omode)))) in validate_subreg()
HDloop-iv.c936 scalar_int_mode omode = mode; in iv_analyze_expr() local
959 if (!is_a <scalar_int_mode> (GET_MODE (op0), &omode)) in iv_analyze_expr()
990 && !iv_analyze_expr (insn, omode, op0, &iv0)) in iv_analyze_expr()
994 && !iv_analyze_expr (insn, omode, op1, &iv1)) in iv_analyze_expr()
HDcombine.c11669 gen_lowpart_for_combine (machine_mode omode, rtx x) in gen_lowpart_for_combine() argument
11674 if (omode == imode) in gen_lowpart_for_combine()
11679 if (maybe_gt (GET_MODE_SIZE (omode), UNITS_PER_WORD) in gen_lowpart_for_combine()
11681 || known_eq (GET_MODE_SIZE (imode), GET_MODE_SIZE (omode)))) in gen_lowpart_for_combine()
11696 if (imode == omode) in gen_lowpart_for_combine()
11700 result = gen_lowpart_common (omode, x); in gen_lowpart_for_combine()
11716 if (paradoxical_subreg_p (omode, imode)) in gen_lowpart_for_combine()
11717 return gen_rtx_SUBREG (omode, x, 0); in gen_lowpart_for_combine()
11719 poly_int64 offset = byte_lowpart_offset (omode, imode); in gen_lowpart_for_combine()
11720 return adjust_address_nv (x, omode, offset); in gen_lowpart_for_combine()
[all …]
HDvarasm.c2790 machine_mode omode, imode; in assemble_integer() local
2802 omode = mode_for_size (subsize * BITS_PER_UNIT, mclass, 0).require (); in assemble_integer()
2807 rtx partial = simplify_subreg (omode, x, imode, i); in assemble_integer()
HDoptabs.c2570 lowpart_subreg_maybe_copy (machine_mode omode, rtx val, in lowpart_subreg_maybe_copy() argument
2574 ret = lowpart_subreg (omode, val, imode); in lowpart_subreg_maybe_copy()
2578 ret = lowpart_subreg (omode, val, imode); in lowpart_subreg_maybe_copy()
HDexpr.c11743 scalar_int_mode omode = SCALAR_INT_TYPE_MODE (index_type); in try_casesi() local
11744 if (GET_MODE_BITSIZE (omode) > GET_MODE_BITSIZE (index_mode)) in try_casesi()
11755 omode, 1, default_label, in try_casesi()
11762 if (omode != index_mode) in try_casesi()
/dragonfly/usr.sbin/ppp/
HDbundle.c1678 int omode; in bundle_SetMode() local
1680 omode = dl->physical->type; in bundle_SetMode()
1681 if (omode == mode) in bundle_SetMode()
/dragonfly/sys/dev/netif/bwn/bwn/
HDif_bwn_phy_lp.c675 int i, omode, oafeovr, orf, obbmult; in bwn_phy_lp_calib() local
698 omode = plp->plp_txpctlmode; in bwn_phy_lp_calib()
708 bwn_phy_lp_set_txpctlmode(mac, omode); in bwn_phy_lp_calib()
/dragonfly/contrib/gcc-4.7/gcc/config/i386/
HDi386.c6842 ix86_function_arg (cumulative_args_t cum_v, enum machine_mode omode, in ix86_function_arg() argument
6846 enum machine_mode mode = omode; in ix86_function_arg()
6862 arg = function_arg_ms_64 (cum, mode, omode, named, bytes); in ix86_function_arg()
6864 arg = function_arg_64 (cum, mode, omode, type, named); in ix86_function_arg()
6866 arg = function_arg_32 (cum, mode, omode, type, bytes, words); in ix86_function_arg()
/dragonfly/contrib/gcc-8.0/gcc/config/i386/
HDi386.c8788 ix86_function_arg (cumulative_args_t cum_v, machine_mode omode, in ix86_function_arg() argument
8792 machine_mode mode = omode; in ix86_function_arg()
8856 arg = function_arg_ms_64 (cum, mode, omode, named, bytes); in ix86_function_arg()
8858 arg = function_arg_64 (cum, mode, omode, type, named); in ix86_function_arg()
8861 arg = function_arg_32 (cum, mode, omode, type, bytes, words); in ix86_function_arg()