/freebsd/contrib/llvm-project/libcxx/include/__type_traits/ |
H A D | conjunction.h | 36 // be instantiated) since it is an alias, unlike `conjunction<_Pred...>`, which is a struct. 50 struct conjunction : true_type {}; struct 53 struct conjunction<_Arg> : _Arg {}; 56 struct conjunction<_Arg, _Args...> : conditional_t<!bool(_Arg::value), _Arg, conjunction<_Args...>>… 59 inline constexpr bool conjunction_v = conjunction<_Args...>::value;
|
/freebsd/lib/libpmc/pmu-events/arch/x86/tremontx/ |
H A D | uncore-memory.json | 190 … both the average occupancy (in conjunction with the number of cycles not empty) and the average l… 200 … both the average occupancy (in conjunction with the number of cycles not empty) and the average l… 210 …e. This can then be used to calculate the average queuing latency (in conjunction with the WPQ oc… 221 …e. This can then be used to calculate the average queuing latency (in conjunction with the WPQ oc… 232 …the average queue occupancy (in conjunction with the number of cycles not empty) and the average l… 242 …the average queue occupancy (in conjunction with the number of cycles not empty) and the average l…
|
/freebsd/contrib/netcat/ |
H A D | nc.1 | 133 This is useful in conjunction with 170 It is an error to use this option in conjunction with the 214 It is an error to use this option in conjunction with the 229 It is an error to use this option in conjunction with the 331 It is an error to use this option in conjunction with the 543 in conjunction with a traffic sniffer either on the target machine
|
/freebsd/usr.sbin/certctl/ |
H A D | certctl.8 | 61 This option is only valid in conjunction with the 77 This option is only valid in conjunction with the 89 This option is only valid in conjunction with the
|
/freebsd/usr.sbin/valectl/ |
H A D | valectl.8 | 115 When used in conjunction with 130 When used in conjunction with 142 Used in conjunction with
|
/freebsd/lib/libpmc/pmu-events/arch/x86/skylakex/ |
H A D | uncore-memory.json | 152 …ccupancy of the queue (in conjunction with the number of cycles not empty) and the average latency… 170 …the average queue occupancy (in conjunction with the number of cycles not empty) and the average l…
|
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/ |
H A D | tst.UnDefineNameWithCPP.d.ksh | 33 # The -D option can be used to define a name when used in conjunction 35 # conjunction with the -C option.
|
/freebsd/usr.bin/finger/ |
H A D | finger.1 | 79 When used in conjunction with the 84 When used in conjunction with the 92 of the remote host when used in conjunction with the
|
/freebsd/sys/contrib/dev/ipw/ |
H A D | LICENSE | 23 LICENSE. This Software is licensed for use only in conjunction with Intel 24 component products. Use of the Software in conjunction with non-Intel component 147 1. This Software is licensed for use only in conjunction with Intel component 148 products. Use of the Software in conjunction with non-Intel component
|
HD | ipw2100-1.3-i.fw.uu | 24 * LICENSE. This Software is licensed for use only in conjunction with Intel 25 * component products. Use of the Software in conjunction with non-Intel component 148 * 1. This Software is licensed for use only in conjunction with Intel component 149 * products. Use of the Software in conjunction with non-Intel component
|
HD | ipw2100-1.3.fw.uu | 24 * LICENSE. This Software is licensed for use only in conjunction with Intel 25 * component products. Use of the Software in conjunction with non-Intel component 148 * 1. This Software is licensed for use only in conjunction with Intel component 149 * products. Use of the Software in conjunction with non-Intel component
|
HD | ipw2100-1.3-p.fw.uu | 24 * LICENSE. This Software is licensed for use only in conjunction with Intel 25 * component products. Use of the Software in conjunction with non-Intel component 148 * 1. This Software is licensed for use only in conjunction with Intel component 149 * products. Use of the Software in conjunction with non-Intel component
|
/freebsd/sys/contrib/dev/iwi/ |
HD | ipw2200-bss.fw.uu | 23 LICENSE. This Software is licensed for use only in conjunction with Intel 24 component products. Use of the Software in conjunction with non-Intel component 150 1. This Software is licensed for use only in conjunction with Intel component 151 products. Use of the Software in conjunction with non-Intel component
|
HD | ipw2200-ibss.fw.uu | 23 LICENSE. This Software is licensed for use only in conjunction with Intel 24 component products. Use of the Software in conjunction with non-Intel component 150 1. This Software is licensed for use only in conjunction with Intel component 151 products. Use of the Software in conjunction with non-Intel component
|
H A D | LICENSE | 23 LICENSE. This Software is licensed for use only in conjunction with Intel 24 component products. Use of the Software in conjunction with non-Intel component 150 1. This Software is licensed for use only in conjunction with Intel component 151 products. Use of the Software in conjunction with non-Intel component
|
HD | ipw2200-sniffer.fw.uu | 23 LICENSE. This Software is licensed for use only in conjunction with Intel 24 component products. Use of the Software in conjunction with non-Intel component 150 1. This Software is licensed for use only in conjunction with Intel component 151 products. Use of the Software in conjunction with non-Intel component
|
/freebsd/sys/contrib/openzfs/man/man8/ |
H A D | zfs-create.8 | 94 This is useful in conjunction with the 158 If this option is specified in conjunction with 195 This is useful in conjunction with the
|
H A D | zfs-redact.8 | 136 flags are used in conjunction with the 214 option is not supplied in conjunction with 279 This is useful in conjunction with the 304 This flag can only be used in conjunction with 372 option is not supplied in conjunction with 443 This is useful in conjunction with the
|
H A D | zfs-send.8 | 136 flags are used in conjunction with the 214 option is not supplied in conjunction with 279 This is useful in conjunction with the 304 This flag can only be used in conjunction with 372 option is not supplied in conjunction with 443 This is useful in conjunction with the
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaConcept.cpp | 215 // A conjunction is a constraint taking two operands. To determine if in calculateConstraintSatisfaction() 216 // a conjunction is satisfied, the satisfaction of the first operand in calculateConstraintSatisfaction() 217 // is checked. If that is not satisfied, the conjunction is not in calculateConstraintSatisfaction() 218 // satisfied. Otherwise, the conjunction is satisfied if and only if in calculateConstraintSatisfaction() 257 bool Conjunction = FE->getOperator() == BinaryOperatorKind::BO_LAnd; in calculateConstraintSatisfaction() local 267 // If the first clause of a conjunction is not satisfied, in calculateConstraintSatisfaction() 271 if (Conjunction != Satisfaction.IsSatisfied) in calculateConstraintSatisfaction() 285 if (!Conjunction && IsRHSSatisfied) { in calculateConstraintSatisfaction() 298 if (Conjunction != IsRHSSatisfied) in calculateConstraintSatisfaction() 318 Satisfaction.IsSatisfied = Conjunction; in calculateConstraintSatisfaction() [all …]
|
/freebsd/crypto/openssl/doc/man7/ |
H A D | fips_module.pod | 13 This guide details different ways that OpenSSL can be used in conjunction 112 may be required. It is designed to be used in conjunction with the FIPS module. 222 provider - specifically non cryptographic ones which may be used in conjunction 280 are allowed to be used in conjunction with the FIPS algorithms. 412 it is still possible to use them in conjunction with the FIPS module, and 419 Writing an application that uses libssl in conjunction with the FIPS module is
|
/freebsd/secure/lib/libcrypto/man/man7/ |
H A D | fips_module.7 | 70 This guide details different ways that OpenSSL can be used in conjunction 164 may be required. It is designed to be used in conjunction with the FIPS module. 264 provider \- specifically non cryptographic ones which may be used in conjunction 327 are allowed to be used in conjunction with the FIPS algorithms. 461 it is still possible to use them in conjunction with the FIPS module, and 467 Writing an application that uses libssl in conjunction with the FIPS module is
|
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/ |
H A D | execution_impl.h |
|
/freebsd/share/man/man9/ |
H A D | condvar.9 | 79 Condition variables are used in conjunction with mutexes to wait for conditions 168 in conjunction with
|
/freebsd/lib/libpmc/pmu-events/arch/x86/cascadelakex/ |
H A D | uncore-memory.json | 309 …ccupancy of the queue (in conjunction with the number of cycles not empty) and the average latency… 357 …the average queue occupancy (in conjunction with the number of cycles not empty) and the average l…
|