HomeSort by relevance Sort by last modified time
    Searched refs:tail (Results 1 - 25 of 374) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /onnv/onnv-gate/usr/src/lib/libpp/common/
ppcomment.c 31 ppcomment(char* head, char* comment, char* tail, int line)
34 ppprintf("%s%-.*s%s", head, MAXTOKEN - 4, comment, tail);
  /onnv/onnv-gate/usr/src/lib/libxcurses/src/libc/xcurses/
mknames.awk 58 function tail(file) { function
94 tail("boolname.c");
95 tail("boolcode.c");
96 tail("boolfnam.c");
97 tail("numname.c");
98 tail("numcode.c");
99 tail("numfnam.c");
100 tail("strname.c");
101 tail("strcode.c");
102 tail("strfnam.c")
    [all...]
  /onnv/onnv-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
mknames.awk 59 function tail(file) { function
102 tail("boolname.c");
103 tail("boolcode.c");
104 tail("boolfnam.c");
105 tail("numname.c");
106 tail("numcode.c");
107 tail("numfnam.c");
108 tail("strname.c");
109 tail("strcode.c");
110 tail("strfnam.c")
    [all...]
  /onnv/onnv-gate/usr/src/tools/cscope-fast/
history.c 42 HISTORY *head, *tail, *current; variable
51 if (tail) {
52 tail->next = h;
54 h->previous = tail;
55 tail = h;
57 head = tail = h;
75 } else if (tail)
76 return (current = tail);
95 /* reset current to tail */
  /onnv/onnv-gate/usr/src/cmd/svr4pkg/libinst/
pathdup.c 56 static struct dup *head, *tail, *new; variable in typeref:struct:
76 tail = head->next;
77 while (tail) {
78 new = tail->next;
79 free(tail);
80 tail = new;
82 tail = head;
102 tail->next = new;
103 tail = new;
125 pt = &tail->mem[MEMSIZ-size]
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sgs/libconv/common/
strproc.c 69 char *tail; local
76 tail = str + strlen(str);
77 while ((tail > str) && conv_strproc_isspace(*(tail - 1)))
78 tail--;
79 *tail = '\0';
  /onnv/onnv-gate/usr/src/lib/udapl/udapl_tavor/common/
dapl_ring_buffer_util.c 86 rbuf->tail = 0;
127 if (rbuf->head != rbuf->tail) {
209 if (((pos + 1) & rbuf->lim) != rbuf->tail) {
242 if (rbuf->head != rbuf->tail) {
243 pos = rbuf->tail;
244 rbuf->tail = (pos + 1) & rbuf->lim;
274 int tail; local
278 tail = rbuf->tail;
280 if (head == tail)
    [all...]
dapl_cookie.c 52 * tail index : index of last unallocated cookie
57 * used to update the tail. This will implicitly deallocate all of the cookies
58 * "between" the old tail and the new tail.
140 * allocate one additional entry so that the tail
155 buffer->tail = 0;
202 DAPL_ATOMIC tail; local
224 tail = curr_buffer->tail;
226 while (head != tail) {
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
snoop_zip.c 51 uint8_t *tail = (uint8_t *)zip + len; local
72 if ((p+6 > tail) || (p+7+p[6] > tail))
110 if (p+2 > tail)
126 if (p+2 > tail)
130 if (p+1 > tail || (&p[1] + p[0]) > tail)
141 if (p+1 > tail || (&p[1] + p[0]) > tail)
148 if (p+5 > tail)
269 char *tail = &buf[sizeof (buf)]; local
290 char *tail = &buf[sizeof (buf)]; local
313 uint8_t *tail = (uint8_t *)(atp+1) + len; local
    [all...]
snoop_atp.c 102 char *tail = &buf[sizeof (buf)]; local
106 p += snprintf(p, tail-p, "TReq");
110 p += snprintf(p, tail-p, "TResp");
113 p += snprintf(p, tail-p, "TRel");
117 p += snprintf(p, tail-p, ci & ATP_FLG_XO ? " XO" : " ALO");
120 p += snprintf(p, tail-p, " EOM");
123 p += snprintf(p, tail-p, " STS");
126 (void) snprintf(p, tail-p, " %s", to);
snoop_nbp.c 100 show_nbp_tuples(uint8_t *p, int tuples, uint8_t *tail)
112 if ((p + 5) > tail)
120 if (p > tail || &p[1]+p[0] > tail)
125 if (p > tail || &p[1]+p[0] > tail)
130 if (p > tail || &p[1]+p[0] > tail)
snoop_adsp.c 123 char *tail = &buf[sizeof (buf)]; local
126 p += snprintf(p, tail-p, "AckReq");
129 p += snprintf(p, tail-p, p == buf ? "EOM" : " EOM");
133 p += snprintf(p, tail-p, p == buf ? "Att" : " Att");
137 (void) snprintf(p, tail-p, "%s%s", p == buf ? "" : " ",
  /onnv/onnv-gate/usr/src/cmd/rcap/rcapd/
rcapd_rfd.c 62 static rfd_t *tail; /* tail of global list */ variable
98 if (tail == NULL) {
110 rfd = rfd_find_prev_class(tail, RFD_RESERVED);
117 rfd = rfd_find_prev_class(tail, RFD_PSINFO);
128 rfd = tail;
181 if (tail != NULL)
182 rfd->rfd_prev_class = rfd_find_prev_class(tail, class);
184 rfd->rfd_prev_class = tail;
185 rfd->rfd_prev = tail;
    [all...]
  /onnv/onnv-gate/usr/src/ucbcmd/ln/
ln.c 79 char *tail; local
90 tail = strrchr(from, '/');
91 if (tail == 0)
92 tail = from;
94 tail++;
95 if (strlen(to) + strlen(tail) >= sizeof (destname) - 1) {
97 to, tail);
100 (void) sprintf(destname, "%s/%s", to, tail);
  /onnv/onnv-gate/usr/src/cmd/sgs/include/
list.h 52 Listnode *tail; /* the last element */ member in struct:list
67 Elf32_Addr tail; /* the last element */ member in struct:list32
  /onnv/onnv-gate/usr/src/uts/common/io/scsi/adapters/iscsi/
iscsi_queue.c 31 static void iscsi_enqueue_cmd_tail(iscsi_cmd_t **head, iscsi_cmd_t **tail,
60 queue->tail = NULL;
90 &isp->sess_queue_pending.tail, icmdp);
95 &isp->sess_queue_pending.tail, icmdp);
116 &isp->sess_queue_pending.tail, icmdp);
134 * This interface attempts to keep newer items are on the tail,
138 * the current head, otherwise add to the tail.
172 &icp->conn_queue_active.tail, icmdp);
177 &icp->conn_queue_active.tail, icmdp);
180 &icp->conn_queue_active.tail, icmdp)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/vi/port/
ex_cmds.c 198 tail("abbreviate");
205 tail("args");
215 tail("append");
233 tail("copy");
240 tail("crypt");
263 tail("cd");
304 tail("change");
343 tail("delete");
363 tail(peekchar() == 'x' ? "ex" : "edit");
402 tail("file")
    [all...]
  /onnv/onnv-gate/usr/src/cmd/lp/filter/postscript/postio/
slowsend.c 57 extern int tail;
146 if ( num > tail - head )
147 num = tail - head;
  /onnv/onnv-gate/usr/src/cmd/dmesg/
dmesg.sh 32 /var/adm/messages | /usr/bin/tail -200
  /onnv/onnv-gate/usr/src/cmd/mail/
poplist.c 40 hdrlines[hdrtype].head : hdrlines[hdrtype].tail);
48 hdrlines[hdrtype].head = hdrlines[hdrtype].tail =
57 hdrlines[hdrtype].head = hdrlines[hdrtype].tail =
60 hdrlines[hdrtype].tail = hdr2rm->prev;
gendeliv.c 55 hdrlines[H_DAFWDFROM].tail = hdrlines[H_AFWDFROM].tail;
57 hdrlines[H_AFWDFROM].tail = (struct hdrs *)NULL;
59 hdrlines[H_DRECEIVED].tail = hdrlines[H_RECEIVED].tail;
61 hdrlines[H_RECEIVED].tail = (struct hdrs *)NULL;
63 hdrlines[H_DTCOPY].tail = hdrlines[H_TCOPY].tail;
65 hdrlines[H_TCOPY].tail = (struct hdrs *)NULL;
120 if ((hptr = hdrlines[H_FROM1].tail) == (struct hdrs *)NULL)
    [all...]
goback.c 139 hdrlines[H_DAFWDFROM].tail = hdrlines[H_AFWDFROM].tail;
141 hdrlines[H_AFWDFROM].tail = (struct hdrs *)NULL;
143 hdrlines[H_DRECEIVED].tail = hdrlines[H_RECEIVED].tail;
145 hdrlines[H_RECEIVED].tail = (struct hdrs *)NULL;
147 hdrlines[H_DTCOPY].tail = hdrlines[H_TCOPY].tail;
149 hdrlines[H_TCOPY].tail = (struct hdrs *)NULL;
  /onnv/onnv-gate/usr/src/lib/libresolv2/include/isc/
list.h 22 #define LIST(type) struct { type *head, *tail; }
24 do { (list).head = NULL; (list).tail = NULL; } while (0)
38 #define TAIL(list) ((list).tail)
47 (list).tail = (elt); \
56 if ((list).tail != NULL) \
57 (list).tail->link.next = (elt); \
60 (elt)->link.prev = (list).tail; \
62 (list).tail = (elt); \
71 INSIST((list).tail == (elt));
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/io/drm/
drm_auth.c 83 if (dev->magiclist[hash].tail) {
84 dev->magiclist[hash].tail->next = entry;
85 dev->magiclist[hash].tail = entry;
88 dev->magiclist[hash].tail = entry;
111 if (dev->magiclist[hash].tail == pt) {
112 dev->magiclist[hash].tail = prev;
  /onnv/onnv-gate/usr/src/lib/udapl/libdat/common/
dat_dictionary.c 64 DAT_DICTIONARY_NODE *tail; member in struct:DAT_DICTIONARY
128 /* create the tail node */
129 p_dictionary->tail = dat_os_alloc(sizeof (DAT_DICTIONARY_NODE));
130 if (NULL == p_dictionary->tail) {
136 (void) dat_os_memset(p_dictionary->tail, '\0',
139 p_dictionary->head->next = p_dictionary->tail;
140 p_dictionary->tail->prev = p_dictionary->head;
154 if (NULL != p_dictionary->tail) {
155 dat_os_free(p_dictionary->tail,
280 prev_node = p_dictionary->tail->prev
    [all...]

Completed in 13507 milliseconds

1 2 3 4 5 6 7 8 91011>>