| /freebsd/crypto/openssl/util/ |
| H A D | indent.pro | 36 -T ACCESS_DESCRIPTION 37 -T ADDED_OBJ 38 -T AES_KEY 39 -T ARGS 40 -T ASIdOrRange 41 -T ASIdOrRanges 42 -T ASIdentifierChoice 43 -T ASIdentifiers 44 -T ASN1_ADB 45 -T ASN1_ADB_TABLE [all …]
|
| /freebsd/crypto/openssl/crypto/sha/asm/ |
| H A D | keccak1600-avx2.pl | 125 my @T = map("%ymm$_",(7..15)); 126 my ($C14,$C00,$D00,$D14) = @T[5..8]; 145 vpxor $A11,$A21,@T[2] 147 vpxor @T[2],$C14,$C14 # C[1..4] 149 vpermq \$0b10010011,$C14,@T[4] 151 vpermq \$0b01001110,$C00,@T[0] 153 vpsrlq \$63,$C14,@T[1] 154 vpaddq $C14,$C14,@T[2] 155 vpor @T[2],@T[1],@T[1] # ROL64(C[1..4],1) 157 vpermq \$0b00111001,@T[1],$D14 [all …]
|
| H A D | keccak1600-avx512vl.pl | 54 my @T = map("%ymm$_",(7..15)); 55 my ($C14,$C00,$D00,$D14) = @T[5..8]; 73 vpxor $A11,$A21,@T[2] 74 vpternlogq \$0x96,$A01,$T[2],$C14 # C[1..4] 77 vpermq \$0b01001110,$C00,@T[0] 79 vpermq \$0b10010011,$C14,@T[4] 80 vprolq \$1,$C14,@T[1] # ROL64(C[1..4],1) 82 vpermq \$0b00111001,@T[1],$D14 83 vpxor @T[4],@T[1],$D00 86 vpternlogq \$0x96,@T[0],$A00,$C00 # C[0..0] [all …]
|
| /freebsd/contrib/nvi/common/ |
| H A D | encoding.c | 16 #define T 1 /* character appears in plain ASCII text */ macro 22 F, F, F, F, F, F, F, T, T, T, T, F, T, T, F, F, /* 0x0X */ 24 F, F, F, F, F, F, F, F, F, F, F, T, F, F, F, F, /* 0x1X */ 25 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, /* 0x2X */ 26 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, /* 0x3X */ 27 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, /* 0x4X */ 28 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, /* 0x5X */ 29 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, /* 0x6X */ 30 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, F, /* 0x7X */ 32 X, X, X, X, X, T, X, X, X, X, X, X, X, X, X, X, /* 0x8X */ [all …]
|
| /freebsd/contrib/atf/atf-c++/detail/ |
| H A D | auto_array.hpp | 37 template< class T > 39 T* m_ptr; 41 explicit auto_array_ref(T*); 44 template< class T > 45 auto_array_ref< T >::auto_array_ref(T* ptr) : in auto_array_ref() 50 template< class T > 52 T* m_ptr; 55 auto_array(T* = NULL) throw(); 56 auto_array(auto_array< T >&) throw(); 57 auto_array(auto_array_ref< T >) throw(); [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | ArrayRef.h | 27 template<typename T> class [[nodiscard]] MutableArrayRef; 40 template<typename T> 43 using value_type = T; 57 const T *Data = nullptr; 74 /*implicit*/ ArrayRef(const T &OneElt LLVM_LIFETIME_BOUND) in ArrayRef() 78 constexpr /*implicit*/ ArrayRef(const T *data LLVM_LIFETIME_BOUND, in ArrayRef() 83 constexpr ArrayRef(const T *begin LLVM_LIFETIME_BOUND, const T *end) in ArrayRef() 96 const T *const *>, 104 /*implicit*/ constexpr ArrayRef(const T (&Arr LLVM_LIFETIME_BOUND)[N]) in ArrayRef() 116 std::initializer_list<T> Vec LLVM_LIFETIME_BOUND) in ArrayRef() [all …]
|
| /freebsd/crypto/openssl/crypto/camellia/asm/ |
| H A D | cmll-x86.pl | 56 @T=("eax","ebx","ecx","edx"); 91 my $t0=@T[($j)%4],$t1=@T[($j+1)%4],$t2=@T[($j+2)%4],$t3=@T[($j+3)%4]; 158 &mov (@T[0],&DWP(0,$idx)); # load plaintext 159 &mov (@T[1],&DWP(4,$idx)); 160 &mov (@T[2],&DWP(8,$idx)); 161 &bswap (@T[0]); 162 &mov (@T[3],&DWP(12,$idx)); 163 &bswap (@T[1]); 164 &bswap (@T[2]); 165 &bswap (@T[3]); [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | TemplateArgumentHasher.cpp | 54 void AddType(const Type *T); 55 void AddQualType(QualType T); 207 void TemplateArgumentHasher::AddQualType(QualType T) { in AddQualType() argument 208 if (T.isNull()) { in AddQualType() 212 SplitQualType split = T.split(); in AddQualType() 236 void AddQualType(QualType T) { Hash.AddQualType(T); } in AddQualType() argument 238 void AddType(const Type *T) { in AddType() argument 239 if (T) in AddType() 240 Hash.AddType(T); in AddType() 249 void Visit(const Type *T) { Inherited::Visit(T); } in Visit() argument [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Headers/hlsl/ |
| H A D | hlsl_intrinsic_helpers.h | 26 template <typename T> constexpr T length_impl(T X) { return abs(X); } in length_impl() 28 template <typename T, int N> 29 constexpr enable_if_t<is_same<float, T>::value || is_same<half, T>::value, T> 30 length_vec_impl(vector<T, N> X) { in length_vec_impl() argument 38 template <typename T> 39 constexpr vector<T, 4> dst_impl(vector<T, 4> Src0, vector<T, 4> Src1) { in dst_impl() argument 43 template <typename T> constexpr T distance_impl(T X, T Y) { in distance_impl() 47 template <typename T, int N> 48 constexpr enable_if_t<is_same<float, T>::value || is_same<half, T>::value, T> 49 distance_vec_impl(vector<T, N> X, vector<T, N> Y) { in distance_vec_impl() argument [all …]
|
| H A D | hlsl_intrinsics.h | 24 template <typename T, int N> 25 constexpr vector<float, N> asfloat(vector<T, N> V) { in asfloat() argument 26 return __detail::bit_cast<float, T, N>(V); in asfloat() 29 template <typename T> constexpr float asfloat(T F) { in asfloat() 30 return __detail::bit_cast<float, T>(F); in asfloat() 41 template <typename T, int N> constexpr vector<int, N> asint(vector<T, N> V) { in asint() argument 42 return __detail::bit_cast<int, T, N>(V); in asint() 45 template <typename T> constexpr int asint(T F) { in asint() 46 return __detail::bit_cast<int, T>(F); in asint() 59 template <typename T, int N> [all …]
|
| /freebsd/contrib/llvm-project/libc/src/__support/ |
| H A D | math_extras.h | 23 template <typename T, size_t count> 24 LIBC_INLINE constexpr cpp::enable_if_t<cpp::is_unsigned_v<T>, T> 26 constexpr unsigned T_BITS = CHAR_BIT * sizeof(T); in mask_trailing_ones() 28 return count == 0 ? 0 : (T(-1) >> (T_BITS - count)); in mask_trailing_ones() 33 template <typename T, size_t count> 34 LIBC_INLINE constexpr cpp::enable_if_t<cpp::is_unsigned_v<T>, T> 36 return T(~mask_trailing_ones<T, CHAR_BIT * sizeof(T) - count>()); in mask_leading_ones() 41 template <typename T, size_t count> 42 LIBC_INLINE constexpr cpp::enable_if_t<cpp::is_unsigned_v<T>, T> 44 return mask_leading_ones<T, CHAR_BIT * sizeof(T) - count>(); in mask_trailing_zeros() [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | CustomizableOptional.h | 28 template <typename T> class CustomizableOptional { 29 optional_detail::OptionalStorage<T> Storage; 32 using value_type = T; 37 constexpr CustomizableOptional(const T &y) : Storage(std::in_place, y) {} in CustomizableOptional() 40 constexpr CustomizableOptional(T &&y) in CustomizableOptional() 49 constexpr CustomizableOptional(const std::optional<T> &y) in CustomizableOptional() 51 constexpr CustomizableOptional(std::optional<T> &&y) in CustomizableOptional() 54 CustomizableOptional &operator=(T &&y) { 65 CustomizableOptional &operator=(const T &y) { 74 constexpr const T *getPointer() const { return &Storage.value(); } in getPointer() [all …]
|
| /freebsd/contrib/llvm-project/libc/src/__support/FPUtil/ |
| H A D | NearestIntegerOperations.h | 24 template <typename T, cpp::enable_if_t<cpp::is_floating_point_v<T>, int> = 0> 25 LIBC_INLINE T trunc(T x) { in trunc() 26 using StorageType = typename FPBits<T>::StorageType; in trunc() 27 FPBits<T> bits(x); in trunc() 40 if (exponent >= static_cast<int>(FPBits<T>::FRACTION_LEN)) in trunc() 45 return FPBits<T>::zero(bits.sign()).get_val(); in trunc() 47 int trim_size = FPBits<T>::FRACTION_LEN - exponent; in trunc() 54 template <typename T, cpp::enable_if_t<cpp::is_floating_point_v<T>, int> = 0> 55 LIBC_INLINE T ceil(T x) { in ceil() 56 using StorageType = typename FPBits<T>::StorageType; in ceil() [all …]
|
| H A D | BasicOperations.h | 28 template <typename T, cpp::enable_if_t<cpp::is_floating_point_v<T>, int> = 0> 29 LIBC_INLINE T abs(T x) { in abs() 30 return FPBits<T>(x).abs().get_val(); in abs() 35 template <typename T> 36 LIBC_INLINE cpp::enable_if_t<cpp::is_floating_point_v<T>, T> max(T x, T y) { in max() 37 FPBits<T> x_bits(x); in max() 38 FPBits<T> y_bits(y); in max() 75 template <typename T> 76 LIBC_INLINE cpp::enable_if_t<cpp::is_floating_point_v<T>, T> min(T x, T y) { in min() 77 FPBits<T> x_bits(x); in min() [all …]
|
| H A D | ManipulationFunctions.h | 31 template <typename T, cpp::enable_if_t<cpp::is_floating_point_v<T>, int> = 0> 32 LIBC_INLINE constexpr T frexp(T x, int &exp) { in frexp() 33 FPBits<T> bits(x); in frexp() 49 NormalFloat<T> normal(bits); in frexp() 55 template <typename T, cpp::enable_if_t<cpp::is_floating_point_v<T>, int> = 0> 56 LIBC_INLINE T modf(T x, T &iptr) { in modf() 57 FPBits<T> bits(x); in modf() 63 return FPBits<T>::zero(bits.sign()).get_val(); in modf() 69 return FPBits<T>::zero(bits.sign()).get_val(); in modf() 76 template <typename T, cpp::enable_if_t<cpp::is_floating_point_v<T>, int> = 0> [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | type_traits | 20 template <class T, T v> struct integral_constant; 30 template <bool, class T = void> struct enable_if; 31 template <bool, class T, class F> struct conditional; 34 template <class T> struct is_void; 35 template <class T> struct is_null_pointer; // C++14 36 template <class T> struct is_integral; 37 template <class T> struct is_floating_point; 38 template <class T> struct is_array; 39 template <class T> struct is_pointer; 40 template <class T> struct is_lvalue_reference; [all …]
|
| H A D | atomic | 45 template <class T> T kill_dependency(T y) noexcept; 61 template <class T> 64 using value_type = T; 71 constexpr atomic() noexcept(is_nothrow_default_constructible_v<T>); // since C++20 72 constexpr atomic(T desr) noexcept; 77 T load(memory_order m = memory_order_seq_cst) const volatile noexcept; 78 T load(memory_order m = memory_order_seq_cst) const noexcept; 79 operator T() const volatile noexcept; 80 operator T() const noexcept; 81 void store(T desr, memory_order m = memory_order_seq_cst) volatile noexcept; [all …]
|
| /freebsd/contrib/llvm-project/compiler-rt/include/fuzzer/ |
| H A D | FuzzedDataProvider.h | 47 template <typename T> std::vector<T> ConsumeBytes(size_t num_bytes); 48 template <typename T> 49 std::vector<T> ConsumeBytesWithTerminator(size_t num_bytes, T terminator = 0); 50 template <typename T> std::vector<T> ConsumeRemainingBytes(); 60 template <typename T> T ConsumeIntegral(); 61 template <typename T> T ConsumeIntegralInRange(T min, T max); 64 template <typename T> T ConsumeFloatingPoint(); 65 template <typename T> T ConsumeFloatingPointInRange(T min, T max); 68 template <typename T> T ConsumeProbability(); 73 template <typename T> T ConsumeEnum(); [all …]
|
| /freebsd/contrib/expat/xmlwf/ |
| H A D | xmlwf.c | 94 #define NSSEP T('\001') 101 case T('&'): in characterData() 102 fputts(T("&"), fp); in characterData() 104 case T('<'): in characterData() 105 fputts(T("<"), fp); in characterData() 107 case T('>'): in characterData() 108 fputts(T(">"), fp); in characterData() 112 fputts(T("
"), fp); in characterData() 115 case T('"'): in characterData() 116 fputts(T("""), fp); in characterData() [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | type_traits | 20 template <class T, T v> struct integral_constant; 28 template <bool, class T = void> struct enable_if; 29 template <bool, class T, class F> struct conditional; 32 template <class T> struct is_void; 33 template <class T> struct is_null_pointer; // since C++14 34 template <class T> struct is_integral; 35 template <class T> struct is_floating_point; 36 template <class T> struct is_array; 37 template <class T> struct is_pointer; 38 template <class T> struct is_lvalue_reference; [all …]
|
| H A D | atomic | 45 template <class T> T kill_dependency(T y) noexcept; 61 template <class T> 64 using value_type = T; 71 constexpr atomic() noexcept(is_nothrow_default_constructible_v<T>); // since C++20 72 constexpr atomic(T desr) noexcept; 77 T load(memory_order m = memory_order_seq_cst) const volatile noexcept; 78 T load(memory_order m = memory_order_seq_cst) const noexcept; 79 operator T() const volatile noexcept; 80 operator T() const noexcept; 81 void store(T desr, memory_order m = memory_order_seq_cst) volatile noexcept; [all …]
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | list.h | 31 template <class T, bool LinkWithPtr = isPointer<decltype(T::Next)>::value> 35 LinkOp(UNUSED T *BaseT, UNUSED uptr BaseSize) {} in LinkOp() 36 void init(UNUSED T *LinkBase, UNUSED uptr Size) {} in init() 37 T *getBase() const { return nullptr; } in getBase() 40 T *getNext(T *X) const { return X->Next; } in getNext() 41 void setNext(T *X, T *Next) const { X->Next = Next; } in setNext() 43 T *getPrev(T *X) const { return X->Prev; } in getPrev() 44 void setPrev(T *X, T *Prev) const { X->Prev = Prev; } in setPrev() 46 T *getEndOfListVal() const { return nullptr; } in getEndOfListVal() 49 template <class T> class LinkOp<T, /*LinkWithPtr=*/false> { [all …]
|
| /freebsd/contrib/netbsd-tests/bin/df/ |
| H A D | t_df.sh | 95 filer:/ 1.1T 132M 1.1T 0% /filer 96 filer:/ 1.1T 0B 1.1T 0% /filer 97 filer:/ 1.1T 229G 918G 20% /filer 98 filer:/ 1.1T 688G 459G 60% /filer 99 filer:/ 1.1T 1.1T 57G 95% /filer 100 filer:/ 1.1T 1.1T 0B 100% /filer 101 filer:/ 1.1T 0B 1.1T 0% /filer 102 filer:/ 1.1T 229G 860G 21% /filer 103 filer:/ 1.1T 688G 401G 63% /filer 104 filer:/ 1.1T 1.1T 0B 100% /filer [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | TypePrinter.cpp | 124 void print(QualType T, raw_ostream &OS, StringRef PlaceHolder); 126 static bool canPrefixQualifiers(const Type *T, bool &NeedARCStrongQualifier); 129 void printTemplateId(const TemplateSpecializationType *T, raw_ostream &OS, 132 void printBefore(QualType T, raw_ostream &OS); 133 void printAfter(QualType T, raw_ostream &OS); 136 void printTag(TagDecl *T, raw_ostream &OS); 140 void print##CLASS##Before(const CLASS##Type *T, raw_ostream &OS); \ 141 void print##CLASS##After(const CLASS##Type *T, raw_ostream &OS); 190 void TypePrinter::print(const Type *T, Qualifiers Quals, raw_ostream &OS, in print() argument 192 if (!T) { in print() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/ |
| H A D | InterpStack.h | 36 template <typename T, typename... Tys> void push(Tys &&...Args) { in push() 37 new (grow(aligned_size<T>())) T(std::forward<Tys>(Args)...); in push() 39 ItemTypes.push_back(toPrimType<T>()); in push() 44 template <typename T> T pop() { in pop() 47 assert(ItemTypes.back() == toPrimType<T>()); in pop() 50 T *Ptr = &peekInternal<T>(); in pop() 51 T Value = std::move(*Ptr); in pop() 52 shrink(aligned_size<T>()); in pop() 57 template <typename T> void discard() { in discard() 60 assert(ItemTypes.back() == toPrimType<T>()); in discard() [all …]
|