Home
last modified time | relevance | path

Searched refs:T (Results 1 – 25 of 2311) sorted by relevance

12345678910>>...93

/freebsd/crypto/openssl/util/
H A Dindent.pro37 -T ADDED_OBJ
38 -T AES_KEY
39 -T ARGS
44 -T ASN1_ADB
46 -T ASN1_AUX
86 -T BIO
119 -T CERT
177 -T DH
182 -T DSA
185 -T DSO
[all …]
/freebsd/crypto/openssl/crypto/sha/asm/
H A Dkeccak1600-avx2.pl155 vpor @T[2],@T[1],@T[1] # ROL64(C[1..4],1)
158 vpxor @T[4],@T[1],$D00
166 vpor @T[0],@T[1],@T[1] # ROL64(C[0..0],1)
200 vpor @T[7],@T[1],@T[1] # $A11 -> future $A01
207 vpor @T[8],@T[2],@T[2] # $A01 -> future $A20
210 vpsrldq \$8,@T[1],@T[7]
211 vpandn @T[7],@T[1],@T[0] # tgting [0][0] [0][0] [0][0] [0][0]
214 vpblendd \$0b00001100,@T[2],@T[4],@T[8] # [4][0] [2][1]
218 vpblendd \$0b00110000,@T[5],@T[8],@T[8] # [1][4] [4][0] [2][1]
308 vpxor @T[0],@T[0],@T[0]
[all …]
H A Dkeccak1600-avx512vl.pl83 vpxor @T[4],@T[1],$D00
119 vpblendd \$0b00001100,@T[2],@T[4],@T[8] # [4][0] [2][1]
121 vpblendd \$0b00001100,@T[3],@T[2],@T[7] # [4][3] [2][0]
123 vpblendd \$0b00110000,@T[5],@T[8],@T[8] # [1][4] [4][0] [2][1]
127 vpblendd \$0b11000000,@T[6],@T[8],@T[8] # [3][3] [1][4] [4][0] [2][1]
133 vpsrldq \$8,@T[1],@T[0]
134 vpandn @T[0],@T[1],@T[0] # tgting [0][0] [0][0] [0][0] [0][0]
137 vpblendd \$0b00001100,@T[5],@T[3],@T[8] # [4][1] [2][4]
139 vpblendd \$0b00110000,@T[4],@T[8],@T[8] # [1][3] [4][1] [2][4]
217 vpxor @T[0],@T[0],@T[0]
[all …]
H A Dkeccak1600-avx512.pl182 vpternlogq \$0xD2,@T[1],@T[0],$A40
254 vpternlogq \$0xD2,@T[6],@T[5],$A00
256 vpermq @T[1],@Theta[1],@T[7]
257 #vpermq @T[1],@Theta[0],@T[1]
260 vpermq @T[2],@Theta[3],@T[0]
261 vpermq @T[2],@Theta[2],@T[2]
264 #vpermq @T[3],@Theta[0],@T[3]
265 vpermq @T[3],@Theta[4],@T[1]
268 vpermq @T[4],@Theta[2],@T[0]
269 vpermq @T[4],@Theta[1],@T[4]
[all …]
/freebsd/contrib/nvi/common/
H A Dencoding.c16 #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 */
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 */
70 if (text_chars[buf[i]] != T) in looks_utf8()
145 if (c < 128 && text_chars[c] != T) in looks_utf16()
[all …]
/freebsd/contrib/atf/atf-c++/detail/
H A Dauto_array.hpp45 auto_array_ref< T >::auto_array_ref(T* ptr) : in auto_array_ref()
73 auto_array< T >::auto_array(T* ptr) in auto_array()
80 auto_array< T >::auto_array(auto_array< T >& ptr) in auto_array()
87 auto_array< T >::auto_array(auto_array_ref< T > ref) in auto_array()
102 T*
110 const T*
118 T*
129 auto_array< T >::reset(T* ptr) in reset()
139 auto_array< T >::operator=(auto_array< T >& ptr) in operator =()
148 auto_array< T >::operator=(auto_array_ref< T > ref) in operator =()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DArrayRef.h335 MutableArrayRef(T *begin, T *end) : ArrayRef<T>(begin, end) {} in MutableArrayRef()
354 T *data() const { return const_cast<T*>(ArrayRef<T>::data()); } in data()
474 template <typename T> ArrayRef(const T &OneElt) -> ArrayRef<T>;
477 template <typename T> ArrayRef(const T *data, size_t length) -> ArrayRef<T>;
480 template <typename T> ArrayRef(const T *data, const T *end) -> ArrayRef<T>;
490 template <typename T> ArrayRef(const std::vector<T> &Vec) -> ArrayRef<T>;
497 template <typename T> ArrayRef(const ArrayRef<T> &Vec) -> ArrayRef<T>;
500 template <typename T> ArrayRef(ArrayRef<T> &Vec) -> ArrayRef<T>;
503 template <typename T, size_t N> ArrayRef(const T (&Arr)[N]) -> ArrayRef<T>;
526 ArrayRef<T> makeArrayRef(const T *begin, const T *end) { in makeArrayRef()
[all …]
H A Dbit.h101 [[nodiscard]] constexpr T byteswap(T V) noexcept { in byteswap()
160 T Shift = std::numeric_limits<T>::digits >> 1; in count()
161 T Mask = std::numeric_limits<T>::max() >> Shift; in count()
241 template <typename T> struct LeadingZerosCounter<T, 4> {
327 template <typename T> [[nodiscard]] T bit_floor(T Value) {
342 template <typename T> [[nodiscard]] T bit_ceil(T Value) {
347 return T(1) << llvm::bit_width<T>(Value - 1u);
366 template <typename T> struct PopulationCounter<T, 8> {
391 [[nodiscard]] constexpr T rotr(T V, int R);
394 [[nodiscard]] constexpr T rotl(T V, int R) {
[all …]
H A DAny.h55 T Value;
117 template <class T> friend T any_cast(const Any &Value);
118 template <class T> friend T any_cast(Any &Value);
119 template <class T> friend T any_cast(Any &&Value);
121 template <class T> friend T *any_cast(Any *Value);
136 template <typename T> char Any::TypeId<T>::Id = 1;
138 template <class T> T any_cast(const Any &Value) { in any_cast()
143 template <class T> T any_cast(Any &Value) { in any_cast()
148 template <class T> T any_cast(Any &&Value) { in any_cast()
153 template <class T> const T *any_cast(const Any *Value) { in any_cast()
[all …]
/freebsd/crypto/openssl/crypto/camellia/asm/
H A Dcmll-x86.pl91 my $t0=@T[($j)%4],$t1=@T[($j+1)%4],$t2=@T[($j+2)%4],$t3=@T[($j+3)%4];
270 &mov (@T[2],@T[3]);
283 &xor (@T[3],@T[2]);
290 &mov (@T[3],@T[1]);
445 &mov (@T[2],@T[3]);
458 &xor (@T[3],@T[2]);
465 &mov (@T[3],@T[1]);
588 &mov (@T[2],@T[0]);
589 &mov (@T[3],@T[1]);
649 &_rotl128 (@T,15,12,@T[0],@T[1]); # KA<<<(30+15=45)
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DCustomizableOptional.h32 using value_type = T;
110 template <typename T>
111 CustomizableOptional(const T &) -> CustomizableOptional<T>;
113 template <class T>
158 template <typename T>
163 template <typename T>
168 template <typename T>
173 template <typename T>
178 template <typename T>
183 template <typename T>
[all …]
/freebsd/contrib/llvm-project/libcxx/include/
H A Dtype_traits20 template <class T, T v> struct integral_constant;
79 template<class T>
173 template <class T>
175 template <class T>
177 template <class T>
179 template <class T>
181 template <class T>
183 template <class T>
187 template <class T>
189 template <class T>
[all …]
H A Datomic45 template <class T> T kill_dependency(T y) noexcept;
83 T operator=(T) volatile noexcept;
84 T operator=(T) noexcept;
219 T* operator=(T*) noexcept;
358 T atomic_exchange(atomic<T>*, atomic<T>::value_type) noexcept;
363 T atomic_exchange_explicit(atomic<T>*, atomic<T>::value_type,
417 T atomic_fetch_and(atomic<T>*, atomic<T>::value_type) noexcept;
422 T atomic_fetch_and_explicit(atomic<T>*, atomic<T>::value_type,
427 T atomic_fetch_or(atomic<T>*, atomic<T>::value_type) noexcept;
432 T atomic_fetch_or_explicit(atomic<T>*, atomic<T>::value_type,
[all …]
/freebsd/contrib/llvm-project/compiler-rt/include/fuzzer/
H A DFuzzedDataProvider.h59 template <typename T> T ConsumeIntegral();
60 template <typename T> T ConsumeIntegralInRange(T min, T max);
63 template <typename T> T ConsumeFloatingPoint();
64 template <typename T> T ConsumeFloatingPointInRange(T min, T max);
67 template <typename T> T ConsumeProbability();
72 template <typename T> T ConsumeEnum();
75 template <typename T, size_t size> T PickValueInArray(const T (&array)[size]);
77 T PickValueInArray(const std::array<T, size> &array);
78 template <typename T> T PickValueInArray(std::initializer_list<const T> list);
204 T FuzzedDataProvider::ConsumeIntegralInRange(T min, T max) { in ConsumeIntegralInRange()
[all …]
/freebsd/contrib/netbsd-tests/bin/df/
H A Dt_df.sh95 filer:/ 1.1T 132M 1.1T 0% /filer
96 filer:/ 1.1T 0B 1.1T 0% /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
104 filer:/ 1.1T 1.1T 0B 100% /filer
105 filer:/ 1.1T 1.1T -57G 105% /filer
106 filer:/ 1.1T 0B 1.0T 0% /filer
109 filer:/ 1.1T 1.1T -57G 105% /filer
110 filer:/ 1.1T 1.1T -115G 111% /filer
[all …]
/freebsd/contrib/expat/xmlwf/
H A Dxmlwf.c99 case T('&'): in characterData()
566 T(" byte=\"%") T(XML_FMT_INT_MOD) T("d\"") T(" nbytes=\"%d\"") in metaLocation()
567 T(" line=\"%") T(XML_FMT_INT_MOD) T("u\"") T(" col=\"%") in metaLocation()
568 T(XML_FMT_INT_MOD) T("u\""), in metaLocation()
892 T("\n") in usage()
894 T("\n") in usage()
897 T("\n") in usage()
908 T("\n") in usage()
915 T("\n") in usage()
1078 tperror(T("invalid buffer size") T( in tmain()
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DInterpStack.h35 new (grow(aligned_size<T>())) T(std::forward<Tys>(Args)...); in push()
42 template <typename T> T pop() { in pop()
48 T *Ptr = &peekInternal<T>(); in pop()
50 Ptr->~T(); in pop()
62 T *Ptr = &peekInternal<T>(); in discard()
63 Ptr->~T(); in discard()
68 template <typename T> T &peek() const { in peek()
73 return peekInternal<T>(); in peek()
76 template <typename T> T &peek(size_t Offset) const { in peek()
105 template <typename T> T &peekInternal() const { in peekInternal()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DMachO.cpp16 assert(T.isX86()); in getX86SubType()
17 if (T.isArch32Bit()) in getX86SubType()
27 assert(T.isARM() || T.isThumb()); in getARMSubType()
61 if (T.isArm64e()) in getARM64SubType()
80 if (T.isX86() && T.isArch32Bit()) in getCPUType()
82 if (T.isX86() && T.isArch64Bit()) in getCPUType()
84 if (T.isARM() || T.isThumb()) in getCPUType()
98 if (T.isX86()) in getCPUSubType()
100 if (T.isARM() || T.isThumb()) in getCPUSubType()
102 if (T.isAArch64() || T.getArch() == Triple::aarch64_32) in getCPUSubType()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DCheckedArithmetic.h28 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) {
46 std::enable_if_t<std::is_signed_v<T>, std::optional<T>> checkedAdd(T LHS, in checkedAdd()
55 std::enable_if_t<std::is_signed_v<T>, std::optional<T>> checkedSub(T LHS, in checkedSub()
64 std::enable_if_t<std::is_signed_v<T>, std::optional<T>> checkedMul(T LHS, in checkedMul()
73 std::enable_if_t<std::is_signed_v<T>, std::optional<T>> checkedMulAdd(T A, T B, in checkedMulAdd()
84 std::enable_if_t<std::is_unsigned_v<T>, std::optional<T>>
85 checkedAddUnsigned(T LHS, T RHS) { in checkedAddUnsigned()
93 std::enable_if_t<std::is_unsigned_v<T>, std::optional<T>>
94 checkedMulUnsigned(T LHS, T RHS) { in checkedMulUnsigned()
[all …]
H A DFormatVariadicDetails.h34 T Item;
37 explicit provider_format_adapter(T &&Item) : Item(std::forward<T>(Item)) {} in provider_format_adapter()
44 template <typename T>
46 T Item;
95 template <typename T>
104 template <typename T>
112 template <typename T>
122 template <typename T>
130 std::enable_if_t<uses_format_member<T>::value, T>
138 return provider_format_adapter<T>(std::forward<T>(Item)); in build_format_adapter()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_type_traits.h41 struct is_same<T, T> : public true_type {};
54 using type = T;
62 template <class T>
64 using type = T;
66 template <class T>
68 using type = T;
70 template <class T>
72 using type = T;
75 template <class T>
80 template <class T>
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DTypePrinter.cpp193 if (!T) { in print()
255 T->isObjCQualifiedIdType() || T->isObjCQualifiedClassType(); in canPrefixQualifiers()
436 return T; in skipTopLevelReferences()
815 OS << T->getNumRows() << ", " << T->getNumColumns(); in printConstantMatrixBefore()
1471 T = T->getLocallyUnqualifiedSingleStepDesugaredType(); in printRecordBefore()
1764 if (T->getAttrKind() == attr::ObjCKindOf || T->isMSTypeSpec() || in printAttributedAfter()
1958 if (T->qual_empty() && T->isUnspecializedAsWritten() && in printObjCObjectBefore()
1999 if (T->qual_empty() && T->isUnspecializedAsWritten() && in printObjCObjectAfter()
2009 if (!T->isObjCIdType() && !T->isObjCQualifiedIdType() && in printObjCObjectPointerBefore()
2010 !T->isObjCClassType() && !T->isObjCQualifiedClassType()) { in printObjCObjectPointerBefore()
[all …]
H A DODRHash.cpp849 if (T) { in AddType()
877 return T; in RemoveTypedef()
884 return T; in RemoveTypedef()
889 return T; in RemoveTypedef()
893 return T; in RemoveTypedef()
898 return T; in RemoveTypedef()
903 return T; in RemoveTypedef()
910 return T; in RemoveTypedef()
917 T = RemoveTypedef(T); in Visit()
927 VisitType(T); in VisitAdjustedType()
[all …]
/freebsd/contrib/opencsd/decoder/include/common/
H A Dcomp_attach_pt_t.h60 template <class T>
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()
177 template<class T> ocsd_err_t componentAttachPt<T>::replace_first(T* component) in replace_first()
188 template<class T> ocsd_err_t componentAttachPt<T>::detach(T* component) in detach()
198 template<class T> T* componentAttachPt<T>::first() in first()
203 template<class T> T* componentAttachPt<T>::next() in next()
208 template<class T> int componentAttachPt<T>::num_attached() in num_attached()
213 template<class T> void componentAttachPt<T>::detach_all() in detach_all()
[all …]
/freebsd/contrib/file/src/
H A Dencoding.c242 F, F, F, F, F, F, F, T, T, T, T, T, T, T, F, F, /* 0x0X */
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 */
282 LOOKS(ascii, t != T)
283 LOOKS(latin1, t != T && t != I)
368 if (text_chars[buf[i]] != T) in file_looks_utf8()
[all …]

12345678910>>...93