Home
last modified time | relevance | path

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

12345678910>>...45

/openbmc/linux/tools/debugging/
H A Dkernel-chktaint62 T=`expr $T / 2`
70 T=`expr $T / 2`
78 T=`expr $T / 2`
86 T=`expr $T / 2`
94 T=`expr $T / 2`
102 T=`expr $T / 2`
110 T=`expr $T / 2`
118 T=`expr $T / 2`
126 T=`expr $T / 2`
134 T=`expr $T / 2`
[all …]
/openbmc/linux/drivers/net/wireguard/selftest/
H A Dcounter.c71 T(i, true); in wg_packet_counter_selftest()
72 T(0, true); in wg_packet_counter_selftest()
73 T(0, false); in wg_packet_counter_selftest()
77 T(i, true); in wg_packet_counter_selftest()
78 T(1, true); in wg_packet_counter_selftest()
79 T(0, false); in wg_packet_counter_selftest()
83 T(i, true); in wg_packet_counter_selftest()
87 T(i, true); in wg_packet_counter_selftest()
88 T(0, false); in wg_packet_counter_selftest()
99 T(0, true); in wg_packet_counter_selftest()
[all …]
/openbmc/linux/rust/kernel/sync/
H A Darc.rs163 impl<T> Arc<T> {
203 impl<T: ?Sized> Arc<T> {
261 impl<T: ?Sized> Deref for Arc<T> {
271 impl<T: ?Sized> AsRef<T> for Arc<T> {
277 impl<T: ?Sized> Clone for Arc<T> {
289 impl<T: ?Sized> Drop for Arc<T> {
310 impl<T: ?Sized> From<UniqueArc<T>> for Arc<T> {
316 impl<T: ?Sized> From<Pin<UniqueArc<T>>> for Arc<T> {
418 impl<T: ?Sized> From<ArcBorrow<'_, T>> for Arc<T> {
517 impl<T> UniqueArc<T> {
[all …]
H A Dlock.rs94 unsafe impl<T: ?Sized + Send, B: Backend> Send for Lock<T, B> {}
98 unsafe impl<T: ?Sized + Send, B: Backend> Sync for Lock<T, B> {}
100 impl<T, B: Backend> Lock<T, B> {
116 impl<T: ?Sized, B: Backend> Lock<T, B> {
140 unsafe impl<T: Sync + ?Sized, B: Backend> Sync for Guard<'_, T, B> {}
142 impl<T: ?Sized, B: Backend> Guard<'_, T, B> {
155 impl<T: ?Sized, B: Backend> core::ops::Deref for Guard<'_, T, B> {
156 type Target = T;
164 impl<T: ?Sized, B: Backend> core::ops::DerefMut for Guard<'_, T, B> {
171 impl<T: ?Sized, B: Backend> Drop for Guard<'_, T, B> {
[all …]
/openbmc/qemu/scripts/coccinelle/
H A Duse-g_new-etc.cocci3 type T;
8 type T;
13 type T;
18 type T;
23 type T;
29 type T;
35 type T;
41 type T;
62 -(T *)g_new(T, n)
68 -(T *)g_new0(T, n)
[all …]
/openbmc/linux/tools/perf/tests/
H A Dkmod-path.c44 #define T(path, an, k, c, n) \ macro
81 T("x.gz", true , false, 1 , "x.gz"); in test__kmod_path__parse()
82 T("x.gz", false , false, 1 , NULL ); in test__kmod_path__parse()
83 T("x.gz", true , false, 1 , "x.gz"); in test__kmod_path__parse()
84 T("x.gz", false , false, 1 , NULL ); in test__kmod_path__parse()
90 T("x.ko.gz", true , true, 1 , "[x]"); in test__kmod_path__parse()
91 T("x.ko.gz", false , true, 1 , NULL ); in test__kmod_path__parse()
92 T("x.ko.gz", true , true, 1 , "[x]"); in test__kmod_path__parse()
93 T("x.ko.gz", false , true, 1 , NULL ); in test__kmod_path__parse()
118 T("[vdso]", true , false, false, "[vdso]"); in test__kmod_path__parse()
[all …]
/openbmc/linux/rust/kernel/
H A Dtypes.rs51 impl<T: 'static> ForeignOwnable for Box<T> {
156 pub struct ScopeGuard<T, F: FnOnce(T)>(Option<(T, F)>);
158 impl<T, F: FnOnce(T)> ScopeGuard<T, F> {
180 impl<T, F: FnOnce(T)> Deref for ScopeGuard<T, F> {
189 impl<T, F: FnOnce(T)> DerefMut for ScopeGuard<T, F> {
196 impl<T, F: FnOnce(T)> Drop for ScopeGuard<T, F> {
214 impl<T> Opaque<T> {
328 impl<T: AlwaysRefCounted> ARef<T> {
349 impl<T: AlwaysRefCounted> Clone for ARef<T> {
366 impl<T: AlwaysRefCounted> From<&T> for ARef<T> {
[all …]
H A Dinit.rs934 unsafe impl<T: ?Sized, E, I, F> Init<T, E> for ChainInit<I, F, T, E>
1098 unsafe impl<T, E> Init<T, E> for T { implementation
1106 unsafe impl<T, E> PinInit<T, E> for T { implementation
1155 impl<T> InPlaceInit<T> for Box<T> {
1185 impl<T> InPlaceInit<T> for UniqueArc<T> {
1306 {<T>} MaybeUninit<T>,
1308 {<T>} Opaque<T>,
1323 {<T: ?Sized>} Option<Box<T>>,
1332 {<T>} *mut T, {<T>} *const T,
1336 {<T>} *mut [T], {<T>} *const [T], *mut str, *const str,
[all …]
/openbmc/linux/rust/alloc/vec/
H A Dspec_extend.rs22 impl<T, I, A: Allocator> SpecExtend<T, I> for Vec<T, A>
31 impl<T, I, A: Allocator> TrySpecExtend<T, I> for Vec<T, A>
41 impl<T, I, A: Allocator> SpecExtend<T, I> for Vec<T, A>
50 impl<T, I, A: Allocator> TrySpecExtend<T, I> for Vec<T, A>
60 impl<T, A: Allocator> SpecExtend<T, IntoIter<T>> for Vec<T, A> {
69 impl<T, A: Allocator> TrySpecExtend<T, IntoIter<T>> for Vec<T, A> {
80 impl<'a, T: 'a, I, A: Allocator> SpecExtend<&'a T, I> for Vec<T, A>
90 impl<'a, T: 'a, I, A: Allocator> TrySpecExtend<&'a T, I> for Vec<T, A>
101 impl<'a, T: 'a, A: Allocator> SpecExtend<&'a T, slice::Iter<'a, T>> for Vec<T, A>
103 T: Copy,
[all …]
H A Dinto_iter.rs36 T,
52 impl<T: fmt::Debug, A: Allocator> fmt::Debug for IntoIter<T, A> {
58 impl<T, A: Allocator> IntoIter<T, A> {
174 impl<T, A: Allocator> AsRef<[T]> for IntoIter<T, A> {
186 impl<T, A: Allocator> Iterator for IntoIter<T, A> {
335 impl<T, A: Allocator> ExactSizeIterator for IntoIter<T, A> {
342 impl<T, A: Allocator> FusedIterator for IntoIter<T, A> {}
348 impl<T, A> Default for IntoIter<T, A>
373 impl<T: Copy> NonDrop for T {} implementation
381 T: NonDrop,
[all …]
H A Dmod.rs408 impl<T> Vec<T> {
2938 impl<T> FromIterator<T> for Vec<T> {
3012 impl<T, A: Allocator> Extend<T> for Vec<T, A> {
3284 impl<T, A1, A2> PartialOrd<Vec<T, A2>> for Vec<T, A1>
3339 impl<T, A: Allocator> AsRef<Vec<T, A>> for Vec<T, A> {
3353 impl<T, A: Allocator> AsRef<[T]> for Vec<T, A> {
3360 impl<T, A: Allocator> AsMut<[T]> for Vec<T, A> {
3368 impl<T: Clone> From<&[T]> for Vec<T> {
3388 impl<T: Clone> From<&mut [T]> for Vec<T> {
3408 impl<T, const N: usize> From<[T; N]> for Vec<T> {
[all …]
H A Ddrain.rs26 T: 'a,
39 impl<T: fmt::Debug, A: Allocator> fmt::Debug for Drain<'_, T, A> {
45 impl<'a, T, A: Allocator> Drain<'a, T, A> {
142 impl<'a, T, A: Allocator> AsRef<[T]> for Drain<'a, T, A> {
154 impl<T, A: Allocator> Iterator for Drain<'_, T, A> {
155 type Item = T;
168 impl<T, A: Allocator> DoubleEndedIterator for Drain<'_, T, A> {
176 impl<T, A: Allocator> Drop for Drain<'_, T, A> {
245 impl<T, A: Allocator> ExactSizeIterator for Drain<'_, T, A> {
252 unsafe impl<T, A: Allocator> TrustedLen for Drain<'_, T, A> {}
[all …]
/openbmc/linux/rust/kernel/init/
H A D__internal.rs16 pub(super) type Invariant<T> = PhantomData<fn(*mut T) -> *mut T>;
25 unsafe impl<T: ?Sized, F, E> Init<T, E> for InitClosure<F, T, E>
37 unsafe impl<T: ?Sized, F, E> PinInit<T, E> for InitClosure<F, T, E>
105 pub struct AllData<T: ?Sized>(PhantomData<fn(Box<T>) -> Box<T>>);
107 impl<T: ?Sized> Clone for AllData<T> {
113 impl<T: ?Sized> Copy for AllData<T> {}
119 unsafe impl<T: ?Sized> HasInitData for T { implementation
139 impl<T> Drop for StackInit<T> {
150 impl<T> StackInit<T> {
191 impl<T: ?Sized> DropGuard<T> {
[all …]
/openbmc/phosphor-logging/lib/include/phosphor-logging/
H A Delog.hpp22 template <typename T>
25 using type = T;
38 template <typename T>
41 using type = T;
47 T value;
57 template <typename T>
60 using type = T;
72 template <typename T>
83 template <typename T>
86 using type = T;
[all …]
/openbmc/qemu/tests/unit/
H A Dtest-smp-parse.c266 .config = SMP_CONFIG_GENERIC(T, 8, T, 2, T, 4, T, 1, F, 0),
272 .config = SMP_CONFIG_GENERIC(T, 8, T, 2, T, 4, F, 0, T, 16),
278 .config = SMP_CONFIG_GENERIC(T, 8, T, 2, F, 0, T, 2, T, 16),
284 .config = SMP_CONFIG_GENERIC(T, 8, F, 0, T, 4, T, 2, T, 16),
296 .config = SMP_CONFIG_GENERIC(T, 8, T, 2, T, 4, T, 2, T, 16),
313 .config = SMP_CONFIG_GENERIC(T, 8, T, 2, T, 4, T, 2, T, 8),
320 .config = SMP_CONFIG_GENERIC(T, 18, T, 2, T, 4, T, 2, T, 16),
343 .config = SMP_CONFIG_WITH_DIES(T, 16, T, 2, T, 2, T, 4, T, 2, T, 16),
350 .config = SMP_CONFIG_WITH_DIES(T, 34, T, 2, T, 2, T, 4, T, 2, T, 32),
361 .config = SMP_CONFIG_WITH_CLUSTERS(T, 16, T, 2, T, 2, T, 4, T, 2, T, 16),
[all …]
/openbmc/u-boot/scripts/
H A Ddecodecode11 rm -f $T $T.s $T.o $T.oo $T.aa $T.dis
48 rm $T
91 touch $T.oo
93 echo All code >> $T.oo
98 disas $T
99 cat $T.dis >> $T.oo
100 rm -f $T.o $T.s $T.dis
109 echo $code >> $T.s
110 disas $T
111 cat $T.dis >> $T.aa
[all …]
/openbmc/phosphor-net-ipmid/
H A Dendian.hpp10 template <typename T>
13 static T to_ipmi(T) = delete;
14 static T from_ipmi(T) = delete;
15 static T to_network(T) = delete;
16 static T from_network(T) = delete;
62 template <typename T>
63 T to_ipmi(T i) in to_ipmi()
68 template <typename T>
69 T from_ipmi(T i) in from_ipmi()
75 T to_network(T i) in to_network()
[all …]
/openbmc/linux/rust/alloc/
H A Dboxed.rs204 impl<T> Box<T> {
614 impl<T> Box<[T]> {
909 impl<T: ?Sized> Box<T> {
1444 impl<T> From<T> for Box<T> {
1491 impl<T: Clone> BoxFromSlice<T> for Box<[T]> {
1499 impl<T: Copy> BoxFromSlice<T> for Box<[T]> {
1513 impl<T: Clone> From<&[T]> for Box<[T]> {
1535 impl<T: Clone> From<Cow<'_, [T]>> for Box<[T]> {
1633 impl<T, const N: usize> From<[T; N]> for Box<[T]> {
1967 fn some<T>(_: Option<T>, x: T) -> Option<T> { in last() argument
[all …]
/openbmc/telemetry/src/utils/
H A Dconversion.hpp39 template <class T>
42 template <class T, T first, T last>
43 inline T toEnum(std::underlying_type_t<T> x) in toEnum()
50 return static_cast<T>(x); in toEnum()
53 template <class T>
54 constexpr inline std::underlying_type_t<T> toUnderlying(T value) in toUnderlying()
59 template <class T, size_t N>
60 constexpr inline T
75 constexpr inline T
90 inline T toEnum(const std::array<std::pair<std::string_view, T>, N>& data, in toEnum() argument
[all …]
/openbmc/linux/tools/testing/selftests/rcutorture/bin/
H A Dtorture.sh265 touch $T/failures
266 touch $T/successes
292 cat $T/$curflavor.out | tee -a $T/log
321 mv $T/last-resdir $T/last-resdir-nodebug || :
326 mv $T/last-resdir $T/last-resdir-kasan || :
337 mv $T/last-resdir $T/last-resdir-kcsan || :
525 mv $T/last-resdir-nodebug $T/first-resdir-nodebug || :
528 mv $T/last-resdir-kasan $T/first-resdir-kasan || :
532 mv $T/last-resdir-kcsan $T/first-resdir-kcsan || :
588 cat "$T/successes" | tee -a $T/log
[all …]
/openbmc/sdbusplus/include/sdbusplus/utility/
H A Dtype_traits.hpp28 std::is_array_v<T>,
30 std::add_pointer_t<std::remove_extent_t<T>>, T>,
31 T>;
57 template <typename T>
60 template <typename T>
64 template <typename T>
80 template <typename T>
108 template <typename T>
126 template <typename T>
129 template <typename T>
[all …]
/openbmc/linux/drivers/comedi/drivers/tests/
H A Dni_routes_test.c402 unittest(!route_is_valid(O(0), O(0), T), in test_route_is_valid()
404 unittest(route_is_valid(O(0), O(1), T), in test_route_is_valid()
406 unittest(route_is_valid(O(5), O(6), T), in test_route_is_valid()
408 unittest(route_is_valid(O(8), O(9), T), in test_route_is_valid()
501 unittest(route_register_is_valid(0, O(1), T), in test_route_register_is_valid()
503 unittest(route_register_is_valid(4, O(6), T), in test_route_register_is_valid()
505 unittest(route_register_is_valid(9, O(8), T), in test_route_register_is_valid()
547 unittest(ni_get_reg_value(0, O(0), T) == -1, in test_ni_get_reg_value()
549 unittest(ni_get_reg_value(0, O(1), T) == 0, in test_ni_get_reg_value()
551 unittest(ni_get_reg_value(4, O(6), T) == 4, in test_ni_get_reg_value()
[all …]
/openbmc/linux/scripts/
H A Ddecodecode14 rm -f $T $T.s $T.o $T.oo $T.aa $T.dis
51 rm $T
210 touch $T.oo
216 echo All code >> $T.oo
223 disas $T $pc_sub
225 cat $T.dis >> $T.oo
233 rm -f $T.o $T.s $T.dis
240 echo $code >> $T.s
241 disas $T 0
242 cat $T.dis >> $T.aa
[all …]
/openbmc/phosphor-inventory-manager/
H A Dinterface_ops.hpp28 template <typename T>
57 template <typename T>
58 struct MakeInterface<T, std::enable_if_t<HasProperties<T>::value>>
87 template <typename T>
88 struct GetPropertyValue<T, std::enable_if_t<HasProperties<T>::value>>
105 template <typename T>
106 struct AssignInterface<T, std::enable_if_t<HasProperties<T>::value>>
131 template <typename T, typename Ops>
132 struct SerializeInterface<T, Ops, std::enable_if_t<HasProperties<T>::value>>
151 template <typename T, typename Ops>
[all …]
/openbmc/linux/tools/memory-model/scripts/
H A Dcheckghlitmus.sh15 T=/tmp/checkghlitmus.sh.$$
17 mkdir $T
40 xargs -r grep -L "^P${LKMM_PROCS}"> $T/list-C-already
45 xargs < $T/list-C -r grep -E -l '^ \* Result: (Never|Sometimes|Always|DEADLOCK)' > $T/list-C-result
46 xargs < $T/list-C-result -r grep -L "^P${LKMM_PROCS}" > $T/list-C-result-short
49 sort $T/list-C-already $T/list-C-result-short | uniq -u > $T/list-C-needed
52 if scripts/runlitmushist.sh < $T/list-C-needed > $T/run.stdout 2> $T/run.stderr
59 sed < $T/list-C-result-short -e 's,^,scripts/judgelitmus.sh ,' |
60 sh > $T/judge.stdout 2> $T/judge.stderr
64 cat $T/run.stderr 1>&2
[all …]

12345678910>>...45