| /freebsd-12.1/contrib/libc++/include/ |
| H A D | compare | 88 static const weak_equality equivalent; 147 static const strong_equality equivalent; 228 static const partial_ordering equivalent; 337 static const weak_ordering equivalent; 343 return __value_ == 0 ? weak_equality::equivalent 451 static const strong_ordering equivalent; 644 return weak_equality::equivalent; 646 return strong_equality::equivalent; 648 return partial_ordering::equivalent; 650 return weak_ordering::equivalent; [all …]
|
| H A D | system_error | 31 virtual bool equivalent(int code, const error_condition& condition) const noexcept; 32 virtual bool equivalent(const error_code& code, int condition) const noexcept; 216 virtual bool equivalent(int __code, const error_condition& __condition) const _NOEXCEPT; 217 virtual bool equivalent(const error_code& __code, int __condition) const _NOEXCEPT; 400 return __x.category().equivalent(__x.value(), __y) 401 || __y.category().equivalent(__x, __y.value());
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Tooling/ |
| H A D | FileMatchTrie.cpp | 30 bool equivalent(StringRef FileA, StringRef FileB) const override { in equivalent() function 31 return FileA == FileB || llvm::sys::fs::equivalent(FileA, FileB); in equivalent() 110 if (Comparator.equivalent(StringRef(Path), FileName)) in findEquivalent() 129 if (Comparator.equivalent(Child, FileName)) { in findEquivalent()
|
| /freebsd-12.1/contrib/llvm/include/llvm/Target/GlobalISel/ |
| H A D | SelectionDAGCompat.td | 20 // Declare that a generic Instruction is 'equivalent' to an SDNode, that is, 46 // G_INTTOPTR - SelectionDAG has no equivalent. 47 // G_PTRTOINT - SelectionDAG has no equivalent. 94 // Broadly speaking G_LOAD is equivalent to ISD::LOAD but there are some 106 // Broadly speaking G_STORE is equivalent to ISD::STORE but there are some
|
| /freebsd-12.1/contrib/libarchive/cat/ |
| H A D | cmdline.c | 63 int equivalent; /* Equivalent short option. */ member 279 return (match->equivalent); in bsdcat_getopt()
|
| /freebsd-12.1/contrib/llvm/lib/Target/Mips/ |
| H A D | MSA.txt | 7 (semantically equivalent) instructions to be used in place of the requested 53 copy_u.w. This is semantically equivalent since the general-purpose 57 These two operations are equivalent to each other with the operands
|
| /freebsd-12.1/gnu/usr.bin/grep/ |
| H A D | NEWS | 53 equivalent to [abcd]; it might be equivalent to [aBbCcDd], for 67 New option -m; equivalent to --max-count. 86 (equivalent to the -a or --text option). 88 - New option -I; equivalent to --binary-files='without-match'. 92 - egrep is now equivalent to `grep -E' as required by POSIX,
|
| /freebsd-12.1/crypto/openssl/doc/man3/ |
| H A D | BIO_read.pod | 63 (such as select(), poll() or equivalent) to determine when data is available 64 and then call read() to read the data. The equivalent with BIOs (that is call 68 I/O structure and may block as a result. Instead select() (or equivalent)
|
| H A D | OPENSSL_secure_malloc.pod | 65 If CRYPTO_secure_malloc_init() is not called, this is equivalent to 77 If CRYPTO_secure_malloc_init() is not called, this is equivalent to 86 If CRYPTO_secure_malloc_init() is not called, this is equivalent to
|
| H A D | RAND_egd.pod | 26 RAND_egd() is equivalent to RAND_egd_bytes() with B<num> set to 255. 30 If B<buf> is B<NULL>, it is equivalent to RAND_egd_bytes().
|
| H A D | EVP_PKEY_set1_RSA.pod | 77 use the OIDs corresponding to the NIDs B<NID_rsaEncryption> (equivalent to 78 B<EVP_PKEY_RSA>) or B<NID_rsa> (equivalent to B<EVP_PKEY_RSA2>). The use of 112 is no longer possible: the equivalent is EVP_PKEY_base_id(pkey).
|
| H A D | RAND_add.pod | 58 RAND_seed() is equivalent to RAND_add() with B<randomness> set to B<num>. 69 RAND_event() and RAND_screen() are equivalent to RAND_poll() and exist
|
| H A D | ASN1_TYPE_get.pod | 25 such as a SEQUENCE: it is effectively equivalent to the ASN.1 ANY type. 63 ASN1_TYPE_cmp() may not return zero if two types are equivalent but have
|
| H A D | DSA_new.pod | 17 DSA_new() allocates and initializes a B<DSA> structure. It is equivalent to
|
| H A D | RSA_new.pod | 17 RSA_new() allocates and initializes an B<RSA> structure. It is equivalent to
|
| /freebsd-12.1/contrib/libarchive/cpio/ |
| H A D | cmdline.c | 62 int equivalent; /* Equivalent short option. */ member 274 return (match->equivalent); in cpio_getopt()
|
| /freebsd-12.1/contrib/libarchive/tar/ |
| H A D | cmdline.c | 64 int equivalent; /* Equivalent short option. */ member 411 return (match->equivalent); in bsdtar_getopt()
|
| /freebsd-12.1/contrib/libc++/src/ |
| H A D | system_error.cpp | 48 error_category::equivalent(int code, const error_condition& condition) const _NOEXCEPT in equivalent() function in error_category 54 error_category::equivalent(const error_code& code, int condition) const _NOEXCEPT in equivalent() function in error_category
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Tooling/ |
| H A D | FileMatchTrie.h | 30 virtual bool equivalent(StringRef FileA, StringRef FileB) const = 0;
|
| /freebsd-12.1/contrib/llvm/lib/Target/SystemZ/ |
| H A D | SystemZPatterns.td | 70 // Record that it is equivalent to using OPERATOR to store a GR64. 77 // 32 bits of a GPR to memory. Record that they are equivalent to using 86 // Record that it is equivalent to using OPERATOR to store a GR64. 98 // condition is false. Record that they are equivalent to a LOAD/select/STORE
|
| /freebsd-12.1/contrib/llvm/include/llvm/Support/ |
| H A D | FileSystem.h | 248 friend bool equivalent(file_status A, file_status B); 496 bool equivalent(file_status A, file_status B); 508 std::error_code equivalent(const Twine &A, const Twine &B, bool &result); 512 inline bool equivalent(const Twine &A, const Twine &B) { in equivalent() function 514 return !equivalent(A, B, result) && result; in equivalent()
|
| /freebsd-12.1/contrib/llvm/lib/Support/ |
| H A D | Process.cpp | 53 if (any_of(IgnoreList, [&](StringRef S) { return fs::equivalent(S, Dir); })) in FindInEnvPath()
|
| /freebsd-12.1/contrib/binutils/gas/doc/ |
| H A D | c-sparc.texi | 77 equivalent to -Av8plus and -Av8plusa, respectively. 152 ie. if assembling with -32 it is equivalent to @code{.word}, if assembling 153 with -64 it is equivalent to @code{.xword}.
|
| /freebsd-12.1/sys/gnu/dts/arm/ |
| H A D | s5pv210-smdkc110.dts | 13 * available in Linux 3.15 and intends to provide equivalent level of hardware
|
| /freebsd-12.1/lib/libsecureboot/ |
| H A D | Makefile.libsa.inc | 8 # loader puts the equivalent of TPM's PCR register into kenv
|