Home
last modified time | relevance | path

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

/scripts/
Ddecodecode12 rm -f $T $T.s $T.o $T.oo $T.aa $T.dis
23 T=`mktemp` || die "cannot create temp file"
49 rm $T
111 touch $T.oo
115 echo All code >> $T.oo
116 echo ======== >> $T.oo
118 echo -n " .$type 0x" > $T.s
119 echo $beforemark | sed -e 's/ /,0x/g; s/[<>()]//g' >> $T.s
120 disas $T $pc_sub
121 cat $T.dis >> $T.oo
[all …]
Dleaking_addresses.pl452 if (! -T $file) {
/scripts/coccinelle/api/alloc/
Dzalloc-simple.cocci31 type T, T2;
37 * x = (T)\(kmalloc(E1, ...)\|vmalloc(E1)\|dma_alloc_coherent(...,E1,...)\|
48 type T, T2;
58 - x = (T *)kmalloc(E1,E2);
61 - x = (T)kmalloc(E1,E2);
62 + x = (T)kzalloc(E1,E2);
67 - x = (T *)vmalloc(E1);
70 - x = (T)vmalloc(E1);
71 + x = (T)vzalloc(E1);
76 - x = (T *)kmalloc_node(E1,E2,E3);
[all …]
Dalloc_cast.cocci30 type T;
33 (T *)
46 t << r1.T;
53 type r1.T;
56 * (T *)
69 t << r1.T;
76 type r1.T;
79 - (T *)
92 type T;
96 (T@p *)
[all …]
/scripts/coccinelle/misc/
Dnoderef.cocci21 type T;
30 f(...,(T)(x),...,sizeof(
38 ),...,(T)(x),...)
40 f(...,(T)(x),...,i*sizeof(
48 ),...,(T)(x),...)
56 type T;
62 *f(...,(T)(x),...,sizeof@p(x),...)
64 *f(...,sizeof@p(x),...,(T)(x),...)
66 *f(...,(T)(x),...,i*sizeof@p(x),...)
68 *f(...,i*sizeof@p(x),...,(T)(x),...)
Dbadty.cocci26 type T;
27 T **x;
32 * T
40 type T;
41 T **x;
46 - T
55 type T;
56 T **x;
62 T@p
Darray_size.cocci29 type T;
30 T[] E;
37 * (sizeof(E)/sizeof(T))
45 type T;
46 T[] E;
55 - (sizeof(E)/sizeof(T))
64 type T;
65 T[] E;
73 (sizeof(E)@p /sizeof(T))
Dflexible_array.cocci28 type T;
35 * T array@p[\(0\|1\)];
40 * T array@p[\(0\|1\)];
45 * T array@p[\(0\|1\)];
50 * T array@p[\(0\|1\)];
56 type T;
63 T array@p[
70 T array@p[
Dreturnvar.cocci19 type T;
23 - T ret = C;
32 type T;
36 * T ret = C;
42 type T;
47 T ret@p1 = C;
Duninitialized_var.cocci25 type T;
30 * T var =@p var;
32 * T var =@p *(&(var));
/scripts/coccinelle/api/
Dkvmalloc.cocci28 type T;
57 * T x = \(kmalloc\|kzalloc\|kcalloc\|kmalloc_node\|kzalloc_node\|
90 type T;
116 - T x = kmalloc(size, flags | __GFP_NOWARN);
119 + T x = kvmalloc(size, flags);
121 - T x = kmalloc(size, \(GFP_KERNEL\|GFP_KERNEL|__GFP_NOWARN\));
124 + T x = kvmalloc(size, GFP_KERNEL);
148 - T x = kzalloc(size, flags | __GFP_NOWARN);
151 + T x = kvzalloc(size, flags);
153 - T x = kzalloc(size, \(GFP_KERNEL\|GFP_KERNEL|__GFP_NOWARN\));
[all …]
Dkfree_sensitive.cocci38 type T;
42 * memset@m((T)E, 0, ...);
44 * memzero_explicit@m((T)E, ...);
54 type T;
57 - memzero_explicit@m((T)E, size);
72 type T;
75 - memset@m((T)E, 0, size);
/scripts/coccinelle/free/
Dput_device.cocci16 type T,T1,T2,T3;
26 when != e1 = (T)id
27 when != e1 = (T)(&id->dev)
Dpci_free_consistent.cocci17 type T;
26 when != e = (T)id
Dkfree.cocci33 type T;
39 f(...,c,...,(T)E@p,...)
/scripts/genksyms/
Dlex.l99 #define _APP(T,L) do { \
103 cur_node->string = memcpy(xmalloc(L+1), T, L+1); \
/scripts/coccinelle/iterators/
Duse_after_iter.cocci39 type T;
130 T c;
/scripts/gcc-plugins/
Dgcc-common.h202 #define FOR_EACH_VEC_ELT(T, V, I, P) \ argument
203 for (I = 0; VEC_iterate(T, (V), (I), (P)); ++(I))