/linux-6.3-rc2/tools/debugging/ |
A D | kernel-chktaint | 62 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 …]
|
/linux-6.3-rc2/drivers/net/wireguard/selftest/ |
A D | counter.c | 71 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 …]
|
/linux-6.3-rc2/rust/kernel/sync/ |
A D | arc.rs | 150 impl<T> Arc<T> { 168 impl<T: ?Sized> Arc<T> { 222 impl<T: ?Sized> Deref for Arc<T> { 232 impl<T: ?Sized> Clone for Arc<T> { 244 impl<T: ?Sized> Drop for Arc<T> { 265 impl<T: ?Sized> From<UniqueArc<T>> for Arc<T> { 271 impl<T: ?Sized> From<Pin<UniqueArc<T>>> for Arc<T> { 354 impl<T: ?Sized> ArcBorrow<'_, T> { 371 impl<T: ?Sized> From<ArcBorrow<'_, T>> for Arc<T> { 470 impl<T> UniqueArc<T> { [all …]
|
/linux-6.3-rc2/tools/perf/tests/ |
A D | kmod-path.c | 44 #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 …]
|
/linux-6.3-rc2/rust/alloc/vec/ |
A D | into_iter.rs | 33 T, 47 impl<T: fmt::Debug, A: Allocator> fmt::Debug for IntoIter<T, A> { 53 impl<T, A: Allocator> IntoIter<T, A> { 136 impl<T, A: Allocator> AsRef<[T]> for IntoIter<T, A> { 148 impl<T, A: Allocator> Iterator for IntoIter<T, A> { 271 impl<T, A: Allocator> ExactSizeIterator for IntoIter<T, A> { 278 impl<T, A: Allocator> FusedIterator for IntoIter<T, A> {} 291 impl<T: Copy> NonDrop for T {} implementation 299 T: NonDrop, 322 impl<T, A: Allocator> Drop for DropGuard<'_, T, A> { in drop() [all …]
|
A D | mod.rs | 413 impl<T> Vec<T> { 2458 impl<T: Clone> ExtendWith<T> for ExtendElement<T> { 2725 impl<T> FromIterator<T> for Vec<T> { 2796 impl<T, A: Allocator> Extend<T> for Vec<T, A> { 3020 impl<T, A: Allocator> AsRef<Vec<T, A>> for Vec<T, A> { 3034 impl<T, A: Allocator> AsRef<[T]> for Vec<T, A> { 3041 impl<T, A: Allocator> AsMut<[T]> for Vec<T, A> { 3049 impl<T: Clone> From<&[T]> for Vec<T> { 3069 impl<T: Clone> From<&mut [T]> for Vec<T> { 3089 impl<T, const N: usize> From<[T; N]> for Vec<T> { [all …]
|
A D | drain.rs | 26 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> { 73 impl<'a, T, A: Allocator> AsRef<[T]> for Drain<'a, T, A> { 85 impl<T, A: Allocator> Iterator for Drain<'_, T, A> { 86 type Item = T; 99 impl<T, A: Allocator> DoubleEndedIterator for Drain<'_, T, A> { 107 impl<T, A: Allocator> Drop for Drain<'_, T, A> { 176 impl<T, A: Allocator> ExactSizeIterator for Drain<'_, T, A> { 183 unsafe impl<T, A: Allocator> TrustedLen for Drain<'_, T, A> {} [all …]
|
A D | drain_filter.rs | 26 T, 30 F: FnMut(&mut T) -> bool, 32 pub(super) vec: &'a mut Vec<T, A>, 49 impl<T, F, A: Allocator> DrainFilter<'_, T, F, A> 51 F: FnMut(&mut T) -> bool, 62 impl<T, F, A: Allocator> Iterator for DrainFilter<'_, T, F, A> 64 F: FnMut(&mut T) -> bool, 66 type Item = T; 100 impl<T, F, A: Allocator> Drop for DrainFilter<'_, T, F, A> 102 F: FnMut(&mut T) -> bool, [all …]
|
A D | partial_eq.rs | 12 impl<T, U, $($vars)*> PartialEq<$rhs> for $lhs 14 T: PartialEq<U>, 25 __impl_slice_eq1! { [A1: Allocator, A2: Allocator] Vec<T, A1>, Vec<U, A2>, #[stable(feature = "rust… 26 __impl_slice_eq1! { [A: Allocator] Vec<T, A>, &[U], #[stable(feature = "rust1", since = "1.0.0")] } 27 __impl_slice_eq1! { [A: Allocator] Vec<T, A>, &mut [U], #[stable(feature = "rust1", since = "1.0.0"… 30 __impl_slice_eq1! { [A: Allocator] Vec<T, A>, [U], #[stable(feature = "partialeq_vec_for_slice", si… 31 __impl_slice_eq1! { [A: Allocator] [T], Vec<U, A>, #[stable(feature = "partialeq_vec_for_slice", si… 33 __impl_slice_eq1! { [A: Allocator] Cow<'_, [T]>, Vec<U, A> where T: Clone, #[stable(feature = "rust… 35 __impl_slice_eq1! { [] Cow<'_, [T]>, &[U] where T: Clone, #[stable(feature = "rust1", since = "1.0.… 37 __impl_slice_eq1! { [] Cow<'_, [T]>, &mut [U] where T: Clone, #[stable(feature = "rust1", since = "… [all …]
|
/linux-6.3-rc2/rust/alloc/ |
A D | boxed.rs | 189 impl<T> Box<T> { 592 impl<T> Box<[T]> { 885 impl<T: ?Sized> Box<T> { 1386 impl<T> From<T> for Box<T> { 1421 impl<T: Copy> From<&[T]> for Box<[T]> { 1447 impl<T: Copy> From<Cow<'_, [T]>> for Box<[T]> { 1545 impl<T, const N: usize> From<[T; N]> for Box<[T]> { 1562 impl<T, const N: usize> TryFrom<Box<[T]>> for Box<[T; N]> { 1832 fn some<T>(_: Option<T>, x: T) -> Option<T> { in last() argument 1940 impl<T: ?Sized, A: Allocator> AsRef<T> for Box<T, A> { [all …]
|
A D | slice.rs | 167 pub fn into_vec<T, A: Allocator>(b: Box<[T], A>) -> Vec<T, A> { in into_vec() argument 243 impl<T> [T] { implementation 774 impl<T: Clone, V: Borrow<[T]>> Concat<T> for [V] { 789 impl<T: Clone, V: Borrow<[T]>> Join<&T> for [V] { 812 impl<T: Clone, V: Borrow<[T]>> Join<&[T]> for [V] { 839 impl<T> Borrow<[T]> for Vec<T> { 846 impl<T> BorrowMut<[T]> for Vec<T> { 854 impl<T: Clone> ToOwned for [T] { implementation 890 F: FnMut(&T, &T) -> bool, in insert_head() 962 F: FnMut(&T, &T) -> bool, in merge() [all …]
|
A D | raw_vec.rs | 54 pub(crate) struct RawVec<T, A: Allocator = Global> { 55 ptr: Unique<T>, 60 impl<T> RawVec<T, Global> { 107 impl<T, A: Allocator> RawVec<T, A> { 115 } else if mem::size_of::<T>() <= 1024 { 256 pub fn ptr(&self) -> *mut T { in ptr() argument 314 slf: &mut RawVec<T, A>, in reserve() argument 396 impl<T, A: Allocator> RawVec<T, A> { 422 if mem::size_of::<T>() == 0 { in grow_amortized() 448 if mem::size_of::<T>() == 0 { in grow_exact() [all …]
|
/linux-6.3-rc2/rust/kernel/ |
A D | types.rs | 66 impl<T: 'static> ForeignOwnable for Box<T> { 67 type Borrowed<'a> = &'a T; 171 pub struct ScopeGuard<T, F: FnOnce(T)>(Option<(T, F)>); 173 impl<T, F: FnOnce(T)> ScopeGuard<T, F> { 195 impl<T, F: FnOnce(T)> Deref for ScopeGuard<T, F> { 196 type Target = T; 198 fn deref(&self) -> &T { in deref() argument 204 impl<T, F: FnOnce(T)> DerefMut for ScopeGuard<T, F> { 211 impl<T, F: FnOnce(T)> Drop for ScopeGuard<T, F> { 224 pub struct Opaque<T>(MaybeUninit<UnsafeCell<T>>); [all …]
|
/linux-6.3-rc2/drivers/comedi/drivers/tests/ |
A D | ni_routes_test.c | 402 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 …]
|
/linux-6.3-rc2/tools/testing/selftests/rcutorture/bin/ |
A D | torture.sh | 251 touch $T/failures 252 touch $T/successes 278 cat $T/$curflavor.out | tee -a $T/log 307 mv $T/last-resdir $T/last-resdir-nodebug || : 312 mv $T/last-resdir $T/last-resdir-kasan || : 323 mv $T/last-resdir $T/last-resdir-kcsan || : 458 mv $T/last-resdir-nodebug $T/first-resdir-nodebug || : 461 mv $T/last-resdir-kasan $T/first-resdir-kasan || : 465 mv $T/last-resdir-kcsan $T/first-resdir-kcsan || : 521 cat "$T/successes" | tee -a $T/log [all …]
|
A D | parse-build.sh | 18 T="`mktemp -d ${TMPDIR-/tmp}/parse-build.sh.XXXXXX`" 38 grep warning: < $F > $T/warnings 39 grep "include/linux/*rcu*\.h:" $T/warnings > $T/hwarnings 40 grep "kernel/rcu/[^/]*:" $T/warnings > $T/cwarnings 41 grep "^ld: .*undefined reference to" $T/warnings | head -1 > $T/ldwarnings 42 cat $T/hwarnings $T/cwarnings $T/ldwarnings > $T/rcuwarnings 43 if test -s $T/rcuwarnings 46 cat $T/rcuwarnings
|
A D | kvm-remote.sh | 48 TD="`basename "$T"`" 50 resdir="$T/res" 73 cat $T/kvm.sh.out 81 cat $T/kvm.sh.out | tee -a "$oldrun/remote-log" 115 cat $T/kvm-again.sh.out 134 chmod +x $T/bin/kvm-remote-*.sh 135 ( cd "`dirname $T`"; tar -chzf $T/binres.tgz "$TD/bin" "$TD/res" ) 248 startbatches $curbatch $nbatches > $T/curbatch 2> $T/startbatches.stderr 249 curbatch="`cat $T/curbatch`" 250 if test -s "$T/startbatches.stderr" [all …]
|
/linux-6.3-rc2/scripts/ |
A D | decodecode | 14 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 …]
|
/linux-6.3-rc2/tools/memory-model/scripts/ |
A D | cmplitmushist.sh | 10 T=/tmp/cmplitmushist.sh.$$ 12 mkdir $T 23 if cmp -s $T/oldout $T/newout && grep -q '^Observation' $1 30 grep '^Observation' $1 > $T/oldout 31 grep '^Observation' $2 > $T/newout 32 if test -s $T/oldout -o -s $T/newout 34 if cmp -s $T/oldout $T/newout 48 if cmp -s $T/oldout $T/newout 60 . $T/cmpscript > $T/cmpscript.out 61 cat $T/cmpscript.out [all …]
|
A D | checkghlitmus.sh | 14 T=/tmp/checkghlitmus.sh.$$ 16 mkdir $T 39 xargs -r grep -L "^P${LKMM_PROCS}"> $T/list-C-already 44 xargs < $T/list-C -r egrep -l '^ \* Result: (Never|Sometimes|Always|DEADLOCK)' > $T/list-C-result 45 xargs < $T/list-C-result -r grep -L "^P${LKMM_PROCS}" > $T/list-C-result-short 48 sort $T/list-C-already $T/list-C-result-short | uniq -u > $T/list-C-needed 51 if scripts/runlitmushist.sh < $T/list-C-needed > $T/run.stdout 2> $T/run.stderr 58 sed < $T/list-C-result-short -e 's,^,scripts/judgelitmus.sh ,' | 59 sh > $T/judge.stdout 2> $T/judge.stderr 63 cat $T/run.stderr 1>&2 [all …]
|
A D | newlitmushist.sh | 19 T=/tmp/newlitmushist.sh.$$ 21 mkdir $T 42 xargs -r grep -L "^P${LKMM_PROCS}"> $T/list-C-already 46 find litmus -name '*.litmus' -exec grep -l -m 1 "^C " {} \; > $T/list-C-all 47 xargs < $T/list-C-all -r grep -L "^P${LKMM_PROCS}" > $T/list-C-short 50 sort $T/list-C-already $T/list-C-short | uniq -u > $T/list-C-new 53 sed < $T/list-C-short -e 's,^.*$,if test & -nt '"$LKMM_DESTDIR"'/&.out; then echo &; fi,' > $T/list… 54 sh $T/list-C-script > $T/list-C-newer 57 sort -u $T/list-C-new $T/list-C-newer > $T/list-C-needed 59 scripts/runlitmushist.sh < $T/list-C-needed
|
A D | checklitmushist.sh | 19 T=/tmp/checklitmushist.sh.$$ 21 mkdir $T 34 mkdir $T/results 35 find litmus -type d -print | ( cd $T/results; sed -e 's/^/mkdir -p /' | sh ) 41 xargs -r grep -L "^P${LKMM_PROCS}"> $T/list-C-already 42 xargs < $T/list-C-already -r grep -L "^P${LKMM_PROCS}" > $T/list-C-short 46 LKMM_DESTDIR=$T/results; export LKMM_DESTDIR 47 scripts/runlitmushist.sh < $T/list-C-short > $T/runlitmushist.sh.out 2>&1 55 ( cd $T/results; find litmus -type f -name '*.litmus.out' -print | 58 sed < $T/list-C-short -e 's,^,'"$LKMM_DESTDIR/"',' |
|
/linux-6.3-rc2/include/linux/ |
A D | overflow.h | 34 #define type_max(T) ((T)((__type_half_max(T) - 1) + __type_half_max(T))) argument 35 #define type_min(T) ((T)((T)-type_max(T)-(T)1)) argument 133 (x) > type_max(typeof(T)) : \ 134 is_unsigned_type(typeof(T)) ? \ 136 (x) < type_min(typeof(T)) || (x) > type_max(typeof(T))) 138 #define __overflows_type(x, T) ({ \ argument 139 typeof(T) v = 0; \ 157 #define overflows_type(n, T) \ argument 160 __overflows_type(n, T)) 173 #define castable_to_type(n, T) \ argument [all …]
|
/linux-6.3-rc2/Documentation/admin-guide/media/ |
A D | dvb-usb-af9015-cardlist.rst | 17 * - AVerMedia AVerTV DVB-T Volar X 43 * - KWorld PlusTV DVB-T PCI Pro Card (DVB-T PC160-T) 45 * - KWorld PlusTV Dual DVB-T PCI (DVB-T PC160-2T) 47 * - KWorld PlusTV Dual DVB-T Stick (DVB-T 399U) 49 * - KWorld USB DVB-T Stick Mobile (UB383-T) 51 * - KWorld USB DVB-T TV Stick II (VS-DVB-T 395U) 63 * - Sveon STV20 Tuner USB DVB-T HDTV 69 * - TerraTec Cinergy T Stick Dual RC 71 * - TerraTec Cinergy T Stick RC 73 * - TerraTec Cinergy T USB XE [all …]
|
/linux-6.3-rc2/drivers/gpu/drm/nouveau/nvkm/subdev/fb/ |
A D | ramnv50.c | 88 T(CWL) = T(CL) - 1; in nv50_ram_timing_calc() 98 timing[6] = (0x2d + T(CL) - T(CWL) + in nv50_ram_timing_calc() 101 (0x2f + T(CL) - T(CWL)); in nv50_ram_timing_calc() 104 timing[6] = (0x2b + T(CL) - T(CWL)) << 16 | in nv50_ram_timing_calc() 106 (0x2e + T(CL) - T(CWL)); in nv50_ram_timing_calc() 109 timing[0] = (T(RP) << 24 | T(RAS) << 16 | T(RFC) << 8 | T(RC)); in nv50_ram_timing_calc() 110 timing[1] = (T(WR) + 1 + T(CWL)) << 24 | in nv50_ram_timing_calc() 112 (T(WTR) + 1 + T(CWL)) << 8 | in nv50_ram_timing_calc() 113 (3 + T(CL) - T(CWL)); in nv50_ram_timing_calc() 126 max_t(u8, T(RCDRD), T(RCDWR)) << 16 | in nv50_ram_timing_calc() [all …]
|