| /src/games/robots/ |
| init_field.c | 56 static bool first = true; local 99 if (first) 109 if (first) 117 if (first) 119 first = false;
|
| /src/usr.bin/netstat/ |
| pfkey.c | 119 int first, type; local 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 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 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 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 167 (*first)->prev = prev; 168 prev = prev->next = *first; 169 *first = (*first)->next [all...] |
| /src/usr.bin/audio/common/ |
| decode.c | 81 int first; local 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/usr.bin/find/ |
| misc.c | 105 int ch, first, nl; local 113 first = ch = getchar(); 128 return (first == 'y');
|
| /src/usr.bin/from/ |
| from.c | 134 char ch, pch, first; local 137 for (first = *sender++;;) { 142 if (ch != first)
|
| /src/games/boggle/boggle/ |
| word.c | 58 static int first = 1, lastch = 0; variable 87 if (first) { 90 first = 0; 118 first = 1;
|
| /src/games/boggle/mkindex/ |
| mkindex.c | 103 static int first = 1; local 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 254 if (!first) 255 first = otmp; 263 if (first && otmp2->nobj) { 267 return (first); 274 struct monst *first = 0; local 292 if (!first) 293 first = mtmp; 305 if (first && mtmp2->nmon) { 309 return (first); [all...] |
| hack.o_init.c | 92 int i, j, first, last, sum, end; local 100 first = 0; 101 while (first < end) { 102 let = objects[first].oc_olet; 103 last = first + 1; 110 bases[i] = first; 116 for (j = first; j < last; j++) 119 for (j = first; j < last; j++) 120 objects[j].oc_prob = (100 + j - first) / (last - first); 157 int j, first; local [all...] |
| /src/sys/external/bsd/drm/dist/bsd-core/ |
| drm_hashtab.c | 125 unsigned long first, unshifted_key = 0; local 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 71 first = head->first; 72 node->next = first; 74 } while (atomic_cas_ptr(&head->first, first, node) != first); 96 struct llist_node *first; local 107 struct llist_node *first; local [all...] |
| /src/sys/ufs/ext2fs/ |
| ext2fs_extents.c | 63 struct ext4_extent_index *first, *last, *l, *r, *m; local 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 102 first = (struct ext4_extent *)(char *)(ehp + 1); 103 l = first; 104 r = first + ehp->eh_ecount - 1 [all...] |
| /src/tests/usr.bin/xlint/lint1/ |
| d_bltinoffsetof.c | 10 } first; member in struct:foo::__anon7972::__anon7973 21 typedef int first[-(int)__builtin_offsetof(struct foo, u.s.first)]; typedef 22 typedef int first_a[-(int)__builtin_offsetof(struct foo, u.s.first.a)]; 24 typedef int first_b[-(int)__builtin_offsetof(struct foo, u.s.first.b)];
|
| /src/usr.bin/colcrt/ |
| colcrt.c | 200 int first; variable 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 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 298 * If the file exists, first check it is not the same directory entry. 326 first = ch = getchar(); 329 if (first != 'y' && first != 'Y') {
|
| /src/common/dist/zlib/ |
| gzwrite.c | 72 /* allocate memory if this is the first time through */ 146 int first; local 155 first = 1; 159 if (first) { 161 first = 0; 182 /* allocate memory if this is the first time through */ 417 /* update buffer and position, compress first half if past that */ 512 /* update buffer and position, compress first half if past that */
|
| /src/games/number/ |
| number.c | 91 int ch, first; local 108 for (first = 1; 109 fgets(line, sizeof(line), stdin) != NULL; first = 0) { 112 if (!first) 117 for (first = 1; *argv != NULL; first = 0, ++argv) { 118 if (!first)
|
| /src/regress/sys/kern/getcwd/ |
| old_getcwd.c | 81 int first; local 114 * as necessary. Special case the first stat, it's ".", not "..". 131 for (first = 1;; first = 0) { 207 /* Save the first error for later. */ 222 if (bpt - pt <= dlen + (first ? 1 : 2)) { 238 if (!first)
|
| /src/sbin/ifconfig/ |
| af_atalk.c | 95 u_short first = 123, last = 123; local 100 if (sscanf(range, "%hu-%hu", &first, &last) != 2 || 101 first == 0 || last == 0 || first > last) 103 first, last); 104 nr->nr_firstnet = htons(first);
|