/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 …]
|
H A D | keccak1600-avx512.pl | 125 my @T = map("%zmm$_",(5..12)); 131 my ($C00,$D00) = @T[0..1]; 147 vmovdqa64 $A00,@T[0] # put aside original A00 155 vpternlogq \$0x96,$A00,$D00,@T[0] # T[0] is original A00 162 vprolvq @Rhotate0[0],@T[0],$A00 # T[0] is original A00 176 vmovdqa64 $A00,@T[0] 177 vmovdqa64 $A10,@T[1] 181 vpternlogq \$0xD2,@T[0],$A40,$A30 182 vpternlogq \$0xD2,@T[1],@T[0],$A40 195 vpblendmq $A30,@T[1],@{T[1]}{$k00100} [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/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/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; 73 /*implicit*/ ArrayRef(const T &OneElt) in ArrayRef() 77 constexpr /*implicit*/ ArrayRef(const T *data, size_t length) in ArrayRef() 81 constexpr ArrayRef(const T *begin, const T *end) in ArrayRef() 90 /*implicit*/ ArrayRef(const SmallVectorTemplateCommon<T, U> &Vec) in ArrayRef() argument 96 /*implicit*/ ArrayRef(const std::vector<T, A> &Vec) in ArrayRef() argument 101 /*implicit*/ constexpr ArrayRef(const std::array<T, N> &Arr) in ArrayRef() argument [all …]
|
H A D | bit.h | 100 template <typename T, typename = std::enable_if_t<std::is_integral_v<T>>> in byteswap() 101 [[nodiscard]] constexpr T byteswap(T V) noexcept { in byteswap() 102 if constexpr (sizeof(T) == 1) { in byteswap() 104 } else if constexpr (sizeof(T) == 2) { in byteswap() 115 } else if constexpr (sizeof(T) == 4) { 128 } else if constexpr (sizeof(T) == 8) { in count() 140 static_assert(!sizeof(T *), "Don't know how to handle the given type."); 145 template <typename T, typenam [all...] |
H A D | Any.h | 30 // The `Typeid<T>::Id` static data member below is a globally unique 31 // identifier for the type `T`. It is explicitly marked with default 36 template <typename T> struct TypeId { static char Id; }; 44 template <typename T> struct StorageImpl : public StorageBase { 45 explicit StorageImpl(const T &Value) : Value(Value) {} in StorageImpl() 47 explicit StorageImpl(T &&Value) : Value(std::move(Value)) {} in StorageImpl() 50 return std::make_unique<StorageImpl<T>>(Value); in clone() 53 const void *id() const override { return &TypeId<T>::Id; } in id() 55 T Value; 68 // When T i [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/libcxx/include/ |
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 …]
|
H A D | functional | 34 template <class T> 41 typedef T type; 47 constexpr reference_wrapper(const reference_wrapper<T>& x) noexcept; // constexpr since C++20 51 operator=(const reference_wrapper<T>& x) noexcept; // constexpr since C++20 54 constexpr operator T& () const noexcept; // constexpr since C++20 55 constexpr T& get() const noexcept; // constexpr since C++20 59 constexpr typename result_of<T&(ArgTypes&&...)>::type // constexpr since C++20 61 noexcept(is_nothrow_invocable_v<T&, ArgTypes...>); // noexcept since C++17 64 template <class T> 65 reference_wrapper(T&) -> reference_wrapper<T>; [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/expat/xmlwf/ |
H A D | xmlwf.c | 92 #define NSSEP T('\001') 99 case T('&'): in characterData() 100 fputts(T("&"), fp); in characterData() 102 case T('<'): in characterData() 103 fputts(T("<"), fp); in characterData() 105 case T('>'): in characterData() 106 fputts(T(">"), fp); in characterData() 110 fputts(T("
"), fp); in characterData() 113 case T('"'): in characterData() 114 fputts(T("""), fp); in characterData() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | InterpStack.h | 35 template <typename T, typename... Tys> void push(Tys &&... Args) { in push() 36 new (grow(aligned_size<T>())) T(std::forward<Tys>(Args)...); in push() 38 ItemTypes.push_back(toPrimType<T>()); in push() 43 template <typename T> T pop() { in pop() 46 assert(ItemTypes.back() == toPrimType<T>()); in pop() 49 T *Ptr = &peekInternal<T>(); in pop() 50 T Value = std::move(*Ptr); in pop() 51 shrink(aligned_size<T>()); in pop() 56 template <typename T> void discard() { in discard() 59 assert(ItemTypes.back() == toPrimType<T>()); in discard() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/BinaryFormat/ |
H A D | MachO.cpp | 15 static MachO::CPUSubTypeX86 getX86SubType(const Triple &T) { in getX86SubType() argument 16 assert(T.isX86()); in getX86SubType() 17 if (T.isArch32Bit()) in getX86SubType() 20 assert(T.isArch64Bit()); in getX86SubType() 21 if (T.getArchName() == "x86_64h") in getX86SubType() 26 static MachO::CPUSubTypeARM getARMSubType(const Triple &T) { in getARMSubType() argument 27 assert(T.isARM() || T.isThumb()); in getARMSubType() 28 StringRef Arch = T.getArchName(); in getARMSubType() 57 static MachO::CPUSubTypeARM64 getARM64SubType(const Triple &T) { in getARM64SubType() argument 58 assert(T.isAArch64()); in getARM64SubType() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | CheckedArithmetic.h | 27 template <typename T, typename F> 28 std::enable_if_t<std::is_integral_v<T> && sizeof(T) * 8 <= 64, std::optional<T>> 29 checkedOp(T LHS, T RHS, F Op, bool Signed = true) { 30 llvm::APInt ALHS(sizeof(T) * 8, LHS, Signed); 31 llvm::APInt ARHS(sizeof(T) * 8, RHS, Signed); 45 template <typename T> 46 std::enable_if_t<std::is_signed_v<T>, std::optional<T>> checkedAdd(T LHS, in checkedAdd() 47 T RHS) { in checkedAdd() 54 template <typename T> 55 std::enable_if_t<std::is_signed_v<T>, std::optional<T>> checkedSub(T LHS, in checkedSub() [all …]
|
H A D | FormatVariadicDetails.h | 19 template <typename T, typename Enable = void> struct format_provider {}; 34 template <typename T> class provider_format_adapter : public format_adapter { 35 T Item; 38 explicit provider_format_adapter(T &&Item) : Item(std::forward<T>(Item)) {} in provider_format_adapter() 41 format_provider<std::decay_t<T>>::format(Item, S, Options); in format() 45 template <typename T> 47 T Item; 50 explicit stream_operator_format_adapter(T &&Item) in stream_operator_format_adapter() 51 : Item(std::forward<T>(Item)) {} in stream_operator_format_adapter() 56 template <typename T> class missing_format_adapter; [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_type_traits.h | 37 template <typename T, typename U> 40 template <typename T> 41 struct is_same<T, T> : public true_type {}; 52 template <bool B, class T, class F> 54 using type = T; 57 template <class T, class F> 58 struct conditional<false, T, F> { 62 template <class T> 64 using type = T; 66 template <class T> [all …]
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | TypePrinter.cpp | 125 void print(QualType T, raw_ostream &OS, StringRef PlaceHolder); 127 static bool canPrefixQualifiers(const Type *T, bool &NeedARCStrongQualifier); 130 void printTemplateId(const TemplateSpecializationType *T, raw_ostream &OS, 133 void printBefore(QualType T, raw_ostream &OS); 134 void printAfter(QualType T, raw_ostream &OS); 137 void printTag(TagDecl *T, raw_ostream &OS); 141 void print##CLASS##Before(const CLASS##Type *T, raw_ostream &OS); \ 142 void print##CLASS##After(const CLASS##Type *T, raw_ostream &OS); 191 void TypePrinter::print(const Type *T, Qualifiers Quals, raw_ostream &OS, in print() argument 193 if (!T) { in print() [all …]
|
H A D | ODRHash.cpp | 283 void AddQualType(QualType T) { in AddQualType() argument 284 Hash.AddQualType(T); in AddQualType() 856 void AddQualType(QualType T) { in AddQualType() argument 857 Hash.AddQualType(T); in AddQualType() 860 void AddType(const Type *T) { in AddType() argument 861 Hash.AddBoolean(T); in AddType() 862 if (T) { in AddType() 863 Hash.AddType(T); in AddType() 887 static const Type *RemoveTypedef(const Type *T) { in RemoveTypedef() argument 888 const auto *TypedefT = dyn_cast<TypedefType>(T); in RemoveTypedef() [all …]
|
/freebsd/contrib/file/src/ |
H A D | encoding.c | 236 #define T 1 /* character appears in plain ASCII text */ macro 242 F, F, F, F, F, F, F, T, T, T, T, T, T, T, F, F, /* 0x0X */ 244 F, F, F, F, F, F, F, F, F, F, F, T, F, F, F, F, /* 0x1X */ 245 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, /* 0x2X */ 246 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, /* 0x3X */ 247 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, /* 0x4X */ 248 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, /* 0x5X */ 249 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, /* 0x6X */ 250 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, F, /* 0x7X */ 252 X, X, X, X, X, T, X, X, X, X, X, X, X, X, X, X, /* 0x8X */ [all …]
|
/freebsd/contrib/opencsd/decoder/include/common/ |
H A D | comp_attach_pt_t.h | 60 template <class T> 73 virtual ocsd_err_t attach(T* component); 82 virtual ocsd_err_t detach(T* component); 86 virtual ocsd_err_t replace_first(T* component); 99 virtual T* first(); 107 virtual T* next(); 148 T *m_comp; /**< pointer to the single attached interface */ 153 template<class T> componentAttachPt<T>::componentAttachPt() in componentAttachPt() 161 template<class T> componentAttachPt<T>::~componentAttachPt() in ~componentAttachPt() 167 template<class T> ocsd_err_t componentAttachPt<T>::attach(T* component) in attach() [all …]
|