Searched refs:T (Results 1 – 18 of 18) sorted by relevance
/scripts/ |
D | decodecode | 12 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 …]
|
D | leaking_addresses.pl | 452 if (! -T $file) {
|
/scripts/coccinelle/api/alloc/ |
D | zalloc-simple.cocci | 31 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 …]
|
D | alloc_cast.cocci | 30 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/ |
D | noderef.cocci | 21 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),...)
|
D | badty.cocci | 26 type T; 27 T **x; 32 * T 40 type T; 41 T **x; 46 - T 55 type T; 56 T **x; 62 T@p
|
D | array_size.cocci | 29 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))
|
D | flexible_array.cocci | 28 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[
|
D | returnvar.cocci | 19 type T; 23 - T ret = C; 32 type T; 36 * T ret = C; 42 type T; 47 T ret@p1 = C;
|
D | uninitialized_var.cocci | 25 type T; 30 * T var =@p var; 32 * T var =@p *(&(var));
|
/scripts/coccinelle/api/ |
D | kvmalloc.cocci | 28 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 …]
|
D | kfree_sensitive.cocci | 38 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/ |
D | put_device.cocci | 16 type T,T1,T2,T3; 26 when != e1 = (T)id 27 when != e1 = (T)(&id->dev)
|
D | pci_free_consistent.cocci | 17 type T; 26 when != e = (T)id
|
D | kfree.cocci | 33 type T; 39 f(...,c,...,(T)E@p,...)
|
/scripts/genksyms/ |
D | lex.l | 99 #define _APP(T,L) do { \ 103 cur_node->string = memcpy(xmalloc(L+1), T, L+1); \
|
/scripts/coccinelle/iterators/ |
D | use_after_iter.cocci | 39 type T; 130 T c;
|
/scripts/gcc-plugins/ |
D | gcc-common.h | 202 #define FOR_EACH_VEC_ELT(T, V, I, P) \ argument 203 for (I = 0; VEC_iterate(T, (V), (I), (P)); ++(I))
|