/freebsd-src/contrib/llvm-project/libcxx/modules/std/ |
H A D | numbers.inc | 10 export namespace std::numbers { 11 using std::numbers::e_v; 12 using std::numbers::egamma_v; 13 using std::numbers::inv_pi_v; 14 using std::numbers::inv_sqrt3_v; 15 using std::numbers::inv_sqrtpi_v; 16 using std::numbers::ln10_v; 17 using std::numbers::ln2_v; 18 using std::numbers::log10e_v; 19 using std::numbers::log2e_v; [all …]
|
/freebsd-src/contrib/mknod/ |
H A D | pack_dev.c | 67 pack_native(int n, u_long numbers[], const char **error) in pack_native() argument 72 dev = makedev(numbers[0], numbers[1]); in pack_native() 73 if ((u_long)major(dev) != numbers[0]) in pack_native() 75 else if ((u_long)minor(dev) != numbers[1]) in pack_native() 84 pack_netbsd(int n, u_long numbers[], const char **error) in pack_netbsd() argument 89 dev = makedev_netbsd(numbers[0], numbers[1]); in pack_netbsd() 90 if ((u_long)major_netbsd(dev) != numbers[0]) in pack_netbsd() 92 else if ((u_long)minor_netbsd(dev) != numbers[1]) in pack_netbsd() 106 pack_freebsd(int n, u_long numbers[], const char **error) in pack_freebsd() argument 111 dev = makedev_freebsd(numbers[0], numbers[1]); in pack_freebsd() [all …]
|
/freebsd-src/contrib/bmake/unit-tests/ |
H A D | varmod-order.mk | 7 NUMBERS= 8 5 4 9 1 7 6 10 3 2 # in English alphabetical order 28 # expect+1: while evaluating variable "NUMBERS" with value "1 2 3 4 5 6 7 8 9 10": Unclosed expression, expecting '}' for modifier "On" 29 _:= ${NUMBERS:On 30 # expect+1: while evaluating variable "NUMBERS" with value "10 9 8 7 6 5 4 3 2 1": Unclosed expression, expecting '}' for modifier "Onr" 31 _:= ${NUMBERS:Onr 36 # expect+2: while evaluating variable "NUMBERS" with value "8 5 4 9 1 7 6 10 3 2": Bad modifier ":Oxn" 37 # expect+1: Malformed conditional (${NUMBERS:Oxn}) 38 .if ${NUMBERS:Oxn} 46 # expect+2: while evaluating variable "NUMBERS" with value "8 5 4 9 1 7 6 10 3 2": Bad modifier ":On_typo" 47 # expect+1: Malformed conditional (${NUMBERS [all...] |
H A D | varmod-order.exp | 6 make: "varmod-order.mk" line 29: while evaluating variable "NUMBERS" with value "1 2 3 4 5 6 7 8 9 10": Unclosed expression, expecting '}' for modifier "On" 7 make: "varmod-order.mk" line 31: while evaluating variable "NUMBERS" with value "10 9 8 7 6 5 4 3 2 1": Unclosed expression, expecting '}' for modifier "Onr" 8 make: "varmod-order.mk" line 38: while evaluating variable "NUMBERS" with value "8 5 4 9 1 7 6 10 3 2": Bad modifier ":Oxn" 9 make: "varmod-order.mk" line 38: Malformed conditional (${NUMBERS:Oxn}) 10 make: "varmod-order.mk" line 48: while evaluating variable "NUMBERS" with value "8 5 4 9 1 7 6 10 3 2": Bad modifier ":On_typo" 11 make: "varmod-order.mk" line 48: Malformed conditional (${NUMBERS:On_typo}) 12 make: "varmod-order.mk" line 58: while evaluating variable "NUMBERS" with value "8 5 4 9 1 7 6 10 3 2": Bad modifier ":Onr_typo" 13 make: "varmod-order.mk" line 58: Malformed conditional (${NUMBERS:Onr_typo}) 14 make: "varmod-order.mk" line 68: while evaluating variable "NUMBERS" with value "8 5 4 9 1 7 6 10 3 2": Bad modifier ":Orn_typo" 15 make: "varmod-order.mk" line 68: Malformed conditional (${NUMBERS [all...] |
H A D | varmod-order-numeric.mk | 10 # This list contains only 32-bit numbers since the make code needs to conform 15 # 'double' instead, but that would allow floating-point numbers as well, which 17 NUMBERS= 3 5 7 1 42 -42 5K -3m 1M 1k -2G 19 .if ${NUMBERS:On} != "-2G -3m -42 1 3 5 7 42 1k 5K 1M" 20 . error ${NUMBERS:On} 23 .if ${NUMBERS:Orn} != "1M 5K 1k 42 7 5 3 1 -42 -3m -2G" 24 . error ${NUMBERS:Orn} 28 .if ${NUMBERS:Onr} != "1M 5K 1k 42 7 5 3 1 -42 -3m -2G" 29 . error ${NUMBERS:Onr} 32 # Duplicate numbers are preserved in the output. In this case the [all …]
|
H A D | cond-cmp-numeric-lt.mk | 41 # Floating pointer numbers can be compared as well. 42 # This might be tempting to use for version numbers, but there are a few pitfalls. 53 # Since make parses numbers as plain numbers, that leads to wrong results. 66 # typically 16 or 17 significant digits, therefore these two numbers seem to
|
H A D | cond-cmp-numeric-ge.mk | 42 # Floating pointer numbers can be compared as well. 43 # This might be tempting to use for version numbers, but there are a few pitfalls. 54 # Since make parses numbers as plain numbers, that leads to wrong results. 67 # typically 16 or 17 significant digits, therefore these two numbers seem to
|
H A D | cond-cmp-numeric-le.mk | 42 # Floating pointer numbers can be compared as well. 43 # This might be tempting to use for version numbers, but there are a few pitfalls. 54 # Since make parses numbers as plain numbers, that leads to wrong results. 67 # typically 16 or 17 significant digits, therefore these two numbers seem to
|
H A D | cond-cmp-numeric-gt.mk | 41 # Floating pointer numbers can be compared as well. 42 # This might be tempting to use for version numbers, but there are a few pitfalls. 53 # Since make parses numbers as plain numbers, that leads to wrong results. 66 # typically 16 or 17 significant digits, therefore these two numbers seem to
|
/freebsd-src/contrib/libarchive/libarchive/ |
H A D | archive_pack_dev.c | 106 pack_native(int n, unsigned long numbers[], const char **error) in pack_native() argument 111 dev = apd_makedev(numbers[0], numbers[1]); in pack_native() 112 if ((unsigned long)major(dev) != numbers[0]) in pack_native() 114 else if ((unsigned long)minor(dev) != numbers[1]) in pack_native() 123 pack_netbsd(int n, unsigned long numbers[], const char **error) in pack_netbsd() argument 128 dev = makedev_netbsd(numbers[0], numbers[1]); in pack_netbsd() 129 if ((unsigned long)major_netbsd(dev) != numbers[0]) in pack_netbsd() 131 else if ((unsigned long)minor_netbsd(dev) != numbers[1]) in pack_netbsd() 145 pack_freebsd(int n, unsigned long numbers[], const char **error) in pack_freebsd() argument 150 dev = makedev_freebsd(numbers[0], numbers[1]); in pack_freebsd() [all …]
|
/freebsd-src/sys/dev/qat/qat_api/firmware/include/ |
H A D | icp_qat_fw_mmp.h | 153 * Input parameter list for Diffie-Hellman Modular exponentiation base 2 for 768-bit numbers , 167 * Input parameter list for Diffie-Hellman Modular exponentiation for 768-bit numbers , 182 * Input parameter list for Diffie-Hellman Modular exponentiation base 2 for 1024-bit numbers , 196 * Input parameter list for Diffie-Hellman Modular exponentiation for 1024-bit numbers , 211 * Input parameter list for Diffie-Hellman Modular exponentiation base 2 for 1536-bit numbers , 225 * Input parameter list for Diffie-Hellman Modular exponentiation for 1536-bit numbers , 240 * Input parameter list for Diffie-Hellman Modular exponentiation base 2 for 2048-bit numbers , 254 * Input parameter list for Diffie-Hellman Modular exponentiation for 2048-bit numbers , 269 * Input parameter list for Diffie-Hellman Modular exponentiation base 2 for 3072-bit numbers , 283 * Input parameter list for Diffie-Hellman Modular exponentiation for 3072-bit numbers , [all …]
|
H A D | icp_qat_fw_mmp_ids.h | 179 * 768-bit numbers 187 * numbers 195 * 1024-bit numbers 203 * numbers 211 * 1536-bit numbers 219 * numbers 227 * 2048-bit numbers 235 * numbers 243 * 3072-bit numbers 251 * numbers [all …]
|
/freebsd-src/share/doc/usd/05.dc/ |
H A D | dc | 54 It has provision for manipulating scaled fixed-point numbers and 57 The size of numbers that can be manipulated is limited 61 the size of numbers that 92 Numbers that are typed into DC are put on a push-down 109 Blanks and new-line characters are ignored except within numbers 122 Numbers may contain decimal points. 139 numbers with decimal points. 239 For the treatment of numbers with decimal points, see 262 numbers in bases less than 1 or greater than 16. 293 Internal Representation of Numbers [all …]
|
/freebsd-src/usr.bin/whois/ |
H A D | whois.1 | 50 starts by querying the Internet Assigned Numbers Authority (IANA) whois server, 55 IP address and AS numbers 70 Use the American Registry for Internet Numbers 73 It contains network numbers used in those parts of the world covered neither by 83 It contains network numbers used in East Asia, Australia, 101 It contains network numbers used in Africa and the islands of the 132 Use the Internet Assigned Numbers Authority 139 It contains network numbers and domain contact information 145 It contains network numbers used in much of Latin America and the 160 Use the PeeringDB database of AS numbers. [all …]
|
/freebsd-src/crypto/openssl/doc/man7/ |
H A D | openssl-core_dispatch.h.pod | 6 - OpenSSL provider dispatch numbers and function types 15 numbers, dispatch numbers and provider interface function types 18 The operation and dispatch numbers are represented with macros, which 23 =item operation numbers 27 =item dipatch numbers
|
/freebsd-src/crypto/openssl/util/perl/OpenSSL/ |
H A D | OID.pm | 180 my @numbers = 200 return @numbers; 267 my @numbers = @_; 269 croak 'Invalid OID values: ( ', join(', ', @numbers), ' )' 270 if (scalar @numbers < 2 271 || $numbers[0] < 0 || $numbers[0] > 2 272 || $numbers[1] < 0 || $numbers[1] > 39); 274 my $first = shift(@numbers) * 40 + shift(@numbers); 275 @numbers = ( $first, map { _gen_oid_bytes($_) } @numbers ); 277 return @numbers;
|
/freebsd-src/contrib/ncurses/ncurses/tinfo/ |
H A D | read_entry.c | 54 convert_16bits(char *buf, NCURSES_INT2 *Numbers, int count) in convert_16bits() argument 62 Numbers[i] = 0; in convert_16bits() 65 Numbers[i] |= (ch << (8 * j)); in convert_16bits() 70 Numbers[i] |= (int) mask; in convert_16bits() 74 TR(TRACE_DATABASE, ("get Numbers[%d]=%d", i, Numbers[i])); in convert_16bits() 80 convert_32bits(char *buf, NCURSES_INT2 *Numbers, int count) in convert_32bits() argument 89 Numbers[i] = 0; in convert_32bits() 92 Numbers[i] |= (ch << (8 * j)); in convert_32bits() 95 TR(TRACE_DATABASE, ("get Numbers[%d]=%d", i, Numbers[i])); in convert_32bits() 101 convert_32bits(char *buf, NCURSES_INT2 *Numbers, int count) [all …]
|
/freebsd-src/contrib/file/magic/Magdir/ |
H A D | ti-8x | 12 # program/group magic numbers in here because I cannot find any. 16 # Magic Numbers for the TI-73 34 # Magic Numbers for the TI-82 51 # Magic Numbers for the TI-83 69 # Magic Numbers for the TI-83+ 90 # Magic Numbers for the TI-85 123 # Magic Numbers for the TI-86 154 # Magic Numbers for the TI-89 172 # Magic Numbers for the TI-92 189 # Magic Numbers for the TI-92+/V200 [all …]
|
/freebsd-src/share/man/man3/ |
H A D | makedev.3 | 53 macros return the original numbers from the device number 72 stable major and minor numbers. 80 These numbers are not divided in device classes and are not guaranteed 85 these macros are only used by utilities that need to exchange numbers 88 but also applications that present these numbers to the user in a more 95 macros return numbers whose value can span the complete range of an
|
/freebsd-src/secure/lib/libcrypto/man/man7/ |
H A D | openssl-core_dispatch.h.7 | 141 \&\- OpenSSL provider dispatch numbers and function types 150 numbers, dispatch numbers and provider interface function types 153 The operation and dispatch numbers are represented with macros, which 155 .IP "operation numbers" 4 156 .IX Item "operation numbers" 158 .IP "dipatch numbers" 4 159 .IX Item "dipatch numbers"
|
/freebsd-src/usr.bin/seq/ |
H A D | seq.1 | 38 .Nd print sequences of numbers 50 utility prints a sequence of numbers, one per line 68 All numbers are interpreted as floating point. 105 to separate numbers. 116 to terminate sequence of numbers. 126 Equalize the widths of all numbers by padding with zeros as necessary. 130 If any sequence numbers will be printed in exponential notation,
|
/freebsd-src/share/doc/psd/15.yacc/ |
H A D | ss3 | 50 The parser and the lexical analyzer must agree on these token numbers in order for 52 The numbers may be chosen by Yacc, or chosen by the user. 54 to return these numbers symbolically. 99 As mentioned above, the token numbers may be chosen by Yacc or by the user. 100 In the default situation, the numbers are chosen by Yacc. 103 Other names are assigned token numbers 115 It is important that all token numbers be distinct.
|
/freebsd-src/contrib/bc/manuals/dc/ |
H A D | HN.1 | 49 It uses a stack (reverse Polish notation) to store numbers and results 68 \f[B]ibase\f[R] when parsing numbers. 88 \f[B]ibase\f[R] when parsing numbers. 184 Disables line length checking and prints numbers without backslashes and 266 Makes dc(1) print all numbers greater than \f[B]\-1\f[R] and less than 317 \f[B]NUMBERS\f[R] section) or a command (see the \f[B]COMMANDS\f[R] 322 determines how to interpret constant numbers. 324 input numbers. 334 numbers. 360 is guaranteed to produce the same sequence of pseudo\-random numbers [all...] |
H A D | A.1 | 49 It uses a stack (reverse Polish notation) to store numbers and results 68 \f[B]ibase\f[R] when parsing numbers. 88 \f[B]ibase\f[R] when parsing numbers. 184 Disables line length checking and prints numbers without backslashes and 266 Makes dc(1) print all numbers greater than \f[B]\-1\f[R] and less than 317 \f[B]NUMBERS\f[R] section) or a command (see the \f[B]COMMANDS\f[R] 322 determines how to interpret constant numbers. 324 input numbers. 334 numbers. 360 is guaranteed to produce the same sequence of pseudo\-random numbers [all...] |
H A D | N.1 | 49 It uses a stack (reverse Polish notation) to store numbers and results 68 \f[B]ibase\f[R] when parsing numbers. 88 \f[B]ibase\f[R] when parsing numbers. 184 Disables line length checking and prints numbers without backslashes and 266 Makes dc(1) print all numbers greater than \f[B]\-1\f[R] and less than 317 \f[B]NUMBERS\f[R] section) or a command (see the \f[B]COMMANDS\f[R] 322 determines how to interpret constant numbers. 324 input numbers. 334 numbers. 360 is guaranteed to produce the same sequence of pseudo\-random numbers [all...] |