| /scripts/ |
| D | decodecode | 76 t=$1 79 ${CROSS_COMPILE}as $AFLAGS -o $t.o $t.s > /dev/null 2>&1 86 ${CROSS_COMPILE}strip $t.o 94 ${CROSS_COMPILE}strip $t.o 99 ${CROSS_COMPILE}strip $t.o 103 ${CROSS_COMPILE}strip $t.o 113 ${CROSS_COMPILE}objdump $OBJDUMPFLAGS -S $t.o | \ 114 grep -v "/tmp\|Disassembly\|\.text\|^$" > $t.dis 2>&1
|
| D | check-sysctl-docs | 112 curtable && /\.procname[\t ]*=[\t ]*".+"/ { 113 match($0, /.procname[\t ]*=[\t ]*"([^"]+)"/, names) 131 match($0, /([^ \t]+) *= *kmemdup\(([^,]+) *,/, names)
|
| D | recordmcount.h | 278 uint_t t = 1 + strlen(mc_name) + _w(shstr->sh_size); in append_func() local 281 shstr->sh_size = _w(t); in append_func() 283 t += sb.st_size; in append_func() 284 t += (_align & -t); /* word-byte align */ in append_func() 285 new_e_shoff = t; in append_func() 298 if (ulseek(t, SEEK_SET) < 0) in append_func() 300 t += sizeof(Elf_Shdr) * old_shnum; in append_func() 306 t += 2*sizeof(mcsec); in append_func() 312 mcsec.sh_offset = _w(t); in append_func() 327 mcsec.sh_offset = _w((void *)mlocp - (void *)mloc0 + t); in append_func() [all …]
|
| D | bpf_doc.py | 796 def map_type(self, t): argument 797 if t in self.known_types: 798 return t 799 if t in self.mapped_types: 800 return self.mapped_types[t] 801 print("Unrecognized type '%s', please add it to known types!" % t, 834 t = a['type'] 837 t = 'void' 839 one_arg = '{}{}'.format(comma, self.map_type(t))
|
| D | dev-needs.sh | 40 --exclude-devlinks Don't follow device links when tracking probe 60 printf '%05u\t%s\n' ${i} "$D" | tr -d \' 125 # They can also have cycles. So, don't follow them.
|
| D | asn1_compiler.c | 749 unsigned nr, t, n; in build_type_list() local 774 t = 0; in build_type_list() 775 types[t].flags |= TYPE_BEGIN; in build_type_list() 779 types[t].name = &token_list[n]; in build_type_list() 780 type_index[t] = &types[t]; in build_type_list() 781 t++; in build_type_list() 784 types[t].name = &token_list[n + 1]; in build_type_list() 785 types[t].flags |= TYPE_STOP_MARKER; in build_type_list() 1213 const struct type *t = e->type_def; in dump_element() local 1215 const char *tname = t && t->name ? t->name->content : "."; in dump_element()
|
| D | spelling.txt | 165 arne't||aren't 283 cant||can't 284 cant'||can't 286 cann't||can't 523 didnt||didn't 571 doesnt||doesn't 914 isnt||isn't 1421 shouldnt||shouldn't 1706 was't||wasn't 1722 wont||won't
|
| D | bloat-o-meter | 108 elif args.t:
|
| /scripts/coccinelle/api/alloc/ |
| D | alloc_cast.cocci | 46 t << r1.T; 49 if m.search(t) != None: 69 t << r1.T; 72 if m.search(t) != None: 106 t << r2.T; 109 if m.search(t) != None: 112 coccilib.org.print_safe_todo(p[0], t) 116 t << r2.T; 119 if m.search(t) != None: 122 msg="WARNING: casting value returned by memory allocation function to (%s *) is useless." % (t)
|
| /scripts/gdb/linux/ |
| D | tasks.py | 25 t = init_task 28 thread_head = t['signal']['thread_head'] 32 t = utils.container_of(t['tasks']['next'], 34 if t == init_task:
|
| D | mapletree.py | 162 def mt_pivots(t): argument 163 if t == maple_dense: 165 elif t == maple_leaf_64 or t == maple_range_64: 167 elif t == maple_arange_64: 170 def ma_pivots(node, t): argument 174 if t == maple_arange_64: 176 elif t == maple_leaf_64 or t == maple_range_64:
|
| D | modules.py | 89 t = self._module_use_type.get_type().pointer() 92 for use in lists.list_for_each_entry(sources, t, "source_list"): 103 t = """Usage: lx-getmod-by-textaddr [Heximal Address] 106 raise gdb.GdbError(t)
|
| D | kasan.py | 13 t = """Usage: lx-kasan_mem_to_shadow [Hex memory addr] 17 raise gdb.GdbError(t)
|
| D | stackdepot.py | 17 t = """Usage: lx-stack_depot_lookup [Hex handle value] 21 raise gdb.GdbError(t)
|
| D | slab.py | 82 t = (a * int(R['m'])) >> 32 83 return (t + ((a - t) >> int(R['sh1']))) >> int(R['sh2']) 239 t = """Usage: lx-slabtrace --cache_name [cache_name] [Options] 249 raise gdb.GdbError(t)
|
| D | page_owner.py | 22 t = """Usage: lx-dump-page-owner [Option] 28 raise gdb.GdbError(t)
|
| /scripts/kconfig/ |
| D | lexer.l | 100 [ \t]* /* whitespaces */ 211 if (yytext[i] == '\t') 239 if ((yytext[yyleng-1] != ' ') && (yytext[yyleng-1] != '\t')) 400 fprintf(stderr, "can't find file %s\n", name);
|
| /scripts/genksyms/ |
| D | lex.l | 55 ^#[ \t]+{INT}[ \t]+\"[^\"\n]+\".*\n return FILENAME; 60 [ \t\f\v\r]+ ;
|
| /scripts/coccinelle/api/ |
| D | check_bq27xxx_data.cocci | 4 //# Doesn't unfold macros used in register or property fields. 23 type t; 28 t i[] = {
|
| /scripts/gcc-plugins/ |
| D | gcc-common.h | 453 static inline void debug_tree(const_tree t) in debug_tree() argument 455 debug_tree(CONST_CAST_TREE(t)); in debug_tree() 463 #define debug_tree(t) debug_tree(CONST_CAST_TREE(t)) argument
|
| /scripts/coccinelle/null/ |
| D | eno.cocci | 2 /// The various basic memory allocation functions don't return ERR_PTR
|
| /scripts/coccinelle/misc/ |
| D | uninitialized_var.cocci | 3 /// Please, don't reintroduce uninitialized_var().
|
| /scripts/coccinelle/iterators/ |
| D | device_node_continue.cocci | 70 @t depends on s && patch && !context && !org && !report@
|
| /scripts/dtc/ |
| D | dtc-lexer.l | 80 /* Don't allow nuls in filenames */
|
| D | dtc.h | 145 #define for_each_marker_of_type(m, t) \ argument 147 if ((m)->type == (t))
|