Home
last modified time | relevance | path

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

12345678910>>...126

/openbsd/src/etc/mtree/
Dspecial6 . type=dir mode=0755 uname=root gname=wheel
8 dev type=dir mode=0755 uname=root gname=wheel
9 fd type=dir mode=0555 uname=root gname=wheel ignore
11 kmem type=char mode=0640 uname=root gname=kmem
12 mem type=char mode=0640 uname=root gname=kmem
15 etc type=dir mode=0755 uname=root gname=wheel
16 acme-client.conf type=file mode=0644 uname=root gname=wheel optional
17 bgpd.conf type=file mode=0600 uname=root gname=wheel optional
18 chio.conf type=file mode=0644 uname=root gname=operator optional
19 crontab type=file mode=0600 uname=root gname=wheel optional
[all …]
D4.4BSD.dist3 /set type=dir uname=root gname=wheel mode=0755
17 authpf uname=root mode=0755
34 private uname=root mode=0700
38 pubkeys uname=root mode=0755
39 fqdn uname=root mode=0755
41 ipv4 uname=root mode=0755
43 ipv6 uname=root mode=0755
45 ufqdn uname=root mode=0755
60 private uname=root mode=0700
64 pubkeys uname=root mode=0755
[all …]
/openbsd/src/usr.bin/pkg-config/
Dpkg-config59 my %mode = ();
75 defined $ENV{PKG_CONFIG_DEBUG_SPEW} ? $mode{debug} = 1 : $mode{debug} = 0;
92 GetOptions( 'debug' => \$mode{debug},
95 'list-all' => \$mode{list},
97 'errors-to-stdout' => sub { $mode{estdout} = 1},
98 'print-errors' => sub { $mode{printerr} = 1},
99 'silence-errors' => sub { $mode{printerr} = 0},
100 'short-errors' => sub { $mode{printerr} = 0},
101 'atleast-pkgconfig-version=s' => \$mode{myminvers},
102 'print-provides' => \$mode{printprovides},
[all …]
/openbsd/src/gnu/gcc/gcc/
Dsimplify-rtx.c70 neg_const_int (enum machine_mode mode, rtx i) in neg_const_int() argument
72 return gen_int_mode (- INTVAL (i), mode); in neg_const_int()
79 mode_signbit_p (enum machine_mode mode, rtx x) in mode_signbit_p() argument
84 if (GET_MODE_CLASS (mode) != MODE_INT) in mode_signbit_p()
87 width = GET_MODE_BITSIZE (mode); in mode_signbit_p()
113 simplify_gen_binary (enum rtx_code code, enum machine_mode mode, rtx op0, in simplify_gen_binary() argument
119 tem = simplify_binary_operation (code, mode, op0, op1); in simplify_gen_binary()
128 return gen_rtx_fmt_ee (code, mode, op0, op1); in simplify_gen_binary()
215 simplify_gen_unary (enum rtx_code code, enum machine_mode mode, rtx op, in simplify_gen_unary() argument
221 if ((tem = simplify_unary_operation (code, mode, op, op_mode)) != 0) in simplify_gen_unary()
[all …]
Doptabs.c209 widen_operand (rtx op, enum machine_mode mode, enum machine_mode oldmode, in widen_operand() argument
224 return convert_modes (mode, oldmode, op, unsignedp); in widen_operand()
228 if (GET_MODE_SIZE (mode) <= UNITS_PER_WORD) in widen_operand()
229 return gen_rtx_SUBREG (mode, force_reg (GET_MODE (op), op), 0); in widen_operand()
234 result = gen_reg_rtx (mode); in widen_operand()
387 xmode0 = insn_data[icode].operand[1].mode; in expand_widen_pattern_expr()
393 xmode1 = insn_data[icode].operand[2].mode; in expand_widen_pattern_expr()
408 wxmode = insn_data[icode].operand[3].mode; in expand_widen_pattern_expr()
412 wmode = wxmode = insn_data[icode].operand[0].mode; in expand_widen_pattern_expr()
507 expand_ternary_op (enum machine_mode mode, optab ternary_optab, rtx op0, in expand_ternary_op() argument
[all …]
Dexpmed.c138 enum machine_mode mode, wider_mode; in init_expmed() local
208 for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT); in init_expmed()
209 mode != VOIDmode; in init_expmed()
210 mode = GET_MODE_WIDER_MODE (mode)) in init_expmed()
212 PUT_MODE (&all.reg, mode); in init_expmed()
213 PUT_MODE (&all.plus, mode); in init_expmed()
214 PUT_MODE (&all.neg, mode); in init_expmed()
215 PUT_MODE (&all.mult, mode); in init_expmed()
216 PUT_MODE (&all.sdiv, mode); in init_expmed()
217 PUT_MODE (&all.udiv, mode); in init_expmed()
[all …]
Drtlhooks.c41 gen_lowpart_general (enum machine_mode mode, rtx x) in gen_lowpart_general() argument
43 rtx result = gen_lowpart_common (mode, x); in gen_lowpart_general()
53 result = gen_lowpart_common (mode, copy_to_reg (x)); in gen_lowpart_general()
67 && TRULY_NOOP_TRUNCATION (GET_MODE_BITSIZE (mode), in gen_lowpart_general()
70 return gen_lowpart_general (mode, force_reg (GET_MODE (x), x)); in gen_lowpart_general()
74 - MAX (GET_MODE_SIZE (mode), UNITS_PER_WORD)); in gen_lowpart_general()
79 offset -= (MIN (UNITS_PER_WORD, GET_MODE_SIZE (mode)) in gen_lowpart_general()
82 return adjust_address (x, mode, offset); in gen_lowpart_general()
89 gen_lowpart_no_emit_general (enum machine_mode mode, rtx x) in gen_lowpart_no_emit_general() argument
91 rtx result = gen_lowpart_if_possible (mode, x); in gen_lowpart_no_emit_general()
[all …]
Ddojump.c123 prefer_and_bit_test (enum machine_mode mode, int bitnum) in prefer_and_bit_test() argument
129 and_reg = gen_rtx_REG (mode, FIRST_PSEUDO_REGISTER); in prefer_and_bit_test()
130 and_test = gen_rtx_AND (mode, and_reg, NULL); in prefer_and_bit_test()
131 shift_test = gen_rtx_AND (mode, gen_rtx_ASHIFTRT (mode, and_reg, NULL), in prefer_and_bit_test()
137 PUT_MODE (and_reg, mode); in prefer_and_bit_test()
138 PUT_MODE (and_test, mode); in prefer_and_bit_test()
139 PUT_MODE (shift_test, mode); in prefer_and_bit_test()
140 PUT_MODE (XEXP (shift_test, 0), mode); in prefer_and_bit_test()
167 enum machine_mode mode; in do_jump() local
275 && (mode = mode_for_size (i + 1, MODE_INT, 0)) != BLKmode in do_jump()
[all …]
Dloop-iv.c143 fprintf (file, " (in %s)", GET_MODE_NAME (iv->mode)); in dump_iv_info()
145 if (iv->mode != iv->extend_mode) in dump_iv_info()
361 iv_constant (struct rtx_iv *iv, rtx cst, enum machine_mode mode) in iv_constant() argument
363 if (mode == VOIDmode) in iv_constant()
364 mode = GET_MODE (cst); in iv_constant()
366 iv->mode = mode; in iv_constant()
371 iv->extend_mode = iv->mode; in iv_constant()
381 iv_subreg (struct rtx_iv *iv, enum machine_mode mode) in iv_subreg() argument
388 val = lowpart_subreg (mode, val, iv->extend_mode); in iv_subreg()
392 iv->mode = iv->extend_mode = mode; in iv_subreg()
[all …]
/openbsd/src/gnu/usr.bin/gcc/gcc/config/d30v/
Dd30v.c304 short_memory_operand (op, mode) in short_memory_operand() argument
306 enum machine_mode mode;
311 if (GET_MODE (op) != mode && mode != VOIDmode)
314 return (d30v_legitimate_address_p (mode, XEXP (op, 0), reload_completed)
321 long_memory_operand (op, mode) in long_memory_operand() argument
323 enum machine_mode mode;
328 if (GET_MODE (op) != mode && mode != VOIDmode)
331 return (d30v_legitimate_address_p (mode, XEXP (op, 0), reload_completed)
338 d30v_memory_operand (op, mode) in d30v_memory_operand() argument
340 enum machine_mode mode;
[all …]
/openbsd/src/gnu/usr.bin/gcc/gcc/config/c4x/
Dc4x.c409 c4x_hard_regno_mode_ok (regno, mode) in c4x_hard_regno_mode_ok() argument
411 enum machine_mode mode;
413 switch (mode)
550 enum machine_mode mode; local
557 if ((mode = TYPE_MODE (type)))
559 if (! MUST_PASS_IN_STACK (mode, type))
562 if (mode == QFmode || mode == HFmode)
566 else if (mode == QImode || mode == Pmode)
587 c4x_function_arg_advance (cum, mode, type, named) in c4x_function_arg_advance() argument
589 enum machine_mode mode; /* Current arg mode. */
[all …]
/openbsd/src/gnu/llvm/compiler-rt/utils/
Dgenerate_netbsd_syscalls.awk543 function syscall_body(syscall, mode)
552 if (mode == "pre") {
558 if (mode == "pre") {
568 if (mode == "pre") {
578 if (mode == "pre") {
592 if (mode == "pre") {
602 if (mode == "pre") {
624 if (mode == "pre") {
638 if (mode == "pre") {
656 if (mode == "pre") {
[all …]
/openbsd/src/regress/usr.bin/libtool/
DMakefile12 COMPILE_TESTS = compile-mode-0 compile-mode-1 compile-mode-2 \
13 compile-mode-3 compile-mode-4 compile-mode-5 \
14 compile-mode-6 compile-mode-7 compile-mode-8 \
15 compile-mode-9 compile-mode-10 compile-mode-11 \
16 compile-mode-12 compile-mode-13
68 ${LIBTOOL} --mode=execute ./p2
78 ${LIBTOOL} --mode=link ${CC} ${CFLAGS} -o s1 c.lo -la -all-static
82 if ${LIBTOOL} --mode=install cp liba.la dest; then exit 1; fi
86 @if ${LIBTOOL} --mode=compile cc -c -o dummy3.lo -o 7 dummy3.c; then exit 1; fi
92 ${LIBTOOL} --mode=compile --tag=disable-shared --tag=disable-static ${CC} -c -o dummy2.lo dummy2.c
[all …]
/openbsd/src/sys/dev/pci/drm/
Ddrm_modes.c58 void drm_mode_debug_printmodeline(const struct drm_display_mode *mode) in drm_mode_debug_printmodeline() argument
60 DRM_DEBUG_KMS("Modeline " DRM_MODE_FMT "\n", DRM_MODE_ARG(mode)); in drm_mode_debug_printmodeline()
93 void drm_mode_destroy(struct drm_device *dev, struct drm_display_mode *mode) in drm_mode_destroy() argument
95 if (!mode) in drm_mode_destroy()
98 kfree(mode); in drm_mode_destroy()
112 struct drm_display_mode *mode) in drm_mode_probed_add() argument
116 list_add_tail(&mode->head, &connector->probed_modes); in drm_mode_probed_add()
326 struct drm_display_mode *mode, in fill_analog_mode() argument
455 mode->clock = pixel_clock_hz / 1000; in fill_analog_mode()
456 mode->hdisplay = hactive; in fill_analog_mode()
[all …]
Ddrm_probe_helper.c71 drm_mode_validate_flag(const struct drm_display_mode *mode, in drm_mode_validate_flag() argument
74 if ((mode->flags & DRM_MODE_FLAG_INTERLACE) && in drm_mode_validate_flag()
78 if ((mode->flags & DRM_MODE_FLAG_DBLSCAN) && in drm_mode_validate_flag()
82 if ((mode->flags & DRM_MODE_FLAG_3D_MASK) && in drm_mode_validate_flag()
90 drm_mode_validate_pipeline(struct drm_display_mode *mode, in drm_mode_validate_pipeline() argument
100 ret = drm_connector_mode_valid(connector, mode, ctx, status); in drm_mode_validate_pipeline()
109 *status = drm_encoder_mode_valid(encoder, mode); in drm_mode_validate_pipeline()
121 mode); in drm_mode_validate_pipeline()
132 *status = drm_crtc_mode_valid(crtc, mode); in drm_mode_validate_pipeline()
148 struct drm_display_mode *mode; in drm_helper_probe_add_cmdline_mode() local
[all …]
/openbsd/src/regress/sys/ffs/tests/link/
D00.t16 expect regular,0644,1 lstat ${n0} type,mode,nlink
19 expect regular,0644,2 lstat ${n0} type,mode,nlink
20 expect regular,0644,2 lstat ${n1} type,mode,nlink
23 expect regular,0644,3 lstat ${n0} type,mode,nlink
24 expect regular,0644,3 lstat ${n1} type,mode,nlink
25 expect regular,0644,3 lstat ${n2} type,mode,nlink
30 expect regular,0201,3,65534,65533 lstat ${n0} type,mode,nlink,uid,gid
31 expect regular,0201,3,65534,65533 lstat ${n1} type,mode,nlink,uid,gid
32 expect regular,0201,3,65534,65533 lstat ${n2} type,mode,nlink,uid,gid
35 expect ENOENT lstat ${n0} type,mode,nlink,uid,gid
[all …]
/openbsd/src/gnu/usr.bin/binutils-2.17/gas/config/
Dtc-h8300.c296 op_type mode; member
330 parse_reg (char *src, op_type *mode, unsigned int *reg, int direction) in parse_reg() argument
345 *mode = PSIZE | REG | direction; in parse_reg()
354 *mode = CCR; in parse_reg()
363 *mode = EXR; in parse_reg()
372 *mode = VBR; in parse_reg()
381 *mode = SBR; in parse_reg()
387 *mode = PSIZE | REG | direction; in parse_reg()
394 *mode = L_32 | REG | direction; in parse_reg()
402 *mode = L_16 | REG | direction; in parse_reg()
[all …]
Dtc-z8k.c184 int mode; member
235 parse_reg (char *src, int *mode, unsigned int *reg) in parse_reg() argument
247 *mode = CLASS_REG_LONG; in parse_reg()
252 *mode = CLASS_REG_WORD; in parse_reg()
264 *mode = CLASS_REG_LONG; in parse_reg()
276 *mode = CLASS_REG_BYTE; in parse_reg()
286 *mode = CLASS_REG_BYTE; in parse_reg()
297 *mode = CLASS_REG_QUAD; in parse_reg()
309 *mode = CLASS_REG_WORD; in parse_reg()
362 regword (int mode, char *string) in regword() argument
[all …]
/openbsd/src/lib/libz/
Dgzlib.c71 if (state->mode == GZ_READ) { /* for reading ... */ in gz_reset()
85 local gzFile gz_open(const void *path, int fd, const char *mode) { in gz_open() argument
109 state->mode = GZ_NONE; in gz_open()
113 while (*mode) { in gz_open()
114 if (*mode >= '0' && *mode <= '9') in gz_open()
115 state->level = *mode - '0'; in gz_open()
117 switch (*mode) { in gz_open()
119 state->mode = GZ_READ; in gz_open()
123 state->mode = GZ_WRITE; in gz_open()
126 state->mode = GZ_APPEND; in gz_open()
[all …]
/openbsd/src/gnu/usr.bin/binutils/gas/config/
Dtc-z8k.c187 int mode; member
238 parse_reg (char *src, int *mode, unsigned int *reg) in parse_reg() argument
250 *mode = CLASS_REG_LONG; in parse_reg()
255 *mode = CLASS_REG_WORD; in parse_reg()
267 *mode = CLASS_REG_LONG; in parse_reg()
279 *mode = CLASS_REG_BYTE; in parse_reg()
289 *mode = CLASS_REG_BYTE; in parse_reg()
300 *mode = CLASS_REG_QUAD; in parse_reg()
312 *mode = CLASS_REG_WORD; in parse_reg()
365 regword (int mode, char *string) in regword() argument
[all …]
Dtc-h8300.c315 op_type mode; member
349 parse_reg (char *src, op_type *mode, unsigned int *reg, int direction) in parse_reg() argument
364 *mode = PSIZE | REG | direction; in parse_reg()
373 *mode = CCR; in parse_reg()
382 *mode = EXR; in parse_reg()
391 *mode = VBR; in parse_reg()
400 *mode = SBR; in parse_reg()
406 *mode = PSIZE | REG | direction; in parse_reg()
413 *mode = L_32 | REG | direction; in parse_reg()
421 *mode = L_16 | REG | direction; in parse_reg()
[all …]
/openbsd/src/gnu/usr.bin/gcc/gcc/
Doptabs.c216 widen_operand (op, mode, oldmode, unsignedp, no_extend) in widen_operand() argument
218 enum machine_mode mode, oldmode;
234 return convert_modes (mode, oldmode, op, unsignedp);
238 if (GET_MODE_SIZE (mode) <= UNITS_PER_WORD)
239 return gen_rtx_SUBREG (mode, force_reg (GET_MODE (op), op), 0);
244 result = gen_reg_rtx (mode);
397 enum machine_mode mode; local
436 mode = GET_MODE (temp1);
439 mode, unsignedp, lab1);
649 expand_simple_binop (mode, code, op0, op1, target, unsignedp, methods) in expand_simple_binop() argument
[all …]
Dsimplify-rtx.c94 neg_const_int (mode, i) in neg_const_int() argument
95 enum machine_mode mode; in neg_const_int()
98 return gen_int_mode (- INTVAL (i), mode);
106 simplify_gen_binary (code, mode, op0, op1) in simplify_gen_binary() argument
108 enum machine_mode mode;
119 tem = simplify_binary_operation (code, mode, op0, op1);
128 tem = simplify_plus_minus (code, mode, op0, op1, 1);
133 return gen_rtx_fmt_ee (code, mode, op0, op1);
175 simplify_gen_unary (code, mode, op, op_mode) in simplify_gen_unary() argument
177 enum machine_mode mode;
[all …]
/openbsd/src/regress/lib/libcrypto/bf/
Dbf_test.c25 const int mode; member
43 .mode = NID_bf_ecb,
58 .mode = NID_bf_ecb,
73 .mode = NID_bf_ecb,
88 .mode = NID_bf_ecb,
103 .mode = NID_bf_ecb,
118 .mode = NID_bf_ecb,
133 .mode = NID_bf_ecb,
148 .mode = NID_bf_ecb,
163 .mode = NID_bf_ecb,
[all …]
/openbsd/src/sys/dev/pci/drm/radeon/
Dradeon_agp.c199 static int radeon_agp_head_enable(struct radeon_device *rdev, struct radeon_agp_mode mode) in radeon_agp_head_enable() argument
204 rdev->agp->mode = mode.mode; in radeon_agp_head_enable()
205 agp_enable(rdev->agp->bridge, mode.mode); in radeon_agp_head_enable()
223 info->mode = kern->mode; in radeon_agp_head_info()
243 struct radeon_agp_mode mode; in radeon_agp_init() local
275 mode.mode = info.mode; in radeon_agp_init()
280 agp_status = (RREG32(RADEON_AGP_STATUS) | RADEON_AGPv3_MODE) & mode.mode; in radeon_agp_init()
282 agp_status = mode.mode; in radeon_agp_init()
325 mode.mode &= ~RADEON_AGP_MODE_MASK; in radeon_agp_init()
329 mode.mode |= RADEON_AGPv3_8X_MODE; in radeon_agp_init()
[all …]

12345678910>>...126