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

1 2 3 4 5 6 7 8 9

  /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/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';
globals.c 321 const char *tail; local
328 tail = str + strlen(str);
329 while ((tail > str) && conv_strproc_isspace(*(tail - 1)))
330 tail--;
331 uvalue->csl_strlen = tail - str;
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
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 ? "" : " ",
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_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...]
  /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/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/lib/udapl/udapl_tavor/include/
dapl_provider.h 69 DAPL_PROVIDER_LIST_NODE *tail; member in struct:DAPL_PROVIDER_LIST
  /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/lib/udapl/udapl_tavor/common/
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...]
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...]
  /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/lib/libast/common/path/
pathfind.c 46 Dir_t* tail; /* directory list tail */ member in struct:__anon78
68 if (state.tail)
69 state.tail = state.tail->next = dp;
71 state.head = state.tail = dp;
  /onnv/onnv-gate/usr/src/cmd/sgs/libelf/common/
input.c 92 size_t tail; local
119 * Tail gives one beyond the last offset that must be retrieved,
127 tail = base + sz + _elf_pagesize - 1;
130 tlbit = 1 << PGNUM(tail);
132 tlreg = &elf->ed_vm[REGNUM(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/bc/
bc.y 102 | start stat tail
116 dlist : tail
117 | dlist _AUTO dlets tail
220 | slist tail stat
224 tail : '\n' label
  /onnv/onnv-gate/usr/src/cmd/fs.d/nfs/lib/
nfslogtab.c 212 struct logtab_ent_list *head = NULL, *tail = NULL, *tmpl; local
246 head = tail = tmpl;
252 tail->lel_next = tmpl;
253 tail = tmpl; /* remember the last element */
296 struct logtab_ent_list *lelp, *head = NULL, *tail = NULL; local
329 head = tail = lelp;
335 tail->lel_next = lelp;
336 tail = lelp; /* remember the last element */
  /onnv/onnv-gate/usr/src/cmd/fs.d/nfs/mountd/
exportlist.c 73 struct exportnode **tail; local
91 tail = &exportlist;
156 tail = newexport(sh->sh_path, groups, tail);
192 newgroup(char *grname, struct groupnode **tail)
203 *tail = new;
209 newexport(char *grname, struct groupnode *grplist, struct exportnode **tail)
221 *tail = new;
  /onnv/onnv-gate/usr/src/cmd/fs.d/nfs/nfslog/
buffer_list.c 374 struct sharepnt_ent *tail; local
379 tail = sep;
381 *se_tail = tail;
  /onnv/onnv-gate/usr/src/lib/libnsl/nis/cache/
local_cache.h 83 LocalCacheEntry *tail; member in class:NisLocalCache
  /onnv/onnv-gate/usr/src/lib/libslp/clib/
slp_queue.c 62 slp_queue_entry_t *tail; member in struct:queue
114 * Adds msg to the tail of queue q.
131 q->tail->next = qe;
132 q->tail = qe;
134 q->head = q->tail = qe;
179 q->head = q->tail = NULL;
  /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...]
  /onnv/onnv-gate/usr/src/psm/stand/cpr/common/
support.c 95 cprop_t *prop, *tail; local
133 for (prop_errors = 0, prop = cdef.props, tail = prop + CPR_MAXPROP;
134 prop < tail; prop++) {

Completed in 420 milliseconds

1 2 3 4 5 6 7 8 9