| /openbsd-src/etc/mtree/ |
| H A D | special | 6 . 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 …]
|
| H A D | 4.4BSD.dist | 3 /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/ |
| H A D | pkg-config | 59 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/ |
| H A D | simplify-rtx.c | 70 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 …]
|
| H A D | optabs.c | 209 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 …]
|
| H A D | expmed.c | 138 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 …]
|
| H A D | rtlhooks.c | 41 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 …]
|
| H A D | dojump.c | 123 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 …]
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/config/d30v/ |
| H A D | d30v.c | 304 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/ |
| H A D | c4x.c | 409 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/ |
| H A D | generate_netbsd_syscalls.awk | 543 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/ |
| H A D | Makefile | 12 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/ |
| H A D | drm_modes.c | 53 * drm_mode_debug_printmodeline - print a mode to dmesg 54 * @mode: mode to print 56 * Describe @mode using DRM_DEBUG. 58 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() 65 * drm_mode_create - create a new display mode 72 * Pointer to new mode on success, NULL on error. 87 * drm_mode_destroy - remove a mode 89 * @mode 93 drm_mode_destroy(struct drm_device * dev,struct drm_display_mode * mode) drm_mode_destroy() argument 112 drm_mode_probed_add(struct drm_connector * connector,struct drm_display_mode * mode) drm_mode_probed_add() argument 326 fill_analog_mode(struct drm_device * dev,struct drm_display_mode * mode,const struct analog_parameters * params,unsigned long pixel_clock_hz,unsigned int hactive,unsigned int vactive,bool interlace) fill_analog_mode() argument 551 struct drm_display_mode *mode; drm_analog_tv_mode() local 1268 drm_mode_set_name(struct drm_display_mode * mode) drm_mode_set_name() argument 1286 drm_mode_vrefresh(const struct drm_display_mode * mode) drm_mode_vrefresh() argument 1316 drm_mode_get_hv_timing(const struct drm_display_mode * mode,int * hdisplay,int * vdisplay) drm_mode_get_hv_timing() argument 1454 drm_mode_duplicate(struct drm_device * dev,const struct drm_display_mode * mode) drm_mode_duplicate() argument 1625 drm_mode_validate_basic(const struct drm_display_mode * mode) drm_mode_validate_basic() argument 1668 drm_mode_validate_driver(struct drm_device * dev,const struct drm_display_mode * mode) drm_mode_validate_driver() argument 1698 drm_mode_validate_size(const struct drm_display_mode * mode,int maxX,int maxY) drm_mode_validate_size() argument 1723 drm_mode_validate_ycbcr420(const struct drm_display_mode * mode,struct drm_connector * connector) drm_mode_validate_ycbcr420() argument 1805 struct drm_display_mode *mode, *t; drm_mode_prune_invalid() local 1892 struct drm_display_mode *mode; drm_connector_list_update() local 1939 drm_mode_parse_cmdline_bpp(const char * str,char ** end_ptr,struct drm_cmdline_mode * mode) drm_mode_parse_cmdline_bpp() argument 1958 drm_mode_parse_cmdline_refresh(const char * str,char ** end_ptr,struct drm_cmdline_mode * mode) drm_mode_parse_cmdline_refresh() argument 1979 drm_mode_parse_cmdline_extra(const char * str,int length,bool freestanding,const struct drm_connector * connector,struct drm_cmdline_mode * mode) drm_mode_parse_cmdline_extra() argument 2030 drm_mode_parse_cmdline_res_mode(const char * str,unsigned int length,bool extras,const struct drm_connector * connector,struct drm_cmdline_mode * mode) drm_mode_parse_cmdline_res_mode() argument 2115 drm_mode_parse_panel_orientation(const char * delim,struct drm_cmdline_mode * mode) drm_mode_parse_panel_orientation() argument 2142 drm_mode_parse_tv_mode(const char * delim,struct drm_cmdline_mode * mode) drm_mode_parse_tv_mode() argument 2168 drm_mode_parse_cmdline_options(const char * str,bool freestanding,const struct drm_connector * connector,struct drm_cmdline_mode * mode) drm_mode_parse_cmdline_options() argument 2319 const struct drm_named_mode *mode = &drm_named_modes[i]; drm_mode_parse_cmdline_named_mode() local 2369 drm_mode_parse_command_line_for_connector(const char * mode_option,const struct drm_connector * connector,struct drm_cmdline_mode * mode) drm_mode_parse_command_line_for_connector() argument 2553 struct drm_display_mode *mode; drm_mode_create_from_cmdline_mode() local 2724 drm_mode_is_420_only(const struct drm_display_info * display,const struct drm_display_mode * mode) drm_mode_is_420_only() argument 2744 drm_mode_is_420_also(const struct drm_display_info * display,const struct drm_display_mode * mode) drm_mode_is_420_also() argument 2763 drm_mode_is_420(const struct drm_display_info * display,const struct drm_display_mode * mode) drm_mode_is_420() argument [all...] |
| H A D | drm_probe_helper.c | 70 drm_mode_validate_flag(const struct drm_display_mode *mode, in drm_mode_validate_flag() argument 73 if ((mode->flags & DRM_MODE_FLAG_INTERLACE) && in drm_mode_validate_flag() 77 if ((mode->flags & DRM_MODE_FLAG_DBLSCAN) && in drm_mode_validate_flag() 81 if ((mode->flags & DRM_MODE_FLAG_3D_MASK) && in drm_mode_validate_flag() 89 drm_mode_validate_pipeline(struct drm_display_mode *mode, in drm_mode_validate_pipeline() argument 99 ret = drm_connector_mode_valid(connector, mode, ctx, status); in drm_mode_validate_pipeline() 108 *status = drm_encoder_mode_valid(encoder, mode); in drm_mode_validate_pipeline() 120 mode); in drm_mode_validate_pipeline() 131 *status = drm_crtc_mode_valid(crtc, mode); in drm_mode_validate_pipeline() 147 struct drm_display_mode *mode; in drm_helper_probe_add_cmdline_mode() local [all …]
|
| /openbsd-src/regress/sys/ffs/tests/link/ |
| H A D | 00.t | 16 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/lib/libz/ |
| H A D | gzlib.c | 71 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-2.17/gas/config/ |
| H A D | tc-h8300.c | 296 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 …]
|
| H A D | tc-z8k.c | 184 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/gnu/usr.bin/binutils/gas/config/ |
| H A D | tc-z8k.c | 187 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 …]
|
| H A D | tc-h8300.c | 315 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/ |
| H A D | optabs.c | 216 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 …]
|
| H A D | simplify-rtx.c | 94 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/ |
| H A D | bf_test.c | 25 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/ |
| H A D | radeon_agp.c | 199 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 in radeon_agp_init() [all...] |
| /openbsd-src/gnu/gcc/gcc/config/c4x/ |
| H A D | predicates.md | 39 switch (mode) 44 || GET_MODE (op) != mode 45 || GET_MODE_CLASS (mode) != MODE_FLOAT) 55 || (GET_MODE (op) != VOIDmode && GET_MODE (op) != mode) 56 || GET_MODE_CLASS (mode) != MODE_INT) 93 return register_operand (op, mode); 101 return reg_operand (op, mode) || const_operand (op, mode); 109 if (! reg_operand (op, mode)) 121 if (! reg_operand (op, mode)) 133 if (! reg_operand (op, mode)) [all …]
|