/scripts/ |
A D | syscallhdr.sh | 36 prefix= 50 --prefix) 51 prefix=$2 86 echo "#define __NR_$prefix$name $nr" 92 echo "#define __NR_${prefix}syscalls $(($max + 1))"
|
A D | syscallnr.sh | 31 prefix= 39 --prefix) 40 prefix=$2 71 echo "#define __NR_${prefix}syscalls $(($max + 1))"
|
A D | rustdoc_test_gen.rs | 57 prefix: &Path, in find_real_path() 65 .join(prefix) in find_real_path() 72 .join(prefix) in find_real_path() 81 let prefix = prefix.join(components_prefix.join("_")); in find_real_path() 82 if srctree.join("rust/kernel").join(&prefix).is_dir() { in find_real_path() 83 find_candidates(srctree, valid_paths, &prefix, components_rest); in find_real_path()
|
A D | recordmcount.pl | 372 my $prefix; 384 $prefix = $1; 387 $prefix = $filename; 391 my $mcount_s = $dirname . "/.tmp_mc_" . $prefix . ".s"; 392 my $mcount_o = $dirname . "/.tmp_mc_" . $prefix . ".o"; 482 foreach my $prefix (keys %text_section_prefixes) { 483 if (substr($1, 0, length $prefix) eq $prefix) {
|
A D | faddr2line | 99 local prefix=${file_line%init/main.c:*} 100 if [[ -z $prefix ]] || [[ $prefix = $file_line ]]; then 104 DIR_PREFIX=$prefix
|
A D | get_feat.pl | 21 my $prefix=$basename . "../Documentation/features"; 30 "dir=s" => \$prefix, 97 return if ($file =~ m,($prefix)/arch-support.txt,); 105 $subsys = $2 if ( m,.*($prefix)/([^/]+).*,); 507 find({wanted =>\&parse_feat, no_chdir => 1}, $prefix);
|
A D | Makefile.kasan | 66 kasan_params += asan-kernel-mem-intrinsic-prefix=1 91 kasan_params += hwasan-kernel-mem-intrinsic-prefix=1
|
A D | documentation-file-ref-check | 107 my $prefix = $1; 127 my $fulref = "$prefix$ref";
|
A D | gen-crc-consts.py | 55 def pprint_poly(prefix, poly): argument 60 s = prefix + terms[j] + (' +' if j < len(terms) - 1 else '') 66 prefix = ' * ' + (' ' * (len(prefix) - 3))
|
A D | bloat-o-meter | 31 if args.prefix: 32 nm = "{}nm".format(args.prefix)
|
A D | sphinx-pre-install | 8 my $prefix = "./"; 9 $prefix = "$ENV{'srctree'}/" if ($ENV{'srctree'}); 11 my $conf = $prefix . "Documentation/conf.py"; 12 my $requirement_file = $prefix . "Documentation/sphinx/requirements.txt";
|
A D | Makefile.clang | 29 CLANG_FLAGS += --prefix=$(GCC_TOOLCHAIN_DIR)$(notdir $(CROSS_COMPILE))
|
/scripts/dtc/ |
A D | of_unittest_expect | 260 $prefix = " "; ## 2 characters 290 printf "%s %s%s%s\n", $prefix, $line_num, $timestamp, $line; 307 printf "%s %s%s%s\n", $prefix, $line_num, $timestamp, $line; 364 printf "%s %s%s%s\n", $prefix, $line_num, $timestamp, $line; 381 printf "%s %s%s%s\n", $prefix, $line_num, $timestamp, $line; 441 $prefix = "->"; # 2 characters 444 $prefix = ">>"; # 2 characters 466 $prefix = "ok"; # 2 characters 489 $prefix = "**"; # 2 characters 501 printf "%s %s%s%s\n", $prefix, $line_num, $timestamp, $line;
|
A D | srcpos.h | 96 extern void PRINTF(3, 0) srcpos_verror(struct srcpos *pos, const char *prefix, 98 extern void PRINTF(3, 4) srcpos_error(struct srcpos *pos, const char *prefix,
|
A D | srcpos.c | 375 void srcpos_verror(struct srcpos *pos, const char *prefix, in srcpos_verror() argument 382 fprintf(stderr, "%s: %s ", prefix, srcstr); in srcpos_verror() 389 void srcpos_error(struct srcpos *pos, const char *prefix, in srcpos_error() argument 395 srcpos_verror(pos, prefix, fmt, va); in srcpos_error()
|
A D | dtc.h | 92 #define strstarts(s, prefix) (strncmp((s), (prefix), strlen(prefix)) == 0) argument
|
/scripts/atomic/ |
A D | gen-atomic-fallback.sh | 226 local prefix="$1"; shift 234 ___r = raw_${prefix}${cmpxchg}${suffix}((_ptr), ___o, (_new)); \\ 278 local prefix="$1"; shift 282 printf "#define raw_${prefix}${cmpxchg}${suffix} arch_${prefix}${cmpxchg}${suffix}\n\n" 283 printf "#ifdef arch_${prefix}try_${cmpxchg}${suffix}\n" 284 printf "#define raw_${prefix}try_${cmpxchg}${suffix} arch_${prefix}try_${cmpxchg}${suffix}\n" 286 gen_try_cmpxchg_fallback "${prefix}" "${cmpxchg}" "${suffix}"
|
/scripts/mod/ |
A D | modpost.h | 84 #define strstarts(str, prefix) (strncmp(str, prefix, strlen(prefix)) == 0) argument
|
/scripts/kconfig/tests/ |
A D | pytest.ini | 5 # them as top-level modules. It is silly to prefix or suffix a test file with
|
/scripts/crypto/ |
A D | gen-hash-testvecs.py | 71 def print_bytes(prefix, value, bytes_per_line): argument 73 line = prefix + ''.join(f'0x{b:02x}, ' for b in value[i:i+bytes_per_line])
|
/scripts/clang-tools/ |
A D | gen_compile_commands.py | 173 prefix = command_prefix.replace('$(pound)', '#') 182 'command': prefix + file_path,
|
/scripts/selinux/mdp/ |
A D | mdp.c | 221 #define GENFSCON(fstype, prefix) \ in main() argument 223 fstype, prefix, mls ? ":" SYSTEMLOW : "") in main()
|
/scripts/lib/abi/ |
A D | system_symbols.py | 57 prefix = "├──" 60 prefix = "" 83 print(root_prefix + prefix + k)
|
/scripts/gendwarfksyms/ |
A D | types.c | 296 char prefix; in get_type_name() local 308 prefix = get_type_prefix(cache->tag); in get_type_name() 309 if (!prefix) in get_type_name() 316 if (asprintf(&name, "%c#%s%s%s", prefix, quote, cache->fqn, quote) < 0) in get_type_name()
|
A D | gendwarfksyms.h | 34 #define __println(prefix, format, ...) \ argument 35 fprintf(stderr, prefix __PREFIX "%s: " format "\n", __func__, \
|