Home
last modified time | relevance | path

Searched refs:prev (Results 1 – 25 of 739) sorted by relevance

12345678910>>...30

/titanic_51/usr/src/contrib/ast/src/cmd/ksh93/
H A DMamfile96 prev ${PACKAGE_ast_INCLUDE}/prototyped.h implicit
98 prev ${PACKAGE_ast_INCLUDE}/shcmd.h implicit
109 prev ${PACKAGE_ast_INCLUDE}/ast_common.h implicit
120 prev ${PACKAGE_ast_INCLUDE}/endian.h implicit
122 prev ${PACKAGE_ast_INCLUDE}/ast_wchar.h implicit
128 prev ${PACKAGE_ast_INCLUDE}/sfio_s.h implicit
129 prev ${PACKAGE_ast_INCLUDE}/ast_std.h implicit
132 prev ${PACKAGE_ast_INCLUDE}/stdio.h implicit
133 prev ${PACKAGE_ast_INCLUDE}/ast_common.h implicit
135 prev
[all...]
/titanic_51/usr/src/contrib/ast/src/lib/libcmd/
H A DMamfile86 prev cmdinit.c
88 prev cmd.h implicit
99 prev cmd.h implicit
123 prev ${PACKAGE_ast_INCLUDE}/endian.h implicit
125 prev ${PACKAGE_ast_INCLUDE}/ast_wchar.h implicit
133 prev ${PACKAGE_ast_INCLUDE}/ast_std.h implicit
136 prev ${PACKAGE_ast_INCLUDE}/stdio.h implicit
137 prev ${PACKAGE_ast_INCLUDE}/ast_common.h implicit
139 prev ${PACKAGE_ast_INCLUDE}/ast_common.h implicit
140 prev
[all...]
/titanic_51/usr/src/uts/common/io/mega_sas/
H A Dlist.h53 * sometimes we already know the next/prev entries and we can
59 struct mlist_head *next, *prev; member
70 (ptr)->next = (ptr); (ptr)->prev = (ptr); \
78 * the prev/next entries already!
81 struct mlist_head *prev, in __list_add() argument
84 next->prev = new; in __list_add()
86 new->prev = prev; in __list_add()
87 prev->next = new; in __list_add()
115 __list_add(new, head->prev, hea in mlist_add_tail()
127 __list_del(struct mlist_head * prev,struct mlist_head * next) __list_del() argument
[all...]
/titanic_51/usr/src/uts/common/io/mr_sas/
H A Dmr_sas_list.c23 * the prev/next entries already!
26 __list_add(struct mlist_head *new, struct mlist_head *prev, in __list_add() argument
29 next->prev = new; in __list_add()
31 new->prev = prev; in __list_add()
32 prev->next = new; in __list_add()
60 __list_add(new, head->prev, head); in mlist_add_tail()
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...]
/titanic_51/usr/src/uts/common/fs/zfs/
H A Dzfs_rlock.c271 zfs_range_add_reader(avl_tree_t *tree, rl_t *new, rl_t *prev, avl_index_t where) in zfs_range_add_reader() argument
278 * prev arrives either: in zfs_range_add_reader()
284 if (prev) { in zfs_range_add_reader()
285 if (prev->r_off + prev->r_len <= off) { in zfs_range_add_reader()
286 prev = NULL; in zfs_range_add_reader()
287 } else if (prev->r_off != off) { in zfs_range_add_reader()
292 prev = zfs_range_split(tree, prev, off); in zfs_range_add_reader()
293 prev in zfs_range_add_reader()
359 rl_t *prev, *next; zfs_range_lock_reader() local
[all...]
/titanic_51/usr/src/contrib/ast/src/lib/libast/
H A DMamfile67 prev FEATURE/common
107 prev FEATURE/mmap implicit
108 prev FEATURE/lib implicit
124 prev ast_map.h
134 prev comp/conf.sh
174 prev conflim.h
181 prev FEATURE/param implicit
186 prev FEATURE/common implicit
187 prev FEATURE/lib implicit
188 prev FEATUR
[all...]
/titanic_51/usr/src/lib/libresolv2/include/isc/
H A Dlist.h26 #define LINK(type) struct { type *prev, *next; }
29 (elt)->link.prev = (type *)(-1); \
34 #define LINKED(elt, link) ((void *)((elt)->link.prev) != (void *)(-1) && \
45 (list).head->link.prev = (elt); \
48 (elt)->link.prev = NULL; \
60 (elt)->link.prev = (list).tail; \
69 (elt)->link.next->link.prev = (elt)->link.prev; \
72 (list).tail = (elt)->link.prev; \
74 if ((elt)->link.prev !
[all...]
/titanic_51/usr/src/contrib/ast/src/lib/libdll/
H A DMamfile95 prev ${PACKAGE_ast_INCLUDE}/ast_common.h implicit
101 prev ${PACKAGE_ast_INCLUDE}/ast_api.h implicit
105 prev ${PACKAGE_ast_INCLUDE}/endian.h implicit
107 prev ${PACKAGE_ast_INCLUDE}/ast_wchar.h implicit
115 prev ${PACKAGE_ast_INCLUDE}/ast_std.h implicit
118 prev ${PACKAGE_ast_INCLUDE}/stdio.h implicit
119 prev ${PACKAGE_ast_INCLUDE}/ast_common.h implicit
121 prev ${PACKAGE_ast_INCLUDE}/ast_common.h implicit
127 prev ${PACKAGE_ast_INCLUDE}/prototyped.h implicit
129 prev
[all...]
/titanic_51/usr/src/uts/intel/io/pci/
H A Dpci_memlist.c30 * NOTE: We are only using the next-> link. The prev-> link is
88 struct memlist *prev = 0, *next; in memlist_insert() local
107 prev = next; in memlist_insert()
108 next = prev->ml_next; in memlist_insert()
111 merge_left = (prev && addr == prev->ml_address + prev->ml_size); in memlist_insert()
114 prev->ml_size += size + next->ml_size; in memlist_insert()
115 prev->ml_next = next->ml_next; in memlist_insert()
121 prev in memlist_insert()
154 struct memlist *prev = 0; memlist_remove() local
225 struct memlist *prev = 0, *next; memlist_find() local
294 struct memlist *head, *prev; memlist_subsume() local
327 struct memlist *head = 0, *prev = 0; memlist_dup() local
[all...]
/titanic_51/usr/src/cmd/audio/utilities/
H A DAudioList.cc40 aptr(0), next(0), prev(0) in AudioListEntry()
52 next->prev = prev; in ~AudioListEntry()
54 if (prev != 0) { in ~AudioListEntry()
55 prev->next = next; in ~AudioListEntry()
78 prev = after; in link()
82 next->prev = this; in link()
307 AudioListEntry *prev; in Insert() local
311 prev = &head; // this is the first extent in Insert()
313 if (!getposition(pos, prev)) { in Insert()
341 AudioListEntry *prev; Append() local
[all...]
/titanic_51/usr/src/uts/common/io/xge/hal/include/
H A Dxge-list.h33 * @prev: Previous list item.
39 struct xge_list_t* prev; member
53 header->prev = header; in xge_list_init()
83 xge_assert(header->prev != NULL); in xge_list_first_get()
102 xge_assert(item->prev != NULL); in xge_list_remove()
104 item->next->prev = item->prev; in xge_list_remove()
105 item->prev->next = item->next; in xge_list_remove()
107 item->next = item->prev = NULL; in xge_list_remove()
128 new_item->prev in xge_list_insert()
[all...]
/titanic_51/usr/src/contrib/ast/src/cmd/msgcc/
H A DMamfile44 prev msgadmin.sh
96 prev ${PACKAGE_ast_INCLUDE}/ast_common.h implicit
100 prev ${PACKAGE_ast_INCLUDE}/prototyped.h implicit
108 prev ${PACKAGE_ast_INCLUDE}/ast_common.h implicit
111 prev ${PACKAGE_ast_INCLUDE}/ast_api.h implicit
115 prev ${PACKAGE_ast_INCLUDE}/endian.h implicit
117 prev ${PACKAGE_ast_INCLUDE}/ast_wchar.h implicit
125 prev ${PACKAGE_ast_INCLUDE}/ast_std.h implicit
128 prev ${PACKAGE_ast_INCLUDE}/stdio.h implicit
129 prev
[all...]
/titanic_51/usr/src/contrib/ast/src/lib/libpp/
H A DMamfile48 prev ${PACKAGE_ast_INCLUDE}/endian.h implicit
56 prev ${PACKAGE_ast_INCLUDE}/ast_common.h implicit
59 prev ${PACKAGE_ast_INCLUDE}/ast_api.h implicit
63 prev ${PACKAGE_ast_INCLUDE}/endian.h implicit
65 prev ${PACKAGE_ast_INCLUDE}/ast_wchar.h implicit
73 prev ${PACKAGE_ast_INCLUDE}/ast_std.h implicit
76 prev ${PACKAGE_ast_INCLUDE}/stdio.h implicit
77 prev ${PACKAGE_ast_INCLUDE}/ast_common.h implicit
79 prev ${PACKAGE_ast_INCLUDE}/ast_common.h implicit
85 prev
[all...]
/titanic_51/usr/src/tools/scripts/
H A Dcstyle.pl106 my ($filename, $line, $prev); # shared globals
223 printf $fmt, $filename, $. - 1, $error, $prev;
256 $prev = '';
387 if (/^\{$/ && $prev =~ /\)\s*(const\s*)?(\/\*.*\*\/\s*)?\\?$/) {
392 $prev = $line;
396 if ($prev =~ /^\s*return\s*;/) {
401 $prev = $line;
445 $prev = $line;
471 $prev = $line;
490 $prev
[all...]
H A Djstyle.pl61 my ($filename, $line, $prev);
157 $prev = $line;
203 $prev = $line;
208 $prev = $line;
231 $prev = $line;
250 $prev = $line;
283 !(/^\s*[-+|&\/?:=]/ || ($prev =~ /,\s*$/))) {
308 $prev = $line;
437 if ($in_class && /^\s+{/ && ($prev =~ /\)\s*$/)) {
463 if ($prev
[all...]
/titanic_51/usr/src/cmd/lp/cmd/lpsched/
H A Drstatus.c53 r->prev = prs->prev; in insertr()
54 if (r->prev) in insertr()
55 r->prev->next = r; in insertr()
57 prs->prev = r; in insertr()
66 r->prev = prs; in insertr()
83 r->next->prev = r->prev; in remover()
85 if (r->prev) in remover()
86 r->prev in remover()
[all...]
/titanic_51/usr/src/lib/libresolv2/common/isc/
H A Dev_waits.c108 evWait *this, *prev; in evUnwait() local
116 for (prev = NULL, this = wl->first; in evUnwait()
118 prev = this, this = this->next) in evUnwait()
121 if (prev != NULL) in evUnwait()
122 prev->next = this->next; in evUnwait()
126 wl->last = prev; in evUnwait()
135 for (prev = NULL, this = ctx->waitDone.first; in evUnwait()
137 prev = this, this = this->next) in evUnwait()
140 if (prev != NULL) in evUnwait()
141 prev in evUnwait()
[all...]
/titanic_51/usr/src/cmd/powertop/common/
H A Dsuggestions.c95 new->prev = NULL; in pt_sugg_add()
129 new->prev = n; in pt_sugg_add()
137 new->prev = sugg; in pt_sugg_add()
138 sugg->prev = new; in pt_sugg_add()
146 new->prev = pos->prev; in pt_sugg_add()
147 pos->prev->next = new; in pt_sugg_add()
148 pos->prev = new; in pt_sugg_add()
172 sugg->prev = NULL; in pt_sugg_remove()
177 n->prev in pt_sugg_remove()
[all...]
/titanic_51/usr/src/contrib/ast/src/lib/libsum/
H A DMamfile84 prev ${PACKAGE_ast_INCLUDE}/endian.h implicit
105 prev ${PACKAGE_ast_INCLUDE}/ast_common.h implicit
126 prev ${PACKAGE_ast_INCLUDE}/prototyped.h implicit
129 prev ${PACKAGE_ast_INCLUDE}/ast_common.h implicit
130 prev ${PACKAGE_ast_INCLUDE}/prototyped.h implicit
132 prev ${PACKAGE_ast_INCLUDE}/endian.h implicit
138 prev ${PACKAGE_ast_INCLUDE}/ast_common.h implicit
141 prev ${PACKAGE_ast_INCLUDE}/ast_api.h implicit
145 prev ${PACKAGE_ast_INCLUDE}/endian.h implicit
147 prev
[all...]
/titanic_51/usr/src/lib/libsqlite/src/
H A Dhash.c187 elem->prev = x->prev; in rehash()
188 if( x->prev ) x->prev->next = elem; in rehash()
190 x->prev = elem; in rehash()
193 if( pH->first ) pH->first->prev = elem; in rehash()
194 elem->prev = 0; in rehash()
238 if( elem->prev ){ in removeElementGivenHash()
239 elem->prev->next = elem->next; in removeElementGivenHash()
244 elem->next->prev in removeElementGivenHash()
[all...]
/titanic_51/usr/src/lib/libsecdb/common/
H A Dgetexecattr.c75 execattr_t *prev = NULL; in getexecprof() local
92 prev = head; in getexecprof()
93 while (prev != NULL) { in getexecprof()
94 prev->next = getexecattr(); in getexecprof()
95 prev = prev->next; in getexecprof()
125 execattr_t *prev = NULL; in getexecuser() local
146 prev = get_tail(head); in getexecuser()
153 if (prev != NULL) { in getexecuser()
154 prev in getexecuser()
230 execattr_t *prev; global() member
[all...]
/titanic_51/usr/src/uts/intel/promif/
H A Dprom_prop.c57 prom_decode_composite_string(void *buf, size_t buflen, char *prev) in prom_decode_composite_string() argument
62 if (prev == 0) in prom_decode_composite_string()
65 prev += strlen(prev) + 1; in prom_decode_composite_string()
66 if (prev >= ((char *)buf + buflen)) in prom_decode_composite_string()
68 return (prev); in prom_decode_composite_string()
/titanic_51/usr/src/cmd/bnu/
H A Dsysfiles.c100 char *prev = _uu_setlocale(LC_ALL, "C"); local
104 (void) _uu_resetlocale(LC_ALL, prev);
116 char *prev = _uu_setlocale(LC_ALL, "C"); local
119 (void) _uu_resetlocale(LC_ALL, prev);
466 char *prev = _uu_setlocale(LC_ALL, "C"); local
477 (void) _uu_resetlocale(LC_ALL, prev);
486 (void) _uu_resetlocale(LC_ALL, prev);
490 (void) _uu_resetlocale(LC_ALL, prev);
524 char *prev = _uu_setlocale(LC_ALL, "C"); local
532 (void) _uu_resetlocale(LC_ALL, prev);
575 char *prev = _uu_setlocale(LC_ALL, "C"); global() local
671 char *prev = _uu_setlocale(LC_ALL, "C"); global() local
[all...]
/titanic_51/usr/src/uts/common/io/ib/clients/of/sol_ofs/
H A Dsol_ofs_gen_util.c62 new_entry->prev = list->tail; in add_genlist()
83 if (entry->prev) { in delete_genlist()
84 entry->prev->next = entry->next; in delete_genlist()
90 entry->next->prev = entry->prev; in delete_genlist()
92 list->tail = entry->prev; in delete_genlist()
96 entry->prev = entry->next = NULL; in delete_genlist()
149 entry->prev = list->tail; in insert_genlist_tail()
/titanic_51/usr/src/cmd/mailx/
H A Dmyfopen.c106 register NODE *cur, *prev; in del1() local
108 for (prev = cur = fplist; cur != (NODE *)NULL; cur = cur->next) { in del1()
113 prev->next = cur->next; in del1()
114 cur = prev->next ? prev->next : prev; in del1()
117 curptr = prev; in del1()
121 prev = cur; in del1()

12345678910>>...30