Home
last modified time | relevance | path

Searched refs:first (Results 1 – 21 of 21) sorted by relevance

/scripts/gdb/linux/
Dmodules.py84 first = True
88 separator=" " if first else ",",
90 first = False
/scripts/
Dheaderdep.pl124 my $first = shift @$cycle;
138 $first->[1], $first->[0];
Ddev-needs.sh15 parents) of these devices. It does a breadth first search of the dependency
21 It also takes an optional modifier flag as the first parameter to change
Dsubarch.include2 # first, and if a usermode build is happening, the "ARCH=um" on the command
Dget_maintainer.pl2464 my $first = $nw[@nw - 3];
2468 if (((length($first) == 1 && $first =~ m/[A-Za-z]/) ||
2469 (length($first) == 2 && substr($first, -1) eq ".")) ||
2472 $name = "$first $middle $last";
Dcheckpatch.pl3516 my $first = $1;
3520 if ($first =~ /(?:struct|union|enum)/) {
3521 pos($rawline) += length($first) + length($second) + 1;
3525 next if (lc($first) ne lc($second));
3526 next if ($first eq 'long');
3538 if ($first =~ /\b[0-9a-f]{2,}\b/i) {
3539 next if (!exists($allow_repeated_words{lc($first)}));
3543 "Possible repeated word: '$first'\n" . $herecurr) &&
3545 $fixed[$fixlinenr] =~ s/\b$first $second\b/$first/;
6007 my $first = 1;
[all …]
DKbuild.include76 # Return first <prefix> where a <prefix>gcc is found in PATH.
/scripts/dtc/
Dsrcpos.c314 char *pos_str, *fname, *first, *rest; in srcpos_string_comment() local
341 xasprintf(&first, "%s:%d:%d-%d:%d", fname, in srcpos_string_comment()
345 xasprintf(&first, "%s:%d", fname, in srcpos_string_comment()
353 xasprintf(&pos_str, "%s, %s", first, rest); in srcpos_string_comment()
354 free(first); in srcpos_string_comment()
357 pos_str = first; in srcpos_string_comment()
Dlivetree.c65 struct property *chain_property(struct property *first, struct property *list) in chain_property() argument
67 assert(first->next == NULL); in chain_property()
69 first->next = list; in chain_property()
70 return first; in chain_property()
73 struct property *reverse_properties(struct property *first) in reverse_properties() argument
75 struct property *p = first; in reverse_properties()
258 struct node *chain_node(struct node *first, struct node *list) in chain_node() argument
260 assert(first->next_sibling == NULL); in chain_node()
262 first->next_sibling = list; in chain_node()
263 return first; in chain_node()
[all …]
Ddt_to_config1046 my $first = 1;
1048 if ($first) {
1051 $first = 0;
1072 my $first = 1;
1074 if ($first) {
1077 $first = 0;
Ddtc.h230 struct property *chain_property(struct property *first, struct property *list);
231 struct property *reverse_properties(struct property *first);
239 struct node *chain_node(struct node *first, struct node *list);
281 struct reserve_info *chain_reserve_entry(struct reserve_info *first,
Ddtx_diff47 If DTx contains the binary blob magic value in the first four bytes,
/scripts/kconfig/tests/preprocess/builtin_func/
DKconfig6 # 'warning-if', if the first argument is y, sends the second argument to stderr,
11 # The following is just no-op since the first argument is not y.
/scripts/coccinelle/iterators/
Dlist_entry_update.cocci2 /// list_for_each_entry uses its first argument to get from one element of
4 /// The first rule finds such a reassignment and the second rule checks
Ditnull.cocci2 /// Many iterators have the property that the first argument is always bound
/scripts/coccinelle/misc/
Darray_size.cocci5 //# where there is a division of sizeof the array by the sizeof its first
Ddoubleinit.cocci53 msg = "%s: first occurrence line %s, second occurrence line %s" % (fld,ps[0].line,pr[0].line)
Darray_size_dup.cocci7 /// From security point of view only first case is relevant. These functions
/scripts/coccinelle/locks/
Dcall_kern.cocci5 //# function under the lock in the first place.
/scripts/mod/
Dmodpost.c2359 int first = 1; in add_depends() local
2382 buf_printf(b, "%s%s", first ? "" : ",", p); in add_depends()
2383 first = 0; in add_depends()
/scripts/kconfig/
Dqconf.cc401 ConfigItem* item = (ConfigItem*)selectedItems().first(); in updateSelection()
806 if (x >= off && x < off + icon.availableSizes().first().width()) { in mouseReleaseEvent()