HomeSort by: relevance | last modified time | path
    Searched defs:first (Results 1 - 25 of 268) sorted by relevancy

1 2 3 4 5 6 7 8 91011

  /src/usr.bin/make/unit-tests/
depsrc-use.mk 17 first: .USE first-first first-second target
18 @echo first 1 # Using ${.TARGET} here would expand to "action"
19 @echo first 2
20 first-first: .USE
21 @echo first-first
    [all...]
varname-dot-alltargets.mk 9 first second: source target
18 # Only first and second are "real" targets.
cond-func-make-main.mk 8 # 1. The default main target is the first target in the given makefiles that
17 # 3. All sources of the first '.MAIN: sources' line. Any further .MAIN line
22 first-main-target:
27 .if make(first-main-target)
sh-dots.mk 9 all: first hidden repeated commented indirect indirect-space
13 first: target
14 @echo first ${.TARGET}
16 @echo first delayed ${.TARGET}
suff-transform-expand.mk 7 # issue11.i should depend on issue11.h and issue11.first.
16 .h.i: ${.PREFIX}.first
22 issue11.h issue11.first issue11.second:
  /src/games/robots/
init_field.c 56 static bool first = true; local in function:init_field
99 if (first)
109 if (first)
117 if (first)
119 first = false;
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/
test_helpers.h 65 bool first = true; local in function:__xray::PrintTo
67 if (!first) {
71 first = false;
  /src/usr.bin/netstat/
pfkey.c 119 int first, type; local in function:pfkey_stats
140 for (first = 1, type = 0; type < 256; type++) {
143 if (first) {
145 first = 0;
172 for (first = 1, type = 0; type < 256; type++) {
175 if (first) {
177 first = 0;
  /src/games/battlestar/
command4.c 216 int first, value; local in function:throw
218 first = wordnumber;
247 wordnumber = first + 1;
293 return (first);
295 return (first);
297 return (first);
  /src/games/mille/
init.c 115 static int first = TRUE; local in function:newboard
117 if (first) {
144 first = FALSE;
  /src/sys/external/bsd/drm2/linux/
linux_list_sort.c 121 * breaking ties by choosing nodes in `a' first, and returning
134 struct list_head **const first = ((*compare)(arg, a, b) <= 0? local in function:list_sort_merge
137 tail = tail->next = *first;
138 *first = (*first)->next;
151 * nodes in `a' first, and setting the `prev' pointers as we go.
164 struct list_head **const first = ((*compare)(arg, a, b) <= 0? local in function:list_sort_merge_into
167 (*first)->prev = prev;
168 prev = prev->next = *first;
169 *first = (*first)->next
    [all...]
  /src/usr.bin/from/
from.c 134 char ch, pch, first; local in function:match
137 for (first = *sender++;;) {
142 if (ch != first)
  /src/usr.bin/find/
misc.c 105 int ch, first, nl; local in function:queryuser
113 first = ch = getchar();
128 return (first == 'y');
  /src/usr.bin/audio/common/
decode.c 81 int first; local in function:decode_time
92 decode_int(s, &first);
93 tvp->tv_sec = first * 60; /* minutes */
98 decode_int(s, &first);
99 tvp->tv_sec += first; /* minutes and hours */
117 decode_int(s, &first);
118 tvp->tv_sec += first;
  /src/games/boggle/boggle/
word.c 58 static int first = 1, lastch = 0; variable in typeref:typename:int
87 if (first) {
90 first = 0;
118 first = 1;
  /src/games/boggle/mkindex/
mkindex.c 103 static int first = 1; local in function:nextword
106 if (first) {
109 first = 0;
  /src/games/dab/
box.h 53 first = 0, enumerator in enum:BOX::EDGE
  /src/games/hack/
hack.save.c 247 struct obj *first = 0; local in function:restobjchn
254 if (!first)
255 first = otmp;
263 if (first && otmp2->nobj) {
267 return (first);
274 struct monst *first = 0; local in function:restmonchn
292 if (!first)
293 first = mtmp;
305 if (first && mtmp2->nmon) {
309 return (first);
    [all...]
  /src/sys/external/bsd/drm/dist/bsd-core/
drm_hashtab.c 125 unsigned long first, unshifted_key = 0; local in function:drm_ht_just_insert_please
128 first = unshifted_key;
134 } while(ret && (unshifted_key != first));
  /src/sys/external/bsd/drm2/include/linux/
llist.h 39 struct llist_node *first; member in struct:llist_head
50 head->first = NULL;
60 empty = (atomic_load_acquire(&head->first) == NULL);
68 struct llist_node *first; local in function:llist_add
71 first = head->first;
72 node->next = first;
74 } while (atomic_cas_ptr(&head->first, first, node) != first);
96 struct llist_node *first; local in function:llist_del_all
107 struct llist_node *first; local in function:llist_del_first
    [all...]
  /src/sys/ufs/ext2fs/
ext2fs_extents.c 63 struct ext4_extent_index *first, *last, *l, *r, *m; local in function:ext4_ext_binsearch_index
65 first = (struct ext4_extent_index *)(char *)(ehp + 1);
66 last = first + ehp->eh_ecount - 1;
67 l = first;
77 if (l == first) {
79 path->ep_sparse_ext.e_len = first->ei_blk - *first_lbn;
97 struct ext4_extent *first, *l, *r, *m; local in function:ext4_ext_binsearch
102 first = (struct ext4_extent *)(char *)(ehp + 1);
103 l = first;
104 r = first + ehp->eh_ecount - 1
    [all...]
  /src/usr.bin/colcrt/
colcrt.c 200 int first; variable in typeref:typename:int
216 for (i = first | 1; i < l; i++) {
220 for (i = first; i < l; i++) {
233 first = 1;
  /src/usr.bin/head/
head.c 60 * head - give the first few lines of a stream or of each of a set of files
75 int first; local in function:main
123 for (first = 1; *argv; ++argv) {
131 first ? "" : "\n", *argv);
132 first = 0;
  /src/usr.bin/make/
lst.h 97 ListNode *first; member in struct:List
112 list->first = NULL;
121 return list->first == NULL;
124 /* Find the first node that contains the given datum, or NULL. */
  /src/bin/ln/
ln.c 64 static int hflag; /* Check new name for symlink first. */
234 int ch, exists, first; local in function:linkit
298 * If the file exists, first check it is not the same directory entry.
326 first = ch = getchar();
329 if (first != 'y' && first != 'Y') {

Completed in 24 milliseconds

1 2 3 4 5 6 7 8 91011