Home
last modified time | relevance | path

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

/scripts/include/
Dlist.h320 #define HLIST_HEAD_INIT { .first = NULL }
321 #define INIT_HLIST_HEAD(ptr) ((ptr)->first = NULL)
389 struct hlist_node *first = h->first; in hlist_add_head() local
391 n->next = first; in hlist_add_head()
392 if (first) in hlist_add_head()
393 first->pprev = &n->next; in hlist_add_head()
394 h->first = n; in hlist_add_head()
395 n->pprev = &h->first; in hlist_add_head()
412 for (pos = hlist_entry_safe((head)->first, typeof(*(pos)), member);\
424 for (pos = hlist_entry_safe((head)->first, typeof(*pos), member);\
Dlist_types.h10 struct hlist_node *first; member
/scripts/
Dheaderdep.pl124 my $first = shift @$cycle;
138 $first->[1], $first->[0];
Dgit.orderFile4 # by diffing the important stuff like header changes first.
Dsubarch.include2 # first, and if a usermode build is happening, the "ARCH=um" on the command
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
Dget_maintainer.pl2490 my $first = $nw[@nw - 3];
2494 if (((length($first) == 1 && $first =~ m/\p{L}/) ||
2495 (length($first) == 2 && substr($first, -1) eq ".")) ||
2498 $name = "$first $middle $last";
Dcheckpatch.pl3530 my $first = $1;
3534 if ($first =~ /(?:struct|union|enum)/) {
3535 pos($rawline) += length($first) + length($second) + 1;
3539 next if (lc($first) ne lc($second));
3540 next if ($first eq 'long');
3552 if ($first =~ /\b[0-9a-f]{2,}\b/i) {
3553 next if (!exists($allow_repeated_words{lc($first)}));
3557 "Possible repeated word: '$first'\n" . $herecurr) &&
3559 $fixed[$fixlinenr] =~ s/\b$first $second\b/$first/;
6011 my $first = 1;
[all …]
/scripts/gdb/linux/
Dmodules.py90 first = True
94 separator=" " if first else ",",
96 first = False
Dmapletree.py35 def __init__(self, mt, first, end): argument
42 self.index = first
/scripts/dtc/
Dsrcpos.c316 char *pos_str, *fresh_fname = NULL, *first, *rest; in srcpos_string_comment() local
343 xasprintf(&first, "%s:%d:%d-%d:%d", fname, in srcpos_string_comment()
347 xasprintf(&first, "%s:%d", fname, in srcpos_string_comment()
355 xasprintf(&pos_str, "%s, %s", first, rest); in srcpos_string_comment()
356 free(first); in srcpos_string_comment()
359 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()
259 struct node *chain_node(struct node *first, struct node *list) in chain_node() argument
261 assert(first->next_sibling == NULL); in chain_node()
263 first->next_sibling = list; in chain_node()
264 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.h266 struct property *chain_property(struct property *first, struct property *list);
267 struct property *reverse_properties(struct property *first);
275 struct node *chain_node(struct node *first, struct node *list);
317 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.c1938 int first = 1; in add_depends() local
1962 buf_printf(b, "%s%s", first ? "" : ",", p); in add_depends()
1963 first = 0; in add_depends()
/scripts/kconfig/
Dqconf.cc406 ConfigItem* item = (ConfigItem*)selectedItems().first(); in updateSelection()
811 if (x >= off && x < off + icon.availableSizes().first().width()) { in mouseReleaseEvent()