Home
last modified time | relevance | path

Searched +full:128 +full:- +full:character (Results 1 – 25 of 617) sorted by relevance

12345678910>>...25

/freebsd/contrib/file/magic/Magdir/
H A Dispell2 #------------------------------------------------------------------------------
17 >2 leshort 0x00 8-bit, no capitalization, 26 flags
18 >2 leshort 0x01 7-bit, no capitalization, 26 flags
19 >2 leshort 0x02 8-bit, capitalization, 26 flags
20 >2 leshort 0x03 7-bit, capitalization, 26 flags
21 >2 leshort 0x04 8-bit, no capitalization, 52 flags
22 >2 leshort 0x05 7-bit, no capitalization, 52 flags
23 >2 leshort 0x06 8-bit, capitalization, 52 flags
24 >2 leshort 0x07 7-bit, capitalization, 52 flags
25 >2 leshort 0x08 8-bit, no capitalization, 128 flags
[all …]
/freebsd/contrib/ncurses/man/
H A Dcurs_util.3x3 .\" Copyright 2018-2023,2024 Thomas E. Dickey *
4 .\" Copyright 1998-2015,2017 Free Software Foundation, Inc. *
32 .TH curs_util 3X 2024-04-20 "ncurses @NCURSES_MAJOR@.@NCURSES_MINOR@" "Library calls"
60 \fB\%wunctrl\fP \-
88 The \fBunctrl\fP routine returns a character string which is a printable
89 representation of the character \fIch\fP:
92 e.g., a one-character string containing the key.
98 DEL (character 127) is displayed as \fB^?\fP.
100 Values above 128 are either meta characters
103 shown in the \fBM\-\fIX\fR notation,
[all …]
H A Dcurs_termattrs.3x2 .\" Copyright 2018-2023,2024 Thomas E. Dickey *
3 .\" Copyright 1998-2010,2015 Free Software Foundation, Inc. *
31 .TH curs_termattrs 3X 2024-04-20 "ncurses @NCURSES_MAJOR@.@NCURSES_MINOR@" "Library calls"
43 \fB\%termname\fP \-
68 The \fBerasechar\fP routine returns the user's current erase character.
70 The \fBerasewchar\fP routine stores the current erase character
72 If no erase character has been defined, the routine fails
75 The \fBhas_ic\fP routine is true if the terminal has insert- and delete-
76 character capabilities.
78 The \fBhas_il\fP routine is true if the terminal has insert- and delete-line
[all …]
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Dsmmintrin.h1 /*===---- smmintrin.h - SSE4 intrinsics ------------------------------------===
5 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 *===-----------------------------------------------------------------------===
22 __target__("sse4.1,no-evex512"), __min_vector_width__(128)))
41 /// Rounds up each element of the 128-bit vector of [4 x float] to an
42 /// integer and returns the rounded values in a 128-bit vector of
54 /// A 128-bit vector of [4 x float] values to be rounded up.
55 /// \returns A 128-bit vector of [4 x float] containing the rounded values.
58 /// Rounds up each element of the 128-bit vector of [2 x double] to an
59 /// integer and returns the rounded values in a 128-bit vector of
[all …]
/freebsd/contrib/arm-optimized-routines/string/aarch64/
H A Dstrchr-mte.S2 * strchr - find a character in a string
4 * Copyright (c) 2020-2022, Arm Limited.
5 * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
10 * ARMv8-a, AArch64, Advanced SIMD.
35 For each 16-byte chunk we calculate a 64-bit syndrome value with four bits
36 per byte. Bits 0-1 are set if the relevant byte matched the requested
37 character, bits 2-3 are set if the byte is NUL or matched. Count trailing
50 shrn vend.8b, vhas_nul.8h, 4 /* 128->64 */
57 /* Tmp1 is an even multiple of 2 if the target character was
83 shrn vend.8b, vhas_nul.8h, 4 /* 128->64 */
[all …]
H A Dmemchr.S2 * memchr - find a character in a memory zone
4 * Copyright (c) 2014-2022, Arm Limited.
5 * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
10 * ARMv8-a, AArch64
41 * For each 32-byte chunk we calculate a 64-bit syndrome value, with two bits
43 * requested character and bit 1 is not used (faster than using a 32bit
59 /* Work with aligned 32-byte chunks */
67 * Input string is not 32-byte aligned. We calculate the syndrome
79 addp vend.16b, vhas_chr1.16b, vhas_chr2.16b /* 256->128 */
80 addp vend.16b, vend.16b, vend.16b /* 128->64 */
[all …]
H A Dstrrchr.S2 * strrchr - find last position of a character in a string.
4 * Copyright (c) 2014-2022, Arm Limited.
5 * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
10 * ARMv8-a, AArch64
47 For each 32-byte hunk we calculate a 64-bit syndrome value, with
49 and little-endian systems). For each tuple, bit 0 is set iff
50 the relevant byte matched the requested character; bit 1 is set
64 bic src, srcin, #31 /* Work with aligned 32-byte hunks. */
71 /* Input string is not 32-byte aligned. Rather than forcing
85 addp vhas_nul1.16b, vhas_nul1.16b, vhas_nul2.16b // 256->128
[all …]
H A Dstrchr.S2 * strchr - find a character in a string
4 * Copyright (c) 2014-2022, Arm Limited.
5 * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
10 * ARMv8-a, AArch64
41 For each 32-byte hunk we calculate a 64-bit syndrome value, with
43 and little-endian systems). For each tuple, bit 0 is set iff
44 the relevant byte matched the requested character; bit 1 is set
55 matches the requested byte. Even bits are set if the character
60 bic src, srcin, #31 /* Work with aligned 32-byte hunks. */
66 /* Input string is not 32-byte aligned. Rather than forcing
[all …]
H A Dstrchrnul.S2 * strchrnul - find a character or nul in a string
4 * Copyright (c) 2014-2022, Arm Limited.
5 * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
10 * ARMv8-a, AArch64
39 For each 32-byte hunk we calculate a 64-bit syndrome value, with
41 and little-endian systems). For each tuple, bit 0 is set iff
42 the relevant byte matched the requested character or nul. Since the
55 bic src, srcin, #31 /* Work with aligned 32-byte hunks. */
60 /* Input string is not 32-byte aligned. Rather than forcing
73 addp vend1.16b, vhas_chr1.16b, vhas_chr2.16b // 256->128
[all …]
H A Dmemrchr.S2 * memrchr - find last character in a memory zone.
4 * Copyright (c) 2020-2022, Arm Limited.
5 * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
10 * ARMv8-a, AArch64, Advanced SIMD.
38 For each 16-byte chunk we calculate a 64-bit nibble mask value with four bits
53 shrn vend.8b, vhas_chr.8h, 4 /* 128->64 */
69 /* Make sure that it won't overread by a 16-byte chunk */
76 ldr qdata, [src, -32]!
78 umaxp vend.16b, vhas_chr.16b, vhas_chr.16b /* 128->64 */
83 ldr qdata, [src, -16]
[all …]
/freebsd/crypto/openssl/crypto/asn1/
H A Dcharmap.pl2 # Copyright 2000-2021 The OpenSSL Project Authors. All Rights Reserved.
17 # Each set bit represents a character property.
19 # RFC2253 character properties
20 my $RFC2253_ESC = 1; # Character escaped with \
21 my $ESC_CTRL = 2; # Escaped control character
24 my $PSTRING_CHAR = 0x10; # Valid PrintableString character
25 my $RFC2253_FIRST_ESC = 0x20; # Escaped with \ if first character
26 my $RFC2253_LAST_ESC = 0x40; # Escaped with \ if last character
27 my $RFC2254_ESC = 0x400; # Character escaped \XX
28 my $HOST_ANY = 0x1000; # Valid hostname character anywhere in label
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/devices/
H A Ddevices_001_pos.ksh1 #!/bin/ksh -p
2 # SPDX-License-Identifier: CDDL-1.0
11 # or https://opensource.org/licenses/CDDL-1.0.
45 # 3. Separately create block device file and character file.
63 log_must dd if=/dev/urandom of=$TESTDIR/$TESTFILE1.out1 count=1 bs=128k
64 log_must dd if=$TESTDIR/$TESTFILE1.out1 of=$TESTDIR/$TESTFILE1 count=1 bs=128k
65 log_must dd if=$TESTDIR/$TESTFILE1 of=$TESTDIR/$TESTFILE1.out2 count=1 bs=128k
68 # Create character device file backed by /dev/null
71 log_must dd if=/dev/urandom of=$TESTDIR/$TESTFILE2 count=1 bs=128k
H A Ddevices_002_neg.ksh1 #!/bin/ksh -p
2 # SPDX-License-Identifier: CDDL-1.0
11 # or https://opensource.org/licenses/CDDL-1.0.
45 # 3. Separately create block device file and character file.
63 log_mustnot dd if=/dev/urandom of=$TESTDIR/$TESTFILE1 count=1 bs=128k
64 log_mustnot dd if=$TESTDIR/$TESTFILE1 of=/dev/null count=1 bs=128k
66 # Create character device file backed by /dev/null
69 log_mustnot dd if=/dev/urandom of=$TESTDIR/$TESTFILE2 count=1 bs=128k
/freebsd/lib/libc/stdio/
H A Dprintf.3106 write to the character string
118 (or arguments accessed via the variable-length argument facilities of
137 will return \-1 and set
149 .Fa size Ns \-1
153 character then gets the terminating
159 The output is always null-terminated, unless
184 character.
190 .Bl -bullet
203 .Bl -tag -width ".So \ Sc (space)"
216 conversions, a non-zero result has the string
[all …]
/freebsd/usr.bin/locate/code/
H A Dlocate.code.c2 * SPDX-License-Identifier: BSD-3-Clause
4 * Copyright (c) 1995-2022 Wolfram Schneider <wosch@FreeBSD.org>
46 * offset differential count byte followed by a partially bigram-
47 * encoded ascii residue. A bigram is a two-character sequence,
48 * the first 128 most common of which are encoded in one byte.
60 * 0-28 likeliest differential counts + offset to make nonnegative
61 * 30 switch code for out-of-range count to follow in next word
63 * 128-255 bigram codes (128 most common, as determined by 'updatedb')
64 * 32-127 single character (printable) ascii residue (ie, literal)
66 * The locate database store any character except newline ('\n')
[all …]
/freebsd/contrib/ntp/libntp/
H A Dis_ip_address.c37 char tmpbuf[128]; in is_ip_address()
48 * working buffer of 128 bytes. The length is an ad-hoc value, but in is_ip_address()
51 * addresses (up to 46 bytes), the delimiter character and the in is_ip_address()
52 * terminating NULL character. in is_ip_address()
77 resaddr6 = UA_PTR(struct sockaddr_in6, result->ai_addr); in is_ip_address()
78 SET_ADDR6N(addr, resaddr6->sin6_addr); in is_ip_address()
79 SET_SCOPE(addr, resaddr6->sin6_scope_id); in is_ip_address()
/freebsd/contrib/bmake/unit-tests/
H A Dvarname.exp17 Global: .MAKEFLAGS = -r -k -d v -d
18 Global: .MAKEFLAGS = -r -k -d v -d 0
19 make: varname.mk:98: warning: Invalid character " " in variable name "if ,yes,no"
20 make: varname.mk:113: warning: Invalid character " " in variable name "if ,yes,no"
21 make: varname.mk:120: warning: Invalid character " " in variable name "if ,,"
22 make: varname.mk:128: Unknown modifier ":yes,answer"
25 make: varname.mk:138: warning: Invalid character "\x09" in variable name "a b"
28 make: Fatal errors encountered -- cannot continue
29 make: stopped in unit-tests
/freebsd/usr.bin/col/
H A DREADME2 col - filter out reverse line feeds.
5 -b do not print any backspaces (last character written is printed)
6 -f allow half line feeds in output, by default characters between
8 -p force unknown control sequences to be passed through unchanged
9 -x do not compress spaces into tabs.
10 -l num keep (at least) num lines in memory, 128 are kept by default
13 spaces into tabs. There was a -h option which caused it to compress spaces
14 into tabs. There was no -x flag.
17 at the time) and documented a -x flag (as defined above) while making no
18 mention of a -h flag. Just before 4.3BSD went out, CSRG updated the manual
[all …]
H A Dcol.146 feeds, and replaces white-space characters with tabs where possible.
53 .Bl -tag -width indent
55 Do not output any backspaces, printing only the last character
67 By default, 128 lines are buffered.
80 understands both the escape sequences of the form escape-digit
82 .St -susv2
85 format escape-control-character.
89 .Bl -tag -width "carriage return" -compact
90 .It ESC\-BELL
92 .It ESC\-7
[all …]
/freebsd/share/misc/
H A Dusb_hid_usages4 # - lines that do not start with a white space give the number and name of
6 # - lines that start with a white space give the number and name of
20 0x08 Multi-axis Controller
62 0x90 D-pad Up
63 0x91 D-pad Down
64 0x92 D-pad Right
65 0x93 D-pad Left
107 0xB2 Anti-Torque Control
228 0x24 Security Code Character Entered
229 0x25 Security Code Character Erased
[all …]
/freebsd/crypto/openssl/crypto/
H A Dctype.c2 * Copyright 2017-2023 The OpenSSL Project Authors. All Rights Reserved.
16 * Define the character classes for each character in the seven bit ASCII
17 * character set. This is independent of the host's character set, characters
21 static const unsigned short ctype_char_map[128] = {
73 /* 2D - */ CTYPE_MASK_graph | CTYPE_MASK_print | CTYPE_MASK_punct
229 if (c < -128 || c > 256 || c == EOF) in ossl_toascii()
233 * This is not required for ASCII because any character that sign extends in ossl_toascii()
244 if (c < -128 || c > 256 || c == EOF) in ossl_fromascii()
/freebsd/share/doc/usd/21.troff/
H A Dm41 .\" Copyright (C) Caldera International Inc. 2001-2002. All rights reserved.
43 A \fIhyphenation indicator\fR character may be imbedded in a word to
50 surrounded by (usually null) non-alphabetic strings
54 em-dashes (\fB\e(em\fR),
56 \(emsuch as mother-in-law\(em\
61 \fB&nh\fR hyphenate - E \
74 \fB&hc\fI|c\fR \fB\e% \e%\fR E Hyphenation indicator character is set
78 \fB&hw\fI|word1|...\fR ignored - Specify hyphenation points in words
81 i.|e. \fIdig\-it\fR implies \fIdig\-its\fR.
84 The space available is small\(emabout 128 characters.
[all …]
/freebsd/sys/contrib/device-tree/Bindings/serial/
H A Dnvidia,tegra264-utc.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/serial/nvidia,tegra264-utc.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Kartik Rajput <kkartik@nvidia.com>
11 - Thierry Reding <thierry.reding@gmail.com>
12 - Jonathan Hunter <jonathanh@nvidia.com>
18 independent UART endpoint with a dedicated interrupt and 128-character TX/RX
21 The Tegra UTC clients use 8-N-1 configuration and operates on a baudrate
25 - $ref: serial.yaml#
[all …]
/freebsd/contrib/less/
H A Dcharset.c2 * Copyright (C) 1984-2025 Mark Nudelman
12 * Functions to define the character set
13 * and do things specific to the character set.
36 * Predefined character sets,
45 { "utf-8", &utf_mode, "8bcccbcc18b95.b126.bb" },
52 { "koi8-r", NULL, "8bcccbcc18b95.b." },
53 { "KOI8-T", NULL, "8bcccbcc18b95.b8.b6.b8.b.b.5b7.3b4.b4.b3.b.b.3b." },
56 { "TIS-620", NULL, "8bcccbcc18b95.b.4b.11b7.8b." },
59 { "windows-1251", NULL, "8bcccbcc12bc5b95.b24.b." },
60 { "windows-1252", NULL, "8bcccbcc12bc5b95.b.b11.b.2b12.b." },
[all …]
/freebsd/share/doc/psd/02.implement/
H A Dimplement4 .\" Copyright (C) Caldera International Inc. 2001-2002. All rights reserved.
40 .EH 'PSD:2-%''UNIX Implementation'
41 .OH 'UNIX Implementation''PSD:2-%'
55 \&\\$3\s-1\\$1\\s0\&\\$2
69 .AU "MH 2C-523" 2394
75 This paper describes in high-level terms the
120 but have that way be the least-common divisor
125 It is a soap-box platform on
159 from a read-only text segment,
165 from shared-text segments.
[all …]

12345678910>>...25