Searched refs:next (Results 51 - 75 of 1144) sorted by relevance

1234567891011>>

/osnet-11/usr/src/lib/libast/common/stdio/
H A Dvswprintf.c44 f.data = f.next = f.endr = (uchar*)s;
52 *f.next = 0;
53 _Sfi = f.next - f.data;
H A Dfgets.c43 if((p = f->endb - (ps = f->next)) <= 0 )
57 ps = f->next+p;
62 p = ps-f->next;
71 { f->next[p-1] = c;
72 if((ps-f->next) >= p)
79 f->next = ps;
/osnet-11/usr/src/lib/libast/common/vmalloc/
H A Dvmexit.c55 { struct _exit_s* next; member in struct:_exit_s
71 e->next = Exit;
85 for(e = Exit; e; e = e->next)
/osnet-11/usr/src/grub/grub2/include/grub/
H A Dnet.h75 struct grub_net_card_driver *next; member in struct:grub_net_card_driver
86 struct grub_net_packet *next; member in struct:grub_net_packet
104 struct grub_net_slaac_mac_list *next; member in struct:grub_net_slaac_mac_list
114 struct grub_net_card *next; member in struct:grub_net_card
166 #define FOR_PACKETS(cont,var) for (var = (cont).first; var; var = var->next)
178 n->next = NULL;
183 pkts->last->next = n;
197 pkt->prev->next = pkt->next;
199 pkt->up->first = pkt->next;
213 struct grub_net_app_protocol *next; member in struct:grub_net_app_protocol
238 struct grub_net_network_level_interface *next; member in struct:grub_net_network_level_interface
[all...]
H A Dmenu.h26 struct grub_menu_entry_class *next; member in struct:grub_menu_entry_class
44 E.classes->next is the first class if it is not NULL. */
58 /* The next element. */
59 struct grub_menu_entry *next; member in struct:grub_menu_entry
H A Dmm_private.h30 struct grub_mm_header *next; member in struct:grub_mm_header
54 struct grub_mm_region *next; member in struct:grub_mm_region
/osnet-11/usr/src/lib/efcode/engine/
H A Dresource.c48 prev->next = r->next;
50 *head = r->next;
53 r = r->next;
61 r = r->next;
76 r->next = *head;
/osnet-11/usr/src/lib/efcode/packages/
H A Dparse.c94 char *buffer, *line, *target, *next; local
107 if ((next = strpbrk(line, " \t#\n")) != NULL)
108 *next = '\0';
124 for (; line; line = next) {
125 if ((next = strchr(line, ';')) != NULL)
126 *next++ = '\0';
/osnet-11/usr/src/grub/grub2/grub-core/script/
H A Dfunction.c54 p = &((*p)->next);
70 func->next = *p;
82 for (p = &grub_script_function_list, q = *p; q; p = &(q->next), q = q->next)
85 *p = q->next;
98 for (func = grub_script_function_list; func; func = func->next)
/osnet-11/usr/src/lib/libast/common/sfio/
H A Dsfflsbuf.c56 n = f->next - (data = f->data);
64 if(f->next < f->endb || !(f->flags&SF_STRING) )
65 n = f->next - (data = f->data);
75 { *f->next++ = c;
100 f->next = f->data+n;
122 inpc = f->endb-f->next;
H A Dsfungetc.c69 if(f->next > f->data && f->next[-1] == (uchar)c)
70 { f->next -= 1;
87 if(f->next == f->data)
100 f->next = data+16;
104 *--f->next = (uchar)c;
H A Dsfclrlock.c51 { f->here -= f->endb-f->next;
52 f->endb = f->next;
H A Dsfsync.c36 reg Sfpool_t *p, *next; local
44 for(p = &_Sfpool; p; p = next)
45 { /* find the next legitimate pool */
46 for(next = p->next; next; next = next->next)
47 if(next
[all...]
H A Dsfreserve.c56 { if((n = f->endb - f->next) > 0 && n == f->val )
57 { data = (Void_t*)f->next;
58 f->next += n;
85 if((n = f->endb - f->next) < 0)
104 if((n = now = f->endb - f->next) < 0)
113 { if((iosz = f->push->endb - f->push->next) == 0)
135 if((n = f->endb - f->next) < sz)
137 { f->endb = f->endr = f->next;
151 if((n = f->endb - f->next) <= 0)
169 data = (Void_t*)f->next;
[all...]
/osnet-11/usr/src/lib/sun_sas/common/
H A DSun_sasFreeLibrary.c79 hba_ptr = hba_ptr->next) {
90 scsi_info = scsi_info->next;
94 tgt_port = tgt_port->next;
103 phy_ptr = phy_ptr->next;
108 hba_port = hba_port->next;
117 open_handle = open_handle->next;
/osnet-11/usr/src/lib/libresolv2/common/isc/
H A Dmemcluster.c64 void * next; member in struct:__anon2441
222 e->next = NULL;
227 e->next = activelists[max_size];
250 char *curr, *next; local
261 next = curr + mem_target;
263 ((memcluster_element *)curr)->next = next;
264 curr = next;
265 next += mem_target;
271 ((memcluster_element *)curr)->next
[all...]
/osnet-11/usr/src/lib/libc/port/gen/
H A Dgetpwnam_r.c244 char *p, *next; local
265 next = buffer;
267 passwd->pw_name = p = gettok(&next); /* username */
290 passwd->pw_passwd = p = gettok(&next); /* password */
305 p = next; /* uid */
321 tmp = strtoul(p, &next, 10);
322 if (next == p || errno != 0) {
341 if (*next++ != ':') {
343 (void) gettok(&next);
347 p = next; /* gi
[all...]
H A Dlfind.c61 char *next = base + *nelp * width; /* End of table */ local
63 for (; base < next; base += width)
H A Dlsearch.c60 char *next = base + *nelp * width; /* End of table */ local
63 for (; base < next; base += width)
67 res = memcpy(base, key, width); /* base now == next */
/osnet-11/usr/src/grub/grub2/grub-core/gfxmenu/
H A Dgui_canvas.c30 struct component_node *next; member in struct:component_node
51 struct component_node *next; local
52 for (cur = self->components.next; cur; cur = next)
54 /* Copy the 'next' pointer, since we need it for the next iteration,
56 next = cur->next;
87 for (cur = self->components.next; cur; cur = cur->next)
[all...]
/osnet-11/usr/src/lib/libcmd/common/
H A Dtr.c103 #define setchar(p,s,t) ((p)->type=(t),(p)->prev=(p)->last=(-1),(p)->isit=0,(p)->count=0,(p)->base=(p)->next=(s))
120 unsigned char* next; member in struct:__anon1499
127 * return next string character
158 next:
165 tr->hold = tr->next + 1;
167 switch (c = *tr->next++)
170 tr->next--;
174 c = chresc((char*)tr->next - 1, (char**)&tr->next);
177 switch (*tr->next)
[all...]
/osnet-11/usr/src/cmd/sendmail/db/mp/
H A Dmp_sync.c42 int ar_cnt, nalloc, next, maxpin, ret, wrote; local
183 for (next = 0; next < ar_cnt; ++next) {
191 if (bharray[next]->ref > 1) {
192 --bharray[next]->ref;
197 mfp = R_ADDR(dbmp, bharray[next]->mf_offset);
198 ret = __memp_bhwrite(dbmp, mfp, bharray[next], NULL, &wrote);
201 --bharray[next]->ref;
213 (u_long)bharray[next]
322 int ar_cnt, incomplete, nalloc, next, ret, wrote; local
[all...]
/osnet-11/usr/src/lib/librstp/common/
H A Dstpm.c49 for (stater = this->machines; stater; stater = stater->next) {
58 for (port = this->ports; port; port = port->next) {
59 for (stater = port->machines; stater; stater = stater->next) {
90 for (port = this->ports; port; port = port->next) {
107 for (port = this->ports; port; port = port->next) {
187 pv = (void*) stater->next;
193 pv = (void*) port->next;
199 for (tmp = bridges; tmp; tmp = tmp->next) {
202 prev->next = this->next;
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/include/
H A Dcache-addrinfo.h120 struct face *next; member in struct:face
/osnet-11/usr/src/lib/cfgadm_plugins/ac/common/
H A Dmema_test_subr.c55 new_ent->next = handle->alloc_list;
71 p = &(*p)->next;
74 *p = (*p)->next;
85 handle->alloc_list = p1->next;

Completed in 47 milliseconds

1234567891011>>