Searched refs:mode (Results 76 - 100 of 1865) sorted by relevance

1234567891011>>

/freebsd-10.1-release/usr.sbin/mfiutil/
H A Dmfi_bbu.c86 mfi_autolearn_mode(uint8_t mode, char *buf, size_t sz) argument
89 switch (mode) {
100 snprintf(buf, sz, "mode 0x%02x", mode);
162 char *mode, *endptr; local
198 } else if (strcmp(av[1], "autolearn-mode") == 0) {
199 mode = av[2];
205 else if (mode[0] >= '0' && mode[0] <= '2' && mode[
[all...]
/freebsd-10.1-release/crypto/heimdal/appl/telnet/telnet/
H A Dterminal.c147 * These routines decides on what the mode should be (based on the values
155 int mode = 0;
158 mode |= MODE_ECHO;
161 mode |= MODE_FLOW;
164 mode |= MODE_INBIN;
167 mode |= MODE_OUT8;
169 mode |= MODE_OUTBIN;
174 mode |= (MODE_TRAPSIG|MODE_EDIT);
176 mode &= ~MODE_ECHO;
179 return(mode);
154 int mode = 0; local
[all...]
/freebsd-10.1-release/sys/dev/ata/chipsets/
H A Data-national.c56 static int ata_national_setmode(device_t dev, int target, int mode);
99 ata_national_setmode(device_t dev, int target, int mode) argument
113 mode = min(mode, ATA_UDMA2);
115 if (mode >= ATA_UDMA0) {
117 udmatiming[mode & ATA_MODE_MASK], 4);
119 } else if (mode >= ATA_WDMA0) {
121 dmatiming[mode & ATA_MODE_MASK], 4);
122 piomode = mode;
127 piomode = mode;
[all...]
H A Data-ite.c56 static int ata_ite_821x_setmode(device_t dev, int target, int mode);
57 static int ata_ite_8213_setmode(device_t dev, int target, int mode);
98 /* set PCI mode and 66Mhz reference clock */
126 ata_ite_821x_setmode(device_t dev, int target, int mode) argument
139 mode = min(mode, ctlr->chip->max_dma);
141 if (ata_dma_check_80pin && mode > ATA_UDMA2 &&
145 mode = ATA_UDMA2;
147 if (mode >= ATA_UDMA0) {
148 /* enable UDMA mode */
172 ata_ite_8213_setmode(device_t dev, int target, int mode) argument
[all...]
/freebsd-10.1-release/contrib/gcc/
H A Dsimplify-rtx.c71 neg_const_int (enum machine_mode mode, rtx i)
73 return gen_int_mode (- INTVAL (i), mode);
77 the most significant bit of machine mode MODE. */
80 mode_signbit_p (enum machine_mode mode, rtx x)
85 if (GET_MODE_CLASS (mode) != MODE_INT)
88 width = GET_MODE_BITSIZE (mode);
115 simplify_gen_binary (enum rtx_code code, enum machine_mode mode, rtx op0,
121 tem = simplify_binary_operation (code, mode, op0, op1);
130 return gen_rtx_fmt_ee (code, mode, op0, op1);
190 /* If we're accessing the constant in a different mode tha
70 neg_const_int(enum machine_mode mode, rtx i) argument
79 mode_signbit_p(enum machine_mode mode, rtx x) argument
113 simplify_gen_binary(enum rtx_code code, enum machine_mode mode, rtx op0, rtx op1) argument
215 simplify_gen_unary(enum rtx_code code, enum machine_mode mode, rtx op, enum machine_mode op_mode) argument
230 simplify_gen_ternary(enum rtx_code code, enum machine_mode mode, enum machine_mode op0_mode, rtx op0, rtx op1, rtx op2) argument
247 simplify_gen_relational(enum rtx_code code, enum machine_mode mode, enum machine_mode cmp_mode, rtx op0, rtx op1) argument
266 enum machine_mode mode = GET_MODE (x); local
371 simplify_unary_operation(enum rtx_code code, enum machine_mode mode, rtx op, enum machine_mode op_mode) argument
391 simplify_unary_operation_1(enum rtx_code code, enum machine_mode mode, rtx op) argument
871 simplify_const_unary_operation(enum rtx_code code, enum machine_mode mode, rtx op, enum machine_mode op_mode) argument
1393 simplify_associative_operation(enum rtx_code code, enum machine_mode mode, rtx op0, rtx op1) argument
1451 simplify_binary_operation(enum rtx_code code, enum machine_mode mode, rtx op0, rtx op1) argument
1486 simplify_binary_operation_1(enum rtx_code code, enum machine_mode mode, rtx op0, rtx op1, rtx trueop0, rtx trueop1) argument
2679 simplify_const_binary_operation(enum rtx_code code, enum machine_mode mode, rtx op0, rtx op1) argument
3215 simplify_plus_minus(enum rtx_code code, enum machine_mode mode, rtx op0, rtx op1) argument
3508 simplify_relational_operation(enum rtx_code code, enum machine_mode mode, enum machine_mode cmp_mode, rtx op0, rtx op1) argument
3591 simplify_relational_operation_1(enum rtx_code code, enum machine_mode mode, enum machine_mode cmp_mode, rtx op0, rtx op1) argument
3693 simplify_const_relational_operation(enum rtx_code code, enum machine_mode mode, rtx op0, rtx op1) argument
4043 simplify_ternary_operation(enum rtx_code code, enum machine_mode mode, enum machine_mode op0_mode, rtx op0, rtx op1, rtx op2) argument
4839 enum machine_mode mode = GET_MODE (x); local
[all...]
H A Doptabs.c62 /* Tables of patterns for converting one mode to another. */
80 /* Indexed by the machine mode, gives the insn code to make a conditional
88 /* Indexed by the machine mode, gives the insn code for vector conditional
211 widen_operand (rtx op, enum machine_mode mode, enum machine_mode oldmode,
226 return convert_modes (mode, oldmode, op, unsignedp);
230 if (GET_MODE_SIZE (mode) <= UNITS_PER_WORD)
231 return gen_rtx_SUBREG (mode, force_reg (GET_MODE (op), op), 0);
236 result = gen_reg_rtx (mode);
391 xmode0 = insn_data[icode].operand[1].mode;
397 xmode1 = insn_data[icode].operand[2].mode;
209 widen_operand(rtx op, enum machine_mode mode, enum machine_mode oldmode, int unsignedp, int no_extend) argument
507 expand_ternary_op(enum machine_mode mode, optab ternary_optab, rtx op0, rtx op1, rtx op2, rtx target, int unsignedp) argument
580 simplify_expand_binop(enum machine_mode mode, optab binoptab, rtx op0, rtx op1, rtx target, int unsignedp, enum optab_methods methods) argument
599 force_expand_binop(enum machine_mode mode, optab binoptab, rtx op0, rtx op1, rtx target, int unsignedp, enum optab_methods methods) argument
621 enum machine_mode mode = TYPE_MODE (TREE_TYPE (vec_shift_expr)); local
1044 expand_doubleword_mult(enum machine_mode mode, rtx op0, rtx op1, rtx target, bool umulp, enum optab_methods methods) argument
1153 expand_simple_binop(enum machine_mode mode, enum rtx_code code, rtx op0, rtx op1, rtx target, int unsignedp, enum optab_methods methods) argument
1199 expand_binop(enum machine_mode mode, optab binoptab, rtx op0, rtx op1, rtx target, int unsignedp, enum optab_methods methods) argument
1991 sign_expand_binop(enum machine_mode mode, optab uoptab, optab soptab, rtx op0, rtx op1, rtx target, int unsignedp, enum optab_methods methods) argument
2052 enum machine_mode mode = GET_MODE (targ0 ? targ0 : targ1); local
2145 enum machine_mode mode = GET_MODE (targ0 ? targ0 : targ1); local
2267 enum machine_mode mode; local
2306 expand_simple_unop(enum machine_mode mode, enum rtx_code code, rtx op0, rtx target, int unsignedp) argument
2320 widen_clz(enum machine_mode mode, rtx op0, rtx target) argument
2359 expand_parity(enum machine_mode mode, rtx op0, rtx target) argument
2417 expand_absneg_bit(enum rtx_code code, enum machine_mode mode, rtx op0, rtx target) argument
2530 expand_unop(enum machine_mode mode, optab unoptab, rtx op0, rtx target, int unsignedp) argument
2814 expand_abs_nojump(enum machine_mode mode, rtx op0, rtx target, int result_unsignedp) argument
2877 expand_abs(enum machine_mode mode, rtx op0, rtx target, int result_unsignedp, int safe) argument
2926 expand_copysign_absneg(enum machine_mode mode, rtx op0, rtx op1, rtx target, int bitpos, bool op0_is_abs) argument
3006 expand_copysign_bit(enum machine_mode mode, rtx op0, rtx op1, rtx target, int bitpos, bool op0_is_abs) argument
3110 enum machine_mode mode = GET_MODE (op0); local
3547 can_compare_p(enum rtx_code code, enum machine_mode mode, enum can_compare_purpose purpose) argument
3600 enum machine_mode mode = *pmode; local
3752 prepare_operand(int icode, rtx x, int opnum, enum machine_mode mode, enum machine_mode wider_mode, int unsignedp) argument
3775 emit_cmp_and_jump_insn_1(rtx x, rtx y, enum machine_mode mode, enum rtx_code comparison, int unsignedp, rtx label) argument
3854 emit_cmp_and_jump_insns(rtx x, rtx y, enum rtx_code comparison, rtx size, enum machine_mode mode, int unsignedp, rtx label) argument
3888 emit_cmp_insn(rtx x, rtx y, enum rtx_code comparison, rtx size, enum machine_mode mode, int unsignedp) argument
3907 enum machine_mode mode; local
4051 emit_conditional_move(rtx target, enum rtx_code code, rtx op0, rtx op1, enum machine_mode cmode, rtx op2, rtx op3, enum machine_mode mode, int unsignedp) argument
4154 can_conditionally_move_p(enum machine_mode mode) argument
4179 emit_conditional_add(rtx target, enum rtx_code code, rtx op0, rtx op1, enum machine_mode cmode, rtx op2, rtx op3, enum machine_mode mode, int unsignedp) argument
4873 have_insn_for(enum rtx_code code, enum machine_mode mode) argument
4960 int mode; local
5156 set_optab_libfunc(optab optable, enum machine_mode mode, const char *name) argument
5575 enum machine_mode mode = GET_MODE (op1); local
5707 get_vcond_icode(tree expr, enum machine_mode mode) argument
5736 enum machine_mode mode = TYPE_MODE (TREE_TYPE (vec_cond_expr)); local
5782 enum machine_mode mode = GET_MODE (mem); local
5811 enum machine_mode mode = GET_MODE (mem); local
5827 enum machine_mode mode = GET_MODE (mem); local
5921 enum machine_mode mode = GET_MODE (mem); local
5991 enum machine_mode mode = GET_MODE (mem); local
6084 enum machine_mode mode = GET_MODE (mem); local
6243 enum machine_mode mode = GET_MODE (mem); local
[all...]
/freebsd-10.1-release/contrib/xz/src/xz/
H A Dhardware.h35 extern uint64_t hardware_memlimit_get(enum operation_mode mode);
/freebsd-10.1-release/sbin/setkey/
H A Dscriptdump.pl9 $mode = 'add';
12 $mode = 'delete';
23 } elsif (/^\t(esp|ah) mode=(\S+) spi=(\d+).*reqid=(\d+)/) {
36 print "$mode $src $dst $proto $spi";
39 if ($mode eq 'add') {
/freebsd-10.1-release/sys/netinet/
H A Dip_ecn.c95 ip_ecn_ingress(int mode, u_int8_t *outer, const u_int8_t *inner) argument
102 switch (mode) {
127 ip_ecn_egress(int mode, const u_int8_t *outer, u_int8_t *inner) argument
133 switch (mode) {
161 ip6_ecn_ingress(int mode, u_int32_t *outer, const u_int32_t *inner) argument
169 ip_ecn_ingress(mode, &outer8, &inner8);
175 ip6_ecn_egress(int mode, const u_int32_t *outer, u_int32_t *inner) argument
184 if (ip_ecn_egress(mode, &outer8, &inner8) == 0)
/freebsd-10.1-release/tools/regression/pjdfstest/tests/chmod/
H A D08.t28 expect 0644 stat ${n0} mode
31 expect 0600 stat ${n0} mode
33 supported lchmod && expect 0400 stat ${n0} mode
39 expect 0600 stat ${n0} mode
41 supported lchmod && expect 0400 stat ${n0} mode
50 expect 0600 stat ${n0} mode
52 supported lchmod && expect 0500 stat ${n0} mode
55 expect 0400 stat ${n0} mode
63 expect 0644 stat ${n0} mode
66 expect 0600 stat ${n0} mode
[all...]
/freebsd-10.1-release/usr.bin/unifdef/
H A Dunifdef.h44 mktempmode(char *tmp, int mode) argument
48 fchmod(fd, mode & (S_IRWXU|S_IRWXG|S_IRWXO));
/freebsd-10.1-release/lib/libstdbuf/
H A Dstdbuf.c55 int mode; local
59 mode = _IONBF;
61 mode = _IOLBF;
63 mode = _IOFBF;
74 warn("Wrong buffer mode '%s' for %s", bufmode,
93 mode = _IOFBF;
95 if (setvbuf(s, NULL, mode, bufsize) != 0)
96 warn("Cannot set buffer mode '%s' for %s", bufmode,
/freebsd-10.1-release/sys/fs/nfsclient/
H A Dnfs_kdtrace.h52 #define KDTRACE_NFS_ACCESSCACHE_GET_HIT(vp, uid, mode) do { \
56 (mode)); \
59 #define KDTRACE_NFS_ACCESSCACHE_GET_MISS(vp, uid, mode) do { \
63 (mode)); \
109 #define KDTRACE_NFS_ACCESSCACHE_GET_HIT(vp, uid, mode)
110 #define KDTRACE_NFS_ACCESSCACHE_GET_MISS(vp, uid, mode)
/freebsd-10.1-release/sys/nfs/
H A Dnfs_kdtrace.h52 #define KDTRACE_NFS_ACCESSCACHE_GET_HIT(vp, uid, mode) do { \
56 (mode)); \
59 #define KDTRACE_NFS_ACCESSCACHE_GET_MISS(vp, uid, mode) do { \
63 (mode)); \
109 #define KDTRACE_NFS_ACCESSCACHE_GET_HIT(vp, uid, mode)
110 #define KDTRACE_NFS_ACCESSCACHE_GET_MISS(vp, uid, mode)
/freebsd-10.1-release/tools/regression/pjdfstest/tests/granular/
H A D04.t50 expect 06555 lstat ${n0} mode
52 expect 0555,65534,65532 lstat ${n0} mode,uid,gid
54 expect 06555 lstat ${n0} mode
56 expect 0555,65534,65533 lstat ${n0} mode,uid,gid
58 expect 06555 lstat ${n0} mode
60 expect 06555,65534,65533 lstat ${n0} mode,uid,gid
66 expect 06555 lstat ${n0} mode
68 expect 0555,65534,65532 lstat ${n0} mode,uid,gid
70 expect 06555 lstat ${n0} mode
72 expect 0555,65534,65533 lstat ${n0} mode,ui
[all...]
/freebsd-10.1-release/tools/regression/pjdfstest/tests/mknod/
H A D02.t15 expect fifo,0644 stat ${nx} type,mode
20 expect block,0644 stat ${nx} type,mode
25 expect char,0644 stat ${nx} type,mode
/freebsd-10.1-release/sys/dev/syscons/
H A Dsysmouse.c63 mousemode_t *mode; local
76 case MOUSE_GETMODE: /* get protocol/mode */
77 mode = (mousemode_t *)data;
78 mode->level = mouse_level;
79 switch (mode->level) {
81 mode->protocol = MOUSE_PROTO_MSC;
82 mode->rate = -1; /* unknown */
83 mode->resolution = -1; /* unknown */
84 mode->accelfactor = 0; /* disabled */
85 mode
[all...]
H A Dscvesactl.c57 int mode; local
79 mode = (cmd & 0xff) + M_VESA_BASE;
80 return sc_set_text_mode(scp, tp, mode, 0, 0, 0, 0);
105 mode = (cmd & 0xff) + M_VESA_BASE;
106 return sc_set_graphics_mode(scp, tp, mode);
112 mode = (cmd & 0xff) + M_VESA_BASE;
115 (mode > M_VESA_FULL_1280) &&
116 (mode < M_VESA_MODE_MAX))
117 return sc_set_graphics_mode(scp, tp, mode);
/freebsd-10.1-release/tools/regression/pjdfstest/tests/rename/
H A D00.t22 expect ${type},0644,1 lstat ${n0} type,mode,nlink
25 expect ENOENT lstat ${n0} type,mode,nlink
26 expect ${type},${inode},0644,1 lstat ${n1} type,inode,mode,nlink
28 expect ${type},${inode},0644,2 lstat ${n0} type,inode,mode,nlink
29 expect ${type},${inode},0644,2 lstat ${n1} type,inode,mode,nlink
31 expect ${type},${inode},0644,2 lstat ${n0} type,inode,mode,nlink
32 expect ENOENT lstat ${n1} type,mode,nlink
33 expect ${type},${inode},0644,2 lstat ${n2} type,inode,mode,nlink
39 expect dir,0755 lstat ${n0} type,mode
42 expect ENOENT lstat ${n0} type,mode
[all...]
/freebsd-10.1-release/sys/dev/drm2/
H A Ddrm_modes.c43 * drm_mode_debug_printmodeline - debug print a mode
45 * @mode: mode to print
50 * Describe @mode using DRM_DEBUG.
52 void drm_mode_debug_printmodeline(struct drm_display_mode *mode) argument
56 mode->base.id, mode->name, mode->vrefresh, mode->clock,
57 mode
515 drm_mode_set_name(struct drm_display_mode *mode) argument
558 drm_mode_width(struct drm_display_mode *mode) argument
578 drm_mode_height(struct drm_display_mode *mode) argument
591 drm_mode_hsync(const struct drm_display_mode *mode) argument
624 drm_mode_vrefresh(const struct drm_display_mode *mode) argument
719 drm_mode_duplicate(struct drm_device *dev, const struct drm_display_mode *mode) argument
794 struct drm_display_mode *mode; local
828 struct drm_display_mode *mode; local
860 struct drm_display_mode *mode, *t; local
936 struct drm_display_mode *mode; local
976 drm_mode_parse_command_line_for_connector(const char *mode_option, struct drm_connector *connector, struct drm_cmdline_mode *mode) argument
1128 struct drm_display_mode *mode; local
[all...]
H A Ddrm_crtc_helper.h29 * The DRM mode setting helper functions are common code for drivers to use if
45 * Control power levels on the CRTC. If the mode passed in is
48 void (*dpms)(struct drm_crtc *crtc, int mode);
52 /* Provider can fixup or change mode timings before modeset occurs */
54 const struct drm_display_mode *mode,
56 /* Actually set the mode */
57 int (*mode_set)(struct drm_crtc *crtc, struct drm_display_mode *mode,
76 void (*dpms)(struct drm_encoder *encoder, int mode);
81 const struct drm_display_mode *mode,
86 struct drm_display_mode *mode,
[all...]
/freebsd-10.1-release/contrib/sendmail/libsm/
H A Dsetvbuf.c38 ** mode -- buffering method to use
47 sm_io_setvbuf(fp, timeout, buf, mode, size)
51 int mode;
68 if (mode != SM_IO_NBF)
69 if ((mode != SM_IO_FBF && mode != SM_IO_LBF &&
70 mode != SM_IO_NOW) || (int) size < 0)
95 /* If setting unbuffered mode, skip all the hard work. */
96 if (mode == SM_IO_NBF)
157 if (mode
[all...]
/freebsd-10.1-release/contrib/telnet/telnet/
H A Dterminal.c180 * These routines decides on what the mode should be (based on the values
189 int mode = 0;
195 mode |= MODE_ECHO;
198 mode |= MODE_FLOW;
201 mode |= MODE_INBIN;
204 mode |= MODE_OUTBIN;
209 mode |= (MODE_TRAPSIG|MODE_EDIT);
211 mode &= ~MODE_ECHO;
214 return(mode);
218 mode |
188 int mode = 0; local
[all...]
/freebsd-10.1-release/lib/libc/rpc/
H A Ddes_crypt.c70 * CBC mode encryption
73 cbc_crypt(key, buf, len, mode, ivec)
77 unsigned mode;
90 err = common_crypt(key, buf, len, mode, &dp);
97 * ECB mode encryption
100 ecb_crypt(key, buf, len, mode)
104 unsigned mode;
114 return(common_crypt(key, buf, len, mode, &dp));
123 common_crypt(key, buf, len, mode, desp)
127 unsigned mode;
[all...]
/freebsd-10.1-release/sys/boot/efi/libefi/
H A Definet.c67 dump_mode(EFI_SIMPLE_NETWORK_MODE *mode) argument
71 printf("State = %x\n", mode->State);
72 printf("HwAddressSize = %u\n", mode->HwAddressSize);
73 printf("MediaHeaderSize = %u\n", mode->MediaHeaderSize);
74 printf("MaxPacketSize = %u\n", mode->MaxPacketSize);
75 printf("NvRamSize = %u\n", mode->NvRamSize);
76 printf("NvRamAccessSize = %u\n", mode->NvRamAccessSize);
77 printf("ReceiveFilterMask = %x\n", mode->ReceiveFilterMask);
78 printf("ReceiveFilterSetting = %u\n", mode->ReceiveFilterSetting);
79 printf("MaxMCastFilterCount = %u\n", mode
[all...]

Completed in 338 milliseconds

1234567891011>>