Home
last modified time | relevance | path

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

/scripts/gdb/linux/
Dmodules.py85 first = True
89 separator=" " if first else ",",
91 first = False
/scripts/
Dheaderdep.pl123 my $first = shift @$cycle;
137 $first->[1], $first->[0];
Dget_maintainer.pl2153 my $first = $nw[@nw - 3];
2157 if (((length($first) == 1 && $first =~ m/[A-Za-z]/) ||
2158 (length($first) == 2 && substr($first, -1) eq ".")) ||
2161 $name = "$first $middle $last";
DKbuild.include26 # filename of first prerequisite with directory and extension stripped
53 # - stdin is piped in from the first prerequisite ($<) so one has
54 # to specify a valid file as first prerequisite (often the kbuild file)
74 # Return first prefix where a prefix$(CC) is found in PATH.
Danalyze_suspend.py735 first = self.list[0]
737 self.list.append(first)
2922 first = '%-8s' % name
2924 first = '%8s' % name
2926 (first, field['idVendor'], field['idProduct'], \
3036 first = fp.read(8)
3039 rechead = struct.unpack('4sI', first)
/scripts/dtc/
Dlivetree.c77 struct property *chain_property(struct property *first, struct property *list) in chain_property() argument
79 assert(first->next == NULL); in chain_property()
81 first->next = list; in chain_property()
82 return first; in chain_property()
85 struct property *reverse_properties(struct property *first) in reverse_properties() argument
87 struct property *p = first; in reverse_properties()
219 struct node *chain_node(struct node *first, struct node *list) in chain_node() argument
221 assert(first->next_sibling == NULL); in chain_node()
223 first->next_sibling = list; in chain_node()
224 return first; in chain_node()
[all …]
Ddtc.h193 struct property *chain_property(struct property *first, struct property *list);
194 struct property *reverse_properties(struct property *first);
199 struct node *chain_node(struct node *first, struct node *list);
238 struct reserve_info *chain_reserve_entry(struct reserve_info *first,
Ddt_to_config1047 my $first = 1;
1049 if ($first) {
1052 $first = 0;
1073 my $first = 1;
1075 if ($first) {
1078 $first = 0;
Ddtc-lexer.lex.c_shipped169 /* Return all but the first "n" matched characters back to the input stream. */
667 * down here because we want the user's section 1 to have been scanned first.
862 (yy_start) = 1; /* first start state */
958 /* regexp ensures that first and list "
1273 * this is the first action (other than possibly a
1282 * of the first EOB in the buffer, since yy_c_buf_p will
1417 /* We matched some text prior to the EOB, first
1813 /* We always need two end-of-buffer characters. The first causes
Ddtx_diff44 If DTx contains the binary blob magic value in the first four bytes,
Ddtc-parser.tab.c_shipped64 /* Copy the first part of user declarations. */
1095 YYCHECK. In other words, skip the first -YYN actions for
/scripts/coccinelle/iterators/
Dlist_entry_update.cocci1 /// list_for_each_entry uses its first argument to get from one element of
3 /// The first rule finds such a reassignment and the second rule checks
Ditnull.cocci1 /// Many iterators have the property that the first argument is always bound
/scripts/coccinelle/misc/
Darray_size.cocci4 //# where there is a division of sizeof the array by the sizeof its first
Ddoubleinit.cocci52 msg = "%s: first occurrence line %s, second occurrence line %s" % (fld,ps[0].line,pr[0].line)
/scripts/coccinelle/locks/
Dcall_kern.cocci4 //# function under the lock in the first place.
/scripts/kconfig/
Dqconf.h90 return (ConfigItem *)children().first(); in firstChild()
Dzconf.lex.c_shipped193 /* Return all but the first "n" matched characters back to the input stream. */
872 * down here because we want the user's section 1 to have been scanned first.
1049 (yy_start) = 1; /* first start state */
1406 * this is the first action (other than possibly a
1415 * of the first EOB in the buffer, since yy_c_buf_p will
1548 /* We matched some text prior to the EOB, first
1949 /* We always need two end-of-buffer characters. The first causes
Dqconf.cc406 ConfigItem* item = (ConfigItem*)selectedItems().first(); in updateSelection()
789 if (x >= off && x < off + icon.availableSizes().first().width()) { in mouseReleaseEvent()
1634 item = (ConfigItem*)menuList->selectedItems().first(); in goBack()
Dzconf.tab.c_shipped74 /* Copy the first part of user declarations. */
487 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
1250 YYCHECK. In other words, skip the first -YYN actions for
/scripts/genksyms/
Dlex.lex.c_shipped165 /* Return all but the first "n" matched characters back to the input stream. */
580 * down here because we want the user's section 1 to have been scanned first.
770 (yy_start) = 1; /* first start state */
926 * this is the first action (other than possibly a
935 * of the first EOB in the buffer, since yy_c_buf_p will
1068 /* We matched some text prior to the EOB, first
1501 /* We always need two end-of-buffer characters. The first causes
Dparse.tab.c_shipped64 /* Copy the first part of user declarations. */
1160 YYCHECK. In other words, skip the first -YYN actions for
/scripts/mod/
Dmodpost.c2231 int first = 1; in add_depends() local
2255 buf_printf(b, "%s%s", first ? "" : ",", p); in add_depends()
2256 first = 0; in add_depends()