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

1 2 3 4 5 6 7 8 91011>>

  /src/games/battlestar/
battlestar.c 59 char *next; local in function:main
89 next = getcom(mainbuf, sizeof mainbuf, ">-: ",
91 for (wordcount = 0; next && wordcount < NWORD - 1; wordcount++)
92 next = getword(next, words[wordcount], -1);
command7.c 49 char *next; local in function:fight
65 next = getcom(auxbuf, LINELENGTH, "<fight!>-: ", 0);
66 for (i = 0; next && i < 10; i++)
67 next = getword(next, words[i], -1);
  /src/lib/libc/stdio/
glue.h 42 struct glue *next; member in struct:glue
  /src/lib/libc/stdlib/
rand.c 44 static u_long next = 1; variable in typeref:typename:u_long
50 return (int)((next = next * 1103515245 + 12345) % ((u_long)RAND_MAX + 1));
56 next = seed;
quick_exit.c 44 struct quick_exit_handler *next; member in struct:quick_exit_handler
73 h->next = handlers;
90 for (h = handlers; NULL != h; h = h->next)
  /src/tests/usr.bin/xlint/lint1/
msg_027.c 17 next enumerator in enum:__anonfa86d3e40103
  /src/lib/libc/rpc/
pmap_prot2.c 111 struct pmaplist **next = NULL; /* pacify gcc */ local in function:__weak_alias
126 * the case of freeing we must remember the next object
130 next = &((*rp)->pml_next);
134 rp = (freeing) ? next : &((*rp)->pml_next);
  /src/usr.bin/make/unit-tests/
suff-main.mk 13 next-main:
16 # At this point, 'next-main' is effectively ignored.
20 # a candidate for the main target. Therefore the next target is selected as
21 # the main target, which in this case is 'next-main'.
  /src/usr.sbin/mrouted/
rsrr_var.h 45 struct rsrr_cache *next; /* next cache item */ member in struct:rsrr_cache
  /src/bin/sh/
alias.h 40 struct alias *next; member in struct:alias
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_user_extensions.c 31 u64 next; local in function:i915_user_extensions
58 if (get_user(next, &ext->next_extension) ||
59 overflows_type(next, ext))
62 ext = u64_to_user_ptr(next);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/therm/
nouveau_nvkm_subdev_therm_gf100.c 43 u32 next, addr; local in function:gf100_clkgate_init
46 next = init->addr + init->count * 8;
51 while (addr < next) {
  /src/lib/libexecinfo/
builtin.c 50 struct frameinfo *next; member in struct:frameinfo
64 frame = frame->next;
  /src/sys/dev/raidframe/
rf_alloclist.h 46 RF_AllocListElem_t *next; member in struct:RF_AllocListElem_s
rf_callback.h 53 RF_CallbackFuncDesc_t *next;/* next entry in list */ member in struct:RF_CallbackFuncDesc_s
59 RF_CallbackValueDesc_t *next;/* next entry in list */ member in struct:RF_CallbackValueDesc_s
rf_shutdown.c 82 ent->next = *listp;
89 RF_ShutdownList_t *r, *next; local in function:rf_ShutdownList
95 for (r = *list; r; r = next) {
96 next = r->next;
rf_shutdown.h 60 RF_ShutdownList_t *next; member in struct:RF_ShutdownList_s
  /src/sys/ufs/chfs/
chfs_vnode_cache.c 66 ret = ret->next;
92 prev = &((*prev)->next);
94 new->next = *prev;
109 prev = &(*prev)->next;
113 *prev = old->next;
126 struct chfs_vnode_cache *this, *next; local in function:chfs_vnocache_hash_destroy
133 next = this->next;
135 this = next;
  /src/usr.bin/mklocale/
ldef.h 45 struct rune_list *next; member in struct:rune_list
  /src/usr.bin/msgc/
msgdb.h 51 struct id_rec *next; member in struct:id_rec
  /src/usr.sbin/faithd/
prefix.h 39 struct config *next; member in struct:config
  /src/bin/ksh/
alloc.c 38 struct link *next; member in struct:link
54 l2 = l->next;
72 l->next = ap->freelist;
93 lnext = l->next;
99 lprev->next = l2;
120 l->prev->next = l->next;
122 ap->freelist = l->next;
123 if (l->next)
124 l->next->prev = l->prev
    [all...]
  /src/lib/libpam/modules/pam_guest/
pam_guest.c 57 const char *next; local in function:lookup
64 if ((next = strchr(list, ',')) == NULL)
65 next = strchr(list, '\0');
66 if (next - list == (ptrdiff_t)len &&
69 list = next;
  /src/sys/arch/prep/include/
bootinfo.h 33 int next; /* offset of next item, or zero */ member in struct:btinfo_common
  /src/sys/arch/rs6000/include/
bootinfo.h 33 int next; /* offset of next item, or zero */ member in struct:btinfo_common

Completed in 21 milliseconds

1 2 3 4 5 6 7 8 91011>>