/illumos-gate/usr/src/cmd/bnu/ |
H A D | versys.c | 53 char *prev; local 58 prev = _uu_setlocale(LC_ALL, "C"); 66 (void) _uu_resetlocale(LC_ALL, prev); 80 (void) _uu_resetlocale(LC_ALL, prev); 85 (void) _uu_resetlocale(LC_ALL, prev);
|
H A D | getargs.c | 53 char *prev; local 55 prev = _uu_setlocale(LC_ALL, "C"); 69 (void) _uu_resetlocale(LC_ALL, prev); 94 char *prev; local 96 prev = _uu_setlocale(LC_ALL, "C"); 162 (void) _uu_resetlocale(LC_ALL, prev);
|
H A D | uuname.c | 47 char s[BUFSIZ], prev[BUFSIZ], name[BUFSIZ]; local 97 if (EQUALS(name, prev)) 100 (void) strcpy(prev, name);
|
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/ |
H A D | reslist.c | 43 LDAPMessage *tmp, *prev = NULL; local 46 prev = tmp; 51 if ( prev == NULL ) 54 prev->lm_chain = tmp->lm_chain;
|
/illumos-gate/usr/src/lib/libeti/form/common/ |
H A D | chg_page.c | 52 /* prev - return previous page before current page(cyclic) */ 54 prev(FORM *f) function 72 return (_set_form_page(f, prev(f), (FIELD *) 0));
|
/illumos-gate/usr/src/lib/libxcurses/src/libc/wide/ |
H A D | wio_get.c | 62 int ch, prev; local 65 for (prev = EOF; (ch = (*wio->get)(wio->object)) != EOF; prev = ch) { 67 if (ch != prev) {
|
/illumos-gate/usr/src/cmd/eeprom/i386/ |
H A D | benv.h | 49 struct eplist *prev; member in struct:eplist
|
/illumos-gate/usr/src/cmd/audio/include/ |
H A D | AudioList.h | 48 AudioListEntry* prev; // pointer to previous member in class:AudioList::AudioListEntry
|
/illumos-gate/usr/src/cmd/sgs/librtld_db/demo/common/ |
H A D | disasm.c | 37 unsigned int next, unsigned int prev, int vers) 36 disassemble(unsigned int instr, unsigned long pc, FUNCPTR prtAddress, unsigned int next, unsigned int prev, int vers) argument
|
/illumos-gate/usr/src/uts/common/avs/ns/nsctl/ |
H A D | nsc_rmspin.h | 39 struct nsc_rmlock_s *prev; member in struct:nsc_rmlock_s
|
/illumos-gate/usr/src/lib/udapl/udapl_tavor/include/ |
H A D | dapl_provider.h | 62 struct DAPL_PROVIDER_LIST_NODE *prev; member in struct:DAPL_PROVIDER_LIST_NODE
|
/illumos-gate/usr/src/lib/libast/common/misc/ |
H A D | debug.c | 49 static double prev; local 54 return prev = tm; 55 return tm - prev;
|
/illumos-gate/usr/src/lib/libast/common/tm/ |
H A D | tmzone.c | 52 register char* prev; local 69 prev = 0; 73 prev = zp->type; 74 if (!type || type == prev || !prev)
|
/illumos-gate/usr/src/cmd/lvm/metassist/common/ |
H A D | volume_dlist.h | 44 struct dlist *prev; member in struct:dlist 129 * clear it's next and prev pointers, return new list head. 170 * the item to remove, with prev and next pointers
|
/illumos-gate/usr/src/lib/efcode/engine/ |
H A D | resource.c | 39 fc_resource_t *f, *prev, *r = *head; local 42 prev = NULL; 47 if (prev) 48 prev->next = r->next; 60 prev = r;
|
/illumos-gate/usr/src/cmd/fm/fmd/common/ |
H A D | fmd_dr.c | 79 fmd_topo_t *ftp, *prev; local 124 prev = fmd_topo_hold(); 125 if (evtime <= prev->ft_time_begin && 127 fmd_topo_rele(prev); 130 fmd_topo_rele(prev);
|
H A D | fmd_topo.c | 67 fmd_topo_t *ftp, *prev; local 103 if ((prev = fmd_list_next(&fmd.d_topo_list)) != NULL) 104 fmd_topo_rele_locked(prev);
|
/illumos-gate/usr/src/cmd/isns/isnsd/ |
H A D | dseng.c | 58 void *prev = NULL; local 74 ec = target_load_obj(&prev, &obj, &phase); 166 ec = target_load_obj(&prev, &obj, &phase);
|
/illumos-gate/usr/src/cmd/syslogd/ |
H A D | list.c | 83 ll_t **prev = &ptr->front; local 91 prev = &(t->n); 95 if ((*prev = t->n) == NULL) 96 ptr->back = prev; 108 ll_t **prev = &head->front; local 112 prev = &ptr->n; 115 assert(head->back == prev);
|
/illumos-gate/usr/src/uts/common/io/drm/ |
H A D | drm_linux_list.h | 44 struct list_head *next, *prev; member in struct:list_head 53 (head)->prev = head; \ 58 (head)->next->prev = entry; \ 60 (entry)->prev = head; \ 66 (entry)->prev = (head)->prev; \ 68 (head)->prev->next = entry; \ 69 (head)->prev = entry; \ 74 (entry)->next->prev = (entry)->prev; \ [all...] |
/illumos-gate/usr/src/uts/common/io/mr_sas/ |
H A D | mr_sas_list.c | 23 * the prev/next entries already! 26 __list_add(struct mlist_head *new, struct mlist_head *prev, argument 29 next->prev = new; 31 new->prev = prev; 32 prev->next = new; 60 __list_add(new, head->prev, head); 64 * Delete a list entry by making the prev/next entries 68 * the prev/next entries already! 71 __list_del(struct mlist_head *prev, struc argument [all...] |
H A D | mr_sas_list.h | 48 * sometimes we already know the next/prev entries and we can 54 struct mlist_head *next, *prev; member in struct:mlist_head 65 (ptr)->next = (ptr); (ptr)->prev = (ptr); \
|
/illumos-gate/usr/src/uts/intel/promif/ |
H A D | prom_prop.c | 57 prom_decode_composite_string(void *buf, size_t buflen, char *prev) argument 62 if (prev == 0) 65 prev += strlen(prev) + 1; 66 if (prev >= ((char *)buf + buflen)) 68 return (prev);
|
/illumos-gate/usr/src/lib/libnsctl/common/ |
H A D | hash.c | 97 hash_node_t *node, *prev; local 113 prev = hash[ index ]; 114 node = prev->next; 116 prev = node; 122 prev->next = node->next;
|
/illumos-gate/usr/src/lib/libnsl/rpc/ |
H A D | fdsync.c | 53 struct rpcfd_block *prev; /* prev Block */ member in struct:rpcfd_block 144 p->prev = lprev; 148 l->prev = p;
|