Home
last modified time | relevance | path

Searched full:special (Results 1 – 25 of 5202) sorted by relevance

12345678910>>...209

/freebsd/usr.sbin/kbdcontrol/
H A Dkbdcontrol.c23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
47 #define SPECIAL 0x80000000 macro
202 return NOP | SPECIAL; in get_entry()
204 return LSH | SPECIAL; in get_entry()
206 return RSH | SPECIAL; in get_entry()
208 return CLK | SPECIAL; in get_entry()
210 return NLK | SPECIAL; in get_entry()
212 return SLK | SPECIAL; in get_entry()
214 return BTAB | SPECIAL; in get_entry()
216 return LALT | SPECIAL; in get_entry()
[all …]
/freebsd/share/man/man4/
H A Dproto.419 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
59 are present for those devices and it creates device special files for all
62 Programs can open these device special files and perform register-level
76 Device special files created for I/O port resources allow
98 region being represented by the device special file.
99 If, for example, the device special file corresponds to an I/O port region
109 device special file.
118 The device special files created for memory mapped I/O resources behave
120 Additionally, device special files for memory mapped I/O resources allow
136 A device special file named
[all …]
H A Dtermios.420 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
56 seldom open these files; they are opened by special programs, such
184 following special cases apply: if the reading process is ignoring or
206 signal unless one of the following special cases apply: if
319 .Sx "Special Characters"
342 Erase and kill processing occur when either of two special characters,
348 .Sx "Special Characters"
514 .Ss Special Characters
515 Certain characters have special functions on input or output or both.
519 Special character on input and is recognized if the
[all …]
/freebsd/contrib/arm-optimized-routines/math/aarch64/advsimd/
H A Datanhf.c34 uint32x4_t special) in special_case() argument
37 vmulq_f32 (halfsign, y), special); in special_case()
53 uint32x4_t special in V_NAME_F1() local
55 /* Side-step special cases by setting those lanes to 0, which will trigger no in V_NAME_F1()
57 if (unlikely (v_any_u32 (special))) in V_NAME_F1()
58 ax = v_zerofy_f32 (ax, special); in V_NAME_F1()
60 uint32x4_t special = vcgeq_u32 (iax, d->one); in V_NAME_F1() local
67 /* If exceptions not required, pass ax to special-case for shorter dependency in V_NAME_F1()
70 if (unlikely (v_any_u32 (special))) in V_NAME_F1()
72 return special_case (x, halfsign, y, special); in V_NAME_F1()
[all …]
H A Dtanh.c25 uint64x2_t special) in special_case() argument
27 return v_call_f64 (tanh, x, vdivq_f64 (q, qp2), special); in special_case()
42 /* Trigger special-cases for tiny, boring and infinity/NaN. */ in V_NAME_D1()
43 uint64x2_t special = vcgtq_u64 (vsubq_u64 (ia, d->tiny_bound), d->thresh); in V_NAME_D1() local
45 /* To trigger fp exceptions correctly, set special lanes to a neutral value. in V_NAME_D1()
46 They will be fixed up later by the special-case handler. */ in V_NAME_D1()
47 if (unlikely (v_any_u64 (special))) in V_NAME_D1()
48 u = v_zerofy_f64 (u, special); in V_NAME_D1()
57 if (unlikely (v_any_u64 (special))) in V_NAME_D1()
58 return special_case (x, q, qp2, special); in V_NAME_D1()
H A Dasinhf.c32 uint32x4_t special, const struct data *d) in special_case() argument
38 special); in special_case()
50 uint32x4_t special = vcgeq_u32 (iax, dat->big_bound); in V_NAME_F1() local
57 special = vorrq_u32 (special, vcltq_u32 (iax, dat->tiny_bound)); in V_NAME_F1()
58 if (unlikely (v_any_u32 (special))) in V_NAME_F1()
60 ax = v_zerofy_f32 (ax, special); in V_NAME_F1()
61 x = v_zerofy_f32 (x, special); in V_NAME_F1()
71 if (unlikely (v_any_u32 (special))) in V_NAME_F1()
72 return special_case (special_arg, sign, y, special, dat); in V_NAME_F1()
H A Dtanhf.c26 float32x4_t q, uint32x4_t special) in special_case() argument
31 special); in special_case()
52 /* If fp exceptions are to be triggered properly, set all special and boring in V_NAME_F1()
54 uint32x4_t special = vorrq_u32 (vcgtq_u32 (iax, d->large_bound), in V_NAME_F1() local
57 if (unlikely (v_any_u32 (special))) in V_NAME_F1()
58 x = v_zerofy_f32 (x, special); in V_NAME_F1()
60 uint32x4_t special = vcgtq_u32 (iax, d->large_bound); in V_NAME_F1() local
66 if (unlikely (v_any_u32 (special))) in V_NAME_F1()
68 special); in V_NAME_F1()
H A Dcoshf.c24 /* 0x1.5a92d8p+6: expf overflows above this, so have to use special case. */
34 uint32x4_t special) in special_case() argument
36 return v_call_f32 (coshf, x, vaddq_f32 (half_t, half_over_t), special); in special_case()
50 variant for all inputs if any input is a special value or above the bound in V_NAME_F1()
54 uint32x4_t special = vcgeq_u32 (iax, d->special_bound); in V_NAME_F1() local
55 if (unlikely (v_any_u32 (special))) in V_NAME_F1()
65 uint32x4_t special = vcageq_f32 (x, d->bound); in V_NAME_F1() local
77 if (unlikely (v_any_u32 (special))) in V_NAME_F1()
78 return special_case (x, half_t, half_over_t, special); in V_NAME_F1()
H A Dtanf.c38 /* Special cases (fall back to scalar calls). */
76 /* If fp exceptions are to be triggered correctly, also special-case tiny in V_NAME_F1()
77 input, as this will load to overflow later. Fix any special lanes to 1 to in V_NAME_F1()
79 uint32x4_t special = vcgeq_u32 (vsubq_u32 (iax, TinyBound), Thresh); in V_NAME_F1() local
80 if (unlikely (v_any_u32 (special))) in V_NAME_F1()
81 x = vbslq_f32 (special, v_f32 (1.0f), x); in V_NAME_F1()
83 /* Otherwise, special-case large and special values. */ in V_NAME_F1()
84 uint32x4_t special = vcageq_f32 (x, d->range_val); in V_NAME_F1() local
118 if (unlikely (v_any_u32 (special))) in V_NAME_F1()
119 return special_case (special_arg, vbslq_f32 (pred_alt, inv_y, y), special); in V_NAME_F1()
H A Dacoshf.c23 special_case (float32x4_t x, float32x4_t y, uint16x4_t special, in special_case() argument
26 return v_call_f32 (acoshf, x, log1pf_inline (y, d), vmovl_u16 (special)); in special_case()
43 uint16x4_t special = vcge_u16 (vsubhn_u32 (ix, d->one), Thresh); in V_NAME_F1() local
46 /* Mask special lanes with 1 to side-step spurious invalid or overflow. Use in V_NAME_F1()
48 Widening sign-extend special predicate in order to mask with it. */ in V_NAME_F1()
50 = vreinterpretq_u32_s32 (vmovl_s16 (vreinterpret_s16_u16 (special))); in V_NAME_F1()
61 if (unlikely (v_any_u16h (special))) in V_NAME_F1()
62 return special_case (x, y, special, &d->log1pf_consts); in V_NAME_F1()
H A Dhypot.c33 uint32x2_t special) in special_case() argument
35 return v_call2_f64 (hypot, x, y, vsqrtq_f64 (sqsum), vmovl_u32 (special)); in special_case()
61 uint32x2_t special = vaddhn_u64 (specialx, specialy); in V_NAME_D2() local
65 if (unlikely (v_any_u32h (special))) in V_NAME_D2()
66 return special_case (x, y, sqsum, special); in V_NAME_D2()
78 uint32x2_t special in V_NAME_D2() local
82 if (unlikely (v_any_u32h (special))) in V_NAME_D2()
83 return special_case (x, y, sqsum, special); in V_NAME_D2()
H A Dhypotf.c33 uint16x4_t special) in special_case() argument
35 return v_call2_f32 (hypotf, x, y, vsqrtq_f32 (sqsum), vmovl_u16 (special)); in special_case()
60 uint16x4_t special = vaddhn_u32 (specialx, specialy); in V_NAME_F2() local
64 if (unlikely (v_any_u16h (special))) in V_NAME_F2()
65 return special_case (x, y, sqsum, special); in V_NAME_F2()
77 uint16x4_t special in V_NAME_F2() local
81 if (unlikely (v_any_u16h (special))) in V_NAME_F2()
82 return special_case (x, y, sqsum, special); in V_NAME_F2()
H A Dacosh.c25 special_case (float64x2_t x, float64x2_t y, uint64x2_t special, in special_case() argument
28 return v_call_f64 (acosh, x, log1p_inline (y, d), special); in special_case()
39 uint64x2_t special in V_NAME_D1() local
44 if (unlikely (v_any_u64 (special))) in V_NAME_D1()
45 x = vbslq_f64 (special, vreinterpretq_f64_u64 (d->one), x); in V_NAME_D1()
54 if (unlikely (v_any_u64 (special))) in V_NAME_D1()
55 return special_case (special_arg, y, special, &d->log1p_consts); in V_NAME_D1()
/freebsd/lib/libsys/
H A Dswapon.220 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
42 .Fn swapon "const char *special"
44 .Fn swapoff "const char *special" "u_int flags"
50 .Fa special
57 .Fa special
68 .Fa special
106 .Fa special
117 .Fa special
122 .Fa special
127 .Fa special
[all …]
/freebsd/sbin/newfs/
H A Dnewfs.c32 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
124 char *cp, *special; in main() local
300 special = argv[0]; in main()
301 if (!special[0]) in main()
302 err(1, "empty file/special name"); in main()
303 cp = strrchr(special, '/'); in main()
308 snprintf(device, sizeof(device), "%s%s", _PATH_DEV, special); in main()
309 special = device; in main()
316 disk.d_name = special; in main()
317 disk.d_fd = open(special, O_RDONLY); in main()
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/alloc_class/
H A Dalloc_class_012_pos.ksh22 # Removing a special device from a pool succeeds.
28 # Verify the file identified by the input <inode> is written on a special vdev
29 # According to the pool layout used in this test vdev_id 3 and 4 are special
53 # verify vdev is "special"
63 # Check that device removal works for special class vdevs
72 special $CLASS_DISK0 special $CLASS_DISK1
76 # Generate some metadata and small blocks in the special class vdev
92 # Verify the files were written in the special class vdevs
111 claim="Removing a special device from a pool succeeds."
/freebsd/sbin/mount_fusefs/
H A Dmount_fusefs.827 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
48 .Op Fl s Ar special
53 .Ar special node
57 .Ar special
60 .Ar special
63 That special file can then be mounted by
79 .Ar special .
84 .Ar special
85 argument will normally be treated as the path of the special file to mount.
90 .Ar special ,
[all …]
/freebsd/contrib/bmake/unit-tests/
H A Dmeta-cmd-cmp.exp6 Skipping meta for .END: .SPECIAL
12 Skipping meta for .END: .SPECIAL
22 Skipping meta for .END: .SPECIAL
36 Skipping meta for .END: .SPECIAL
39 Skipping meta for .END: .SPECIAL
46 Skipping meta for .END: .SPECIAL
49 Skipping meta for .END: .SPECIAL
52 Skipping meta for .END: .SPECIAL
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DInstructionPrecedenceTracking.h8 // Implements a class that is able to define some instructions as "special"
11 // 1. Are there any special instructions in the block of interest?
12 // 2. Return first of the special instructions in the given block;
13 // 3. Check if the given instruction is preceeded by the first special
31 // Maps a block to the topmost special instruction in it. If the value is
33 // special instructions.
36 // Fills information about the given block's special instructions.
52 /// Returns the topmost special instruction from the block \p BB. Returns
53 /// nullptr if there is no special instructions in the block.
57 /// special.
[all …]
/freebsd/contrib/arm-optimized-routines/math/aarch64/sve/
H A Dlog1pf.c14 special_case (svfloat32_t x, svbool_t special) in special_case() argument
17 special); in special_case()
27 svbool_t special = svcmpeq (pg, svreinterpret_u32 (x), 0x7f800000); in SV_NAME_F1() local
28 special = svorn_z (pg, special, svcmpge (pg, x, -1)); in SV_NAME_F1()
30 if (unlikely (svptest_any (pg, special))) in SV_NAME_F1()
31 return special_case (x, special); in SV_NAME_F1()
/freebsd/usr.sbin/crunch/examples/
H A Dreally-big.conf59 # special requirements
61 special locate srcdir /usr/src/usr.bin/locate/locate
62 special tn3270 srcdir /usr/src/usr.bin/tn3270/tn3270
76 special amd srcdir /usr/src/usr.sbin/amd/amd
77 special amd objs vers.amd.o afs_ops.o am_ops.o clock.o util.o xutil.o efs_ops.o mapc.o info_file.o …
82 special lpr srcdir /usr/src/usr.sbin/lpr/lpr
86 special sendmail srcdir /usr/src/usr.sbin/sendmail/src
92 special timed srcdir /usr/src/usr.sbin/timed/timed
99 special ntpdate srcdir /usr/src/usr.sbin/xntpd/ntpdate
100 special ntpdate keep progname
[all …]
/freebsd/sys/dev/ic/
H A Dcd180.h21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
57 #define CD180_SCHR1 0x09 /* Special Character Register 1 */
58 #define CD180_SCHR2 0x0A /* Special Character Register 2 */
59 #define CD180_SCHR3 0x0B /* Special Character Register 3 */
60 #define CD180_SCHR4 0x0C /* Special Character Register 4 */
93 #define RCSR_SCMASK 0x70 /* Special Character Detected Mask */
94 #define RCSR_SC1 0x10 /* Special Char 1 (or 1 & 3 seq matched) */
95 #define RCSR_SC2 0x20 /* Special Char 2 (or 2 & 4 seq matched) */
96 #define RCSR_SC3 0x30 /* Special Char 3 */
97 #define RCSR_SC4 0x40 /* Special Char 4 */
[all …]
/freebsd/contrib/ncurses/include/
H A DCaps-ncurses173 #key_smap_in1 kmpf1 str Kv - - ----K special mapped key 1 input
174 #key_smap_out1 kmpt1 str KV - - ----K special mapped key 1 output
175 #key_smap_in2 kmpf2 str Kw - - ----K special mapped key 2 input
176 #key_smap_out2 kmpt2 str KW - - ----K special mapped key 2 output
177 #key_smap_in3 kmpf3 str Kx - - ----K special mapped key 3 input
178 #key_smap_out3 kmpt3 str KX - - ----K special mapped key 3 output
179 #key_smap_in4 kmpf4 str Ky - - ----K special mapped key 4 input
180 #key_smap_out4 kmpt4 str KY - - ----K special mapped key 4 output
181 #key_smap_in5 kmpf5 str Kz - - ----K special mapped key 5 input
182 #key_smap_out5 kmpt5 str KZ - - ----K special mapped key 5 output
[all …]
/freebsd/contrib/mandoc/
H A Dmandoc_char.715 .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
25 .Nd mandoc special characters
31 to represent special characters in
55 For that reason, try to avoid using any of the special characters
61 In particular, in English manual pages, do not use special-character
141 in literal context, and when none of the following special cases apply,
181 One way to prevent this special handling is by using the
190 In output modes supporting such special output characters, for example
197 following Unicode special output characters:
231 is not a character escape sequence, does not prevent special handling
[all …]
/freebsd/usr.sbin/crunch/crunchgen/
H A Dcrunchgen.117 .\" BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
242 .Ic special
247 .It Ic special Ar progname Ic srcdir Ar pathname
254 .It Ic special Ar progname Ic objdir Ar pathname
275 .It Ic special Ar progname Ic buildopts Ar buildopts
282 .It Ic special Ar progname Ic objs Ar object-file-name ...
289 .It Ic special Ar progname Ic objpaths Ar full-pathname-to-object-file ...
297 .It Ic special Ar progname Ic objvar Ar variable_name
310 .It Ic special Ar progname Ic lib Ar library-name ...
316 .It Ic special Ar progname Ic keep Ar symbol-name ...
[all …]

12345678910>>...209