Home
last modified time | relevance | path

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

12345678910>>...156

/netbsd-src/crypto/external/bsd/openssl/dist/util/
H A Dindent.pro36 -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 …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/util/
H A Dindent.pro36 -T ACCESS_DESCRIPTION
37 -T ADDED_OBJ
38 -T AES_KEY
39 -T APP_INFO
40 -T ARGS
41 -T ASIdOrRange
42 -T ASIdOrRanges
43 -T ASIdentifierChoice
44 -T ASIdentifiers
45 -T ASN1_ADB
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/sha/asm/
H A Dkeccak1600-avx2.pl125 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 Dkeccak1600-avx512vl.pl54 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 …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/sha/asm/
H A Dkeccak1600-avx2.pl125 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 Dkeccak1600-avx512vl.pl54 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 …]
/netbsd-src/sys/external/bsd/drm2/linux/
H A Dlinux_kthread.c99 struct task_struct *T; in _linux_kthread() local
101 T = lwp_getspecific(linux_kthread_key); in _linux_kthread()
102 KASSERTMSG(T != NULL, "%s must be called from Linux kthread", caller); in _linux_kthread()
104 return T; in _linux_kthread()
110 struct task_struct *T = cookie; in linux_kthread_start() local
113 lwp_setspecific(linux_kthread_key, T); in linux_kthread_start()
115 ret = (*T->kt_func)(T->kt_cookie); in linux_kthread_start()
121 mutex_enter(&T->kt_lock); in linux_kthread_start()
122 T->kt_exited = true; in linux_kthread_start()
123 T->kt_ret = ret; in linux_kthread_start()
[all …]
/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A Dnumbers17 template<class T> inline constexpr T e_v = unspecified;
18 template<class T> inline constexpr T log2e_v = unspecified;
19 template<class T> inline constexpr T log10e_v = unspecified;
20 template<class T> inline constexpr T pi_v = unspecified;
21 template<class T> inline constexpr T inv_pi_v = unspecified;
22 template<class T> inline constexpr T inv_sqrtpi_v = unspecified;
23 template<class T> inline constexpr T ln2_v = unspecified;
24 template<class T> inline constexpr T ln10_v = unspecified;
25 template<class T> inline constexpr T sqrt2_v = unspecified;
26 template<class T> inline constexpr T sqrt3_v = unspecified;
[all …]
/netbsd-src/external/bsd/atf/dist/tools/
H A Dauto_array.hpp41 template< class T >
43 T* m_ptr;
45 explicit auto_array_ref(T*);
48 template< class T >
49 auto_array_ref< T >::auto_array_ref(T* ptr) : in auto_array_ref()
54 template< class T >
56 T* m_ptr;
59 auto_array(T* = NULL) throw();
60 auto_array(auto_array< T >&) throw();
61 auto_array(auto_array_ref< T >) throw();
[all …]
/netbsd-src/external/bsd/atf/dist/atf-c++/detail/
H A Dauto_array.hpp41 template< class T >
43 T* m_ptr;
45 explicit auto_array_ref(T*);
48 template< class T >
49 auto_array_ref< T >::auto_array_ref(T* ptr) : in auto_array_ref()
54 template< class T >
56 T* m_ptr;
59 auto_array(T* = NULL) throw();
60 auto_array(auto_array< T >&) throw();
61 auto_array(auto_array_ref< T >) throw();
[all …]
/netbsd-src/external/lgpl3/gmp/dist/tests/cxx/
H A Dt-ops2qf.cc22 template<class T>
24 CHECK_ALL(T,5.,0,+); in checkqf()
25 CHECK_ALL(T,5.,0,-); in checkqf()
26 CHECK_ALL(T,5.,2,+); CHECK_MPZ(T,5.,2,+); in checkqf()
27 CHECK_ALL(T,5.,2,-); CHECK_MPZ(T,5.,2,-); in checkqf()
28 CHECK_ALL(T,5.,2,*); CHECK_MPZ(T,5.,2,*); in checkqf()
29 CHECK_ALL(T,5.,2,/); CHECK_MPZ(T,5.,2,/); in checkqf()
30 CHECK_ALL(T,0.,2,/); in checkqf()
31 CHECK_ALL_SIGNS(T,11.,3,+); in checkqf()
32 CHECK_ALL_SIGNS(T,11.,3,-); in checkqf()
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/camellia/asm/
H A Dcmll-x86.pl57 @T=("eax","ebx","ecx","edx");
92 my $t0=@T[($j)%4],$t1=@T[($j+1)%4],$t2=@T[($j+2)%4],$t3=@T[($j+3)%4];
159 &mov (@T[0],&DWP(0,$idx)); # load plaintext
160 &mov (@T[1],&DWP(4,$idx));
161 &mov (@T[2],&DWP(8,$idx));
162 &bswap (@T[0]);
163 &mov (@T[3],&DWP(12,$idx));
164 &bswap (@T[1]);
165 &bswap (@T[2]);
166 &bswap (@T[3]);
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/camellia/asm/
H A Dcmll-x86.pl56 @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 …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dvec.h260 template<typename T>
261 static void reserve (vec<T, va_heap, vl_embed> *&, unsigned, bool
264 template<typename T>
265 static void release (vec<T, va_heap, vl_embed> *&);
274 template<typename T>
276 va_heap::reserve (vec<T, va_heap, vl_embed> *&v, unsigned reserve, bool exact in reserve() argument
279 size_t elt_size = sizeof (T); in reserve()
288 size_t size = vec<T, va_heap, vl_embed>::embedded_size (alloc); in reserve()
290 v = static_cast <vec<T, va_heap, vl_embed> *> (xrealloc (v, size)); in reserve()
305 template<typename T>
[all …]
H A Dsymbol-summary.h26 template <class T>
38 virtual void insert (cgraph_node *, T *) {} in insert() argument
41 virtual void remove (cgraph_node *, T *) {} in remove() argument
44 virtual void duplicate (cgraph_node *, cgraph_node *, T *, T *) {} in duplicate() argument
60 T* allocate_new () in allocate_new()
64 return is_ggc () ? new (ggc_internal_alloc (sizeof (T))) T () in allocate_new()
69 void release (T *item) in release()
97 object_allocator<T> m_allocator;
100 template <typename T>
102 function_summary_base<T>::unregister_hooks () in unregister_hooks()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dvec.h260 template<typename T>
261 static void reserve (vec<T, va_heap, vl_embed> *&, unsigned, bool
264 template<typename T>
265 static void release (vec<T, va_heap, vl_embed> *&);
274 template<typename T>
276 va_heap::reserve (vec<T, va_heap, vl_embed> *&v, unsigned reserve, bool exact in reserve() argument
279 size_t elt_size = sizeof (T); in reserve()
288 size_t size = vec<T, va_heap, vl_embed>::embedded_size (alloc); in reserve()
290 v = static_cast <vec<T, va_heap, vl_embed> *> (xrealloc (v, size)); in reserve()
305 template<typename T>
[all …]
H A Dsymbol-summary.h26 template <class T>
49 virtual void insert (cgraph_node *, T *) in insert() argument
57 virtual void remove (cgraph_node *, T *) {} in remove() argument
60 virtual void duplicate (cgraph_node *, cgraph_node *, T *, T *) in duplicate() argument
104 T* allocate_new () in allocate_new()
108 return is_ggc () ? new (ggc_internal_alloc (sizeof (T))) T () in allocate_new()
113 void release (T *item) in release()
146 object_allocator<T> m_allocator;
149 template <typename T>
151 function_summary_base<T>::unregister_hooks () in unregister_hooks()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DArrayRef.h40 template<typename T>
43 using value_type = T;
57 const T *Data = nullptr;
73 /*implicit*/ ArrayRef(const T &OneElt) in ArrayRef()
77 /*implicit*/ ArrayRef(const T *data, size_t length) in ArrayRef()
81 ArrayRef(const T *begin, const T *end) in ArrayRef()
88 /*implicit*/ ArrayRef(const SmallVectorTemplateCommon<T, U> &Vec) in ArrayRef() argument
94 /*implicit*/ ArrayRef(const std::vector<T, A> &Vec) in ArrayRef() argument
99 /*implicit*/ constexpr ArrayRef(const std::array<T, N> &Arr) in ArrayRef() argument
104 /*implicit*/ constexpr ArrayRef(const T (&Arr)[N]) : Data(Arr), Length(N) {} in ArrayRef()
[all …]
H A DOptional.h53 template <typename T, bool = (llvm::is_trivially_copy_constructible<T>::value &&
54 std::is_trivially_copy_assignable<T>::value &&
55 (std::is_trivially_move_constructible<T>::value ||
56 !std::is_move_constructible<T>::value) &&
57 (std::is_trivially_move_assignable<T>::value ||
58 !std::is_move_assignable<T>::value))>
62 T value;
88 value.~T(); in reset()
95 T &getValue() LLVM_LVALUE_FUNCTION noexcept { in getValue()
99 constexpr T const &getValue() const LLVM_LVALUE_FUNCTION noexcept { in getValue()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/
H A Dtraits.d13 template Fields(T) in Fields() argument
15 static if (is(T == struct) || is(T == union)) in Fields()
16 alias Fields = typeof(T.tupleof[0 .. $ - __traits(isNested, T)]); in Fields()
17 else static if (is(T == class) || is(T == interface)) in Fields()
18 alias Fields = typeof(T.tupleof); in Fields()
20 alias Fields = AliasSeq!T; in Fields()
23 T trustedCast(T, U)(auto ref U u) @trusted pure nothrow in trustedCast() argument
25 return cast(T)u; in trustedCast()
28 alias Unconst(T : const U, U) = U;
31 template Unqual(T : const U, U)
[all …]
H A Dhash.d32 private enum hasCallableToHash(T) = __traits(compiles,
34 size_t hash = ((T* x) => (*x).toHash())(null);
44 private enum isFinalClassWithAddressBasedHash(T) = __traits(isFinalClass, T)
46 && __traits(compiles, {static assert(&Object.toHash is &T.toHash);});
59 private template isCppClassWithoutHash(T) in isCppClassWithoutHash() argument
61 static if (!is(T == class) && !is(T == interface)) in isCppClassWithoutHash()
64 enum bool isCppClassWithoutHash = __traits(getLinkage, T) == "C++" in isCppClassWithoutHash()
65 && !is(immutable T* : immutable Object*) && !hasCallableToHash!T; in isCppClassWithoutHash()
69 Is it valid to calculate a hash code for T based on the bits of its
78 for all instances of `T` are the same. The correctness of this
[all …]
H A Dconvert.d36 const(ubyte)[] toUbyte(T)(const scope ref T val) if (__traits(isFloating, T) && (is(T : real) || is…
40 static if (floatFormat!T == FloatFormat.Float || floatFormat!T == FloatFormat.Double)
42 static if (is(T : ireal)) // https://issues.dlang.org/show_bug.cgi?id=19932
46 static if (T.sizeof == uint.sizeof)
48 else static if (T.sizeof == ulong.sizeof)
50 ubyte[] result = ctfe_alloc(T.sizeof);
69 else static if (floatFormat!T == FloatFormat.DoubleDouble)
82 ubyte[] buff = ctfe_alloc(T.sizeof);
85 static if (is(T : ireal))
91 if (val is cast(T)0.0 || val is cast(T)-0.0 ||
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DODRHash.cpp262 void AddQualType(QualType T) { in AddQualType() argument
263 Hash.AddQualType(T); in AddQualType()
680 void AddQualType(QualType T) { in AddQualType() argument
681 Hash.AddQualType(T); in AddQualType()
684 void AddType(const Type *T) { in AddType() argument
685 Hash.AddBoolean(T); in AddType()
686 if (T) { in AddType()
687 Hash.AddType(T); in AddType()
711 static const Type *RemoveTypedef(const Type *T) { in RemoveTypedef() argument
712 const auto *TypedefT = dyn_cast<TypedefType>(T); in RemoveTypedef()
[all …]
H A DTypePrinter.cpp114 void print(QualType T, raw_ostream &OS, StringRef PlaceHolder);
116 static bool canPrefixQualifiers(const Type *T, bool &NeedARCStrongQualifier);
119 void printTemplateId(const TemplateSpecializationType *T, raw_ostream &OS,
122 void printBefore(QualType T, raw_ostream &OS);
123 void printAfter(QualType T, raw_ostream &OS);
126 void printTag(TagDecl *T, raw_ostream &OS);
130 void print##CLASS##Before(const CLASS##Type *T, raw_ostream &OS); \
131 void print##CLASS##After(const CLASS##Type *T, raw_ostream &OS);
180 void TypePrinter::print(const Type *T, Qualifiers Quals, raw_ostream &OS, in print() argument
182 if (!T) { in print()
[all …]
/netbsd-src/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
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 …]

12345678910>>...156