| /openbsd-src/gnu/llvm/libcxx/include/__compare/ |
| H A D | ordering.h | 68 static const partial_ordering equivalent; variable 135 inline constexpr partial_ordering partial_ordering::equivalent(_OrdResult::__equiv); 147 static const weak_ordering equivalent; variable 152 return __value_ == 0 ? partial_ordering::equivalent in partial_ordering() 220 inline constexpr weak_ordering weak_ordering::equivalent(_OrdResult::__equiv); 232 static const strong_ordering equivalent; variable 238 return __value_ == 0 ? partial_ordering::equivalent in partial_ordering() 244 return __value_ == 0 ? weak_ordering::equivalent in weak_ordering() 313 inline constexpr strong_ordering strong_ordering::equivalent(_OrdResult::__equiv);
|
| H A D | common_comparison_category.h | 72 return partial_ordering::equivalent; in __get_comp_type() 74 return weak_ordering::equivalent; in __get_comp_type() 76 return strong_ordering::equivalent; in __get_comp_type()
|
| H A D | compare_weak_order_fallback.h | 43 …oexcept(noexcept(_VSTD::forward<_Tp>(__t) == _VSTD::forward<_Up>(__u) ? weak_ordering::equivalent : 46 …> decltype( _VSTD::forward<_Tp>(__t) == _VSTD::forward<_Up>(__u) ? weak_ordering::equivalent : 50 …eturn _VSTD::forward<_Tp>(__t) == _VSTD::forward<_Up>(__u) ? weak_ordering::equivalent :
|
| H A D | compare_partial_order_fallback.h | 43 …cept(noexcept(_VSTD::forward<_Tp>(__t) == _VSTD::forward<_Up>(__u) ? partial_ordering::equivalent : 47 …ecltype( _VSTD::forward<_Tp>(__t) == _VSTD::forward<_Up>(__u) ? partial_ordering::equivalent : 52 …rn _VSTD::forward<_Tp>(__t) == _VSTD::forward<_Up>(__u) ? partial_ordering::equivalent :
|
| H A D | weak_order.h | 50 } else if (__po == partial_ordering::equivalent) { in __go() 51 return weak_ordering::equivalent; in __go()
|
| H A D | synth_three_way.h | 40 return weak_ordering::equivalent;
|
| /openbsd-src/gnu/llvm/llvm/docs/CommandGuide/ |
| H A D | llvm-cxxmap.rst | 15 based on a file describing name components that should be considered equivalent. 19 of pairs of equivalent symbols, one per line, of the form 37 to determine whether two symbols are equivalent. Required. 47 Produce a warning if there are multiple equivalent (but distinct) symbols in 53 equivalent symbol in *symbol-file-2*. 86 should be treated as equivalent, the following remapping file could be used: 90 # absl::string_view is considered equivalent to std::string_view
|
| /openbsd-src/gnu/llvm/clang/lib/Tooling/ |
| H A D | FileMatchTrie.cpp | 29 bool equivalent(StringRef FileA, StringRef FileB) const override { in equivalent() function 30 return FileA == FileB || llvm::sys::fs::equivalent(FileA, FileB); in equivalent() 114 Comparator.equivalent(StringRef(Path), FileName)) in findEquivalent() 140 if (Comparator.equivalent(Child, FileName)) { in findEquivalent()
|
| /openbsd-src/gnu/llvm/clang/docs/ |
| H A D | ObjectiveCLiterals.rst | 47 NSNumber *theLetterZ = @'Z'; // equivalent to [NSNumber numberWithChar:'Z'] 50 NSNumber *fortyTwo = @42; // equivalent to [NSNumber numberWithInt:42] 51 NSNumber *fortyTwoUnsigned = @42U; // equivalent to [NSNumber numberWithUnsignedInt:42U] 52 NSNumber *fortyTwoLong = @42L; // equivalent to [NSNumber numberWithLong:42L] 53 NSNumber *fortyTwoLongLong = @42LL; // equivalent to [NSNumber numberWithLongLong:42LL] 56 NSNumber *piFloat = @3.141592654F; // equivalent to [NSNumber numberWithFloat:3.141592654F] 57 … NSNumber *piDouble = @3.1415926535; // equivalent to [NSNumber numberWithDouble:3.1415926535] 60 NSNumber *yesNumber = @YES; // equivalent to [NSNumber numberWithBool:YES] 61 NSNumber *noNumber = @NO; // equivalent to [NSNumber numberWithBool:NO] 64 NSNumber *trueNumber = @true; // equivalent to [NSNumber numberWithBool:(BOOL)true] [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Target/GlobalISel/ |
| H A D | SelectionDAGCompat.td | 19 // Declare that a generic Instruction is 'equivalent' to an SDNode, that is, 50 // G_INTTOPTR - SelectionDAG has no equivalent. 51 // G_PTRTOINT - SelectionDAG has no equivalent. 53 // timm must not be materialized and therefore has no GlobalISel equivalent 162 // Broadly speaking G_LOAD is equivalent to ISD::LOAD but there are some 179 // Broadly speaking G_STORE is equivalent to ISD::STORE but there are some
|
| /openbsd-src/usr.bin/lndir/ |
| H A D | lndir.c | 70 int equivalent(char *, char *); 138 equivalent(char *lname, char *rname) in equivalent() function 304 if (!equivalent(basesymlen >= 0 ? basesym : buf, in dodir()
|
| /openbsd-src/gnu/llvm/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
|
| /openbsd-src/gnu/llvm/libcxx/src/ |
| H A D | system_error.cpp | 50 error_category::equivalent(int code, const error_condition& condition) const noexcept in equivalent() function in error_category 56 error_category::equivalent(const error_code& code, int condition) const noexcept in equivalent() function in error_category
|
| /openbsd-src/gnu/llvm/libcxx/include/ |
| H A D | system_error | 30 virtual bool equivalent(int code, const error_condition& condition) const noexcept; 31 virtual bool equivalent(const error_code& code, int condition) const noexcept; 224 virtual bool equivalent(int __code, const error_condition& __condition) const _NOEXCEPT; 225 virtual bool equivalent(const error_code& __code, int __condition) const _NOEXCEPT; 420 return __x.category().equivalent(__x.value(), __y) 421 || __y.category().equivalent(__x, __y.value());
|
| H A D | compare | 68 static const partial_ordering equivalent; 92 static const weak_ordering equivalent; 119 static const strong_ordering equivalent;
|
| /openbsd-src/gnu/llvm/clang/include/clang/Tooling/ |
| H A D | FileMatchTrie.h | 29 virtual bool equivalent(StringRef FileA, StringRef FileB) const = 0;
|
| /openbsd-src/gnu/usr.bin/perl/ |
| H A D | Artistic | 58 an equivalent medium, or placing the modifications on a major archive 75 together with instructions (in the manual page or equivalent) on where 82 document the differences in manual pages (or equivalent), together 114 equivalent of input as in Paragraph 6, provided these subroutines do
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Math-BigInt/t/ |
| H A D | use_lib1.t | |
| H A D | use_lib6.t | |
| H A D | use_lib5.t | |
| H A D | use_lib2.t | |
| H A D | use_lib3.t | |
| /openbsd-src/gnu/usr.bin/binutils-2.17/config/ |
| H A D | stdint.m4 | 129 AC_MSG_CHECKING(for type equivalent to int8_t) 136 AC_MSG_CHECKING(for type equivalent to int16_t) 144 AC_MSG_CHECKING(for type equivalent to int32_t) 159 AC_MSG_CHECKING(for type equivalent to int64_t) 166 AC_MSG_CHECKING(for type equivalent to intptr_t) 171 *) AC_MSG_ERROR(no equivalent for intptr_t, please report a bug)
|
| /openbsd-src/gnu/gcc/config/ |
| H A D | stdint.m4 | 132 AC_MSG_CHECKING(for type equivalent to int8_t) 139 AC_MSG_CHECKING(for type equivalent to int16_t) 147 AC_MSG_CHECKING(for type equivalent to int32_t) 162 AC_MSG_CHECKING(for type equivalent to int64_t) 169 AC_MSG_CHECKING(for type equivalent to intptr_t) 174 *) AC_MSG_ERROR(no equivalent for intptr_t, please report a bug)
|
| /openbsd-src/regress/sbin/iked/live/ |
| H A D | crt.in | 6 encrypt_key = yes # "no" is equivalent to -nodes
|