Home
last modified time | relevance | path

Searched refs:a (Results 1 – 25 of 29) sorted by relevance

12

/scripts/
A Dld-version.sh8 split($1,a, ".");
9 print a[1]*100000000 + a[2]*1000000 + a[3]*10000;
A Dcleanpatch82 while (defined($a = shift(@ARGV))) {
83 if ($a =~ /^-/) {
84 if ($a eq '-width' || $a eq '-w') {
91 push(@files, $a);
A Dconfig15 Manipulate options in a .config file from the command line.
21 --module|-m option Turn option into a module
75 # sed append cmd: 'a\' + newline + text + newline
A DMakefile.lib38 obj-y := $(patsubst %/, %/built-in.a, $(obj-y))
71 subdir-obj-y := $(filter %/built-in.a, $(obj-y))
354 echo '.section .dtb.init.rodata,"a"'; \
372 echo '.section .dtb.init.rodata,"a"'; \
458 echo '.section .rodata.ttf.init,"a"'; \
479 echo '.section .rodata.splash.init,"a"'; \
500 echo '.section .rodata.$*.init,"a"'; \
A Dbuild_OID_registry150 my @octets_a = @{$encoded_oids[$a]};
153 return $hash_values[$a] <=> $hash_values[$b]
154 if ($hash_values[$a] != $hash_values[$b]);
A DKbuild.include14 # Name of target with a '.' as filename prefix. foo/bar.o => foo/.bar.o
19 # contain a comma
43 # Easy method for doing a status message
50 # filechk is used to check if the content of a generated file is updated.
62 # to specify a valid file as first prerequisite (often the kbuild file)
81 # Return first prefix where a prefix$(CC) is found in PATH.
252 # Replace >#< with >$(pound)< to avoid starting a comment in the .cmd file
283 # why - tell why a a target got build
300 # This is a good hint that there is a bug in the kbuild file
A Dcheckstack.pl171 print sort { ($b =~ /:\t*(\d+)$/)[0] <=> ($a =~ /:\t*(\d+)$/)[0] } @stack;
A DMakefile.build78 lib-target := $(obj)/lib.a
84 builtin-target := $(obj)/built-in.a
/scripts/kconfig/
A Dnconf.h26 #define max(a, b) ({\ argument
27 typeof(a) _a = a;\
31 #define min(a, b) ({\ argument
32 typeof(a) _a = a;\
/scripts/dtc/pylibfdt/
A Dlibfdt.i_shipped22 * a struct called fdt_property. That struct causes swig to create a class in
405 """Get a property from a node
413 Value of property as a Property object (which can be used as a
648 """Delete a property from a node
664 """Add a new subnode to a node
870 """Add a property with a string value
885 """Add a property with a 32-bit value
900 """Add a property with a 64-bit value
915 """Add a property with a single-cell value
949 """End a node
[all …]
/scripts/kconfig/tests/err_recursive_dep/
A Dexpected_stderr3 For a resolution refer to Documentation/kbuild/kconfig-language.rst
8 For a resolution refer to Documentation/kbuild/kconfig-language.rst
14 For a resolution refer to Documentation/kbuild/kconfig-language.rst
20 For a resolution refer to Documentation/kbuild/kconfig-language.rst
26 For a resolution refer to Documentation/kbuild/kconfig-language.rst
31 For a resolution refer to Documentation/kbuild/kconfig-language.rst
37 For a resolution refer to Documentation/kbuild/kconfig-language.rst
/scripts/kconfig/tests/auto_submenu/
A DKconfig10 This depends on A, so should be a submenu of A.
17 This should be a submenu of A0.
30 Choice should become a submenu as well.
49 This depends on A, but not a consecutive item, so can/should not
50 be a submenu.
/scripts/kconfig/tests/new_choice_with_dep/
A DKconfig4 This is a new symbol.
18 This is a new symbol, so should be asked.
35 This is a new symbol, so should be asked.
/scripts/dtc/libfdt/
A Dlibfdt_internal.h10 #define FDT_ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1)) argument
/scripts/dtc/
A Ddtc-lexer.l27 PROPNODECHAR [a-zA-Z0-9,._+*#?@-]
29 LABEL [a-zA-Z_][a-zA-Z0-9_]*
169 <V1>([0-9]+|0[xX][0-9a-fA-F]+)(U|L|UL|LL|ULL)? {
225 <BYTESTRING>[0-9a-fA-F]{2} {
A Ddtc.h68 #define streq(a, b) (strcmp((a), (b)) == 0) argument
70 #define strprefixeq(a, n, b) (strlen(b) == (n) && (memcmp(a, b, n) == 0)) argument
72 #define ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1)) argument
A DREADME2 working with device tree source and binary files and also libfdt, a
51 The library can be installed with pip from a local source tree:
55 Or directly from a remote git repo:
80 Adding a new function to libfdt.h
95 If you want to adjust a test file, be aware that tree_tree1.dts is compiled
96 and checked against a binary tree from assembler macros in trees.S. So
A Dlivetree.c676 const struct reserve_info *a, *b; in cmp_reserve_info() local
681 if (a->address < b->address) in cmp_reserve_info()
683 else if (a->address > b->address) in cmp_reserve_info()
685 else if (a->size < b->size) in cmp_reserve_info()
687 else if (a->size > b->size) in cmp_reserve_info()
725 const struct property *a, *b; in cmp_prop() local
727 a = *((const struct property * const *)ax); in cmp_prop()
730 return strcmp(a->name, b->name); in cmp_prop()
761 const struct node *a, *b; in cmp_subnode() local
763 a = *((const struct node * const *)ax); in cmp_subnode()
[all …]
A Dflattree.c78 static void bin_emit_align(void *e, int a) in bin_emit_align() argument
82 *dtbuf = data_append_align(*dtbuf, a); in bin_emit_align()
157 static void asm_emit_align(void *e, int a) in asm_emit_align() argument
161 fprintf(f, "\t.balign\t%d, 0\n", a); in asm_emit_align()
/scripts/coccinelle/iterators/
A Duse_after_iter.cocci1 /// If list_for_each_entry, etc complete a traversal of the list, the iterator
3 /// and not a meaningful structure. Thus this value should not be used after
5 //#False positives arise when there is a goto in the iterator and the
7 //#may also cause a report to be a false positive.
A Dlist_entry_update.cocci2 /// the list to the next, so it is usually not a good idea to reassign it.
3 /// The first rule finds such a reassignment and the second rule checks
4 /// that there is a path from the reassignment back to the top of the loop.
A Ditnull.cocci2 /// to a real list element, never NULL.
5 //# happen when the matched code is on the way to a loop exit (break, goto,
/scripts/coccinelle/misc/
A Dbadty.cocci5 //# when it is a double pointer and ensuring the sizeof argument takes a pointer
/scripts/coccinelle/null/
A Dkmerr.cocci1 /// This semantic patch looks for malloc etc that are not followed by a
2 /// NULL check. It only gives a report in the case where there is some
/scripts/kconfig/tests/
A Dpytest.ini5 # them as top-level modules. It is silly to prefix or suffix a test file with

Completed in 32 milliseconds

12