Searched refs:tail (Results 1 - 25 of 748) sorted by relevance

1234567891011>>

/macosx-10.10.1/ncurses-44/ncurses/ncurses/
H A Dfifo_defs.h44 #define tail sp->_fifotail macro
48 #define h_inc() { head == FIFO_SIZE-1 ? head = 0 : head++; if (head == tail) head = -1, tail = 0;}
49 #define h_dec() { head == 0 ? head = FIFO_SIZE-1 : head--; if (head == tail) tail = -1;}
50 #define t_inc() { tail == FIFO_SIZE-1 ? tail = 0 : tail++; if (tail == head) tail
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/expect/expect/tests/
H A Dall.tcl16 set tail [file tail $file]
17 puts stdout $tail
/macosx-10.10.1/tcl-105/tcl_ext/tclxml/tcldom/tests/
H A Dall.tcl19 set tail [file tail $file]
20 puts stdout $tail
/macosx-10.10.1/man-16/man/src/
H A Dmwi18 zcat $i | col -bx | sed '1,/^NAME/d; /^[A-Z][A-Z]/q' | tail -1
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/tests/
H A Dall.tcl43 set tail [file tail $file]
44 puts $chan $tail
/macosx-10.10.1/IONetworkingFamily-101/
H A DIOMbufQueue.h34 mbuf_t tail; member in struct:IOMbufQueue
49 q->head = q->tail = 0;
62 mbuf_setnextpkt(q->tail , m);
66 for (q->tail = m;
67 mbuf_nextpkt(q->tail);
68 q->tail = mbuf_nextpkt(q->tail), q->count++)
82 mbuf_setnextpkt(q->tail , qe->head);
83 q->tail = qe->tail;
95 mbuf_t tail; local
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tdom/tdom/extensions/tnc/tests/
H A Dall.tcl36 set tail [file tail $file]
37 if {[string match l.*.test $tail]} {
41 puts stdout $tail
68 set tail [file tail $file]
69 puts stdout $tail
/macosx-10.10.1/Heimdal-398.1.2/tests/kdc/
H A Dwait-kdc.sh47 if tail -30 ${log} | grep "${waitfor}" > /dev/null; then
50 if tail -30 ${log} | grep "No sockets" ; then
54 if tail -30 ${log} | grep "bind" | grep "Operation not permitted" ; then
/macosx-10.10.1/shell_cmds-179/find/
H A Doperator.c80 PLAN *tail; /* pointer to tail of subplan */ local
94 for (tail = subplan = NULL;;) {
112 tail = subplan = next;
114 tail->next = next;
115 tail = next;
117 tail->next = NULL;
131 PLAN *tail; /* pointer to tail of result plan */ local
134 result = tail
169 PLAN *tail; /* pointer to tail of result plan */ local
231 PLAN *tail; /* pointer to tail of result plan */ local
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/memchan/memchan/tea.tests/
H A Dall.tcl47 set tail [file tail $file]
48 puts $chan $tail
/macosx-10.10.1/tcl-105/tcl_ext/tclae/tclae/tests/
H A Dall.tcl55 set tail [file tail $file]
56 puts $chan $tail
/macosx-10.10.1/tcl-105/tcl_ext/tktable/tktable/tests/
H A Dall.tcl48 set tail [file tail $file]
49 puts $chan $tail
/macosx-10.10.1/tcl-105/tcl_ext/tktreectrl/tktreectrl/tests/
H A Dall.tcl49 set tail [file tail $file]
50 puts $chan $tail
/macosx-10.10.1/Heimdal-398.1.2/lib/com_err/
H A Dcompile_et.h61 struct error_code *next, **tail; member in struct:error_code
70 (L)->tail = &(V)->next; \
73 *(L)->tail = (V); \
74 (L)->tail = &(V)->next; \
/macosx-10.10.1/IOHIDFamily-606.1.7/IOHIDFamily/
H A DIOHIDEventServiceQueue.cpp69 const UInt32 tail = dataQueue->tail; local
75 if ( tail >= head )
78 if ( (tail + entrySize) <= getQueueSize() )
80 entry = (IODataQueueEntry *)((UInt8 *)dataQueue->queue + tail);
85 // The tail can be out of bound when the size of the new entry
87 // The tail can range from 0 to getQueueSize() inclusive.
90 OSAddAtomic(entrySize, (SInt32 *)&dataQueue->tail);
94 // Wrap around to the beginning, but do not allow the tail to catch
103 if ( ( getQueueSize() - tail ) >
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/expect/expect/
H A Dfixline120 regexp "^#!(.*/)*(.*)" $line1 X X tail
23 append header "exec $tail "; append header {"$0" ${1+"$@"}}
/macosx-10.10.1/tcl-105/tcl_ext/tclxml/tclxml/tests/
H A Dall.tcl52 set tail [file tail $file]
53 if {[string match l.*.test $tail]} {
57 puts stdout $tail
/macosx-10.10.1/tcl-105/tcl_ext/tclxml/tclxslt/test/
H A Dall.tcl51 set tail [file tail $file]
52 if {[string match l.*.test $tail]} {
56 puts stdout $tail
/macosx-10.10.1/uucp-11/uucp/contrib/
H A Dstats.sh11 grep bytes /usr/spool/uucp/Stats | grep -v 'bytes 0.00 secs' | grep -v 'failed after' | tail -80 | \
/macosx-10.10.1/xnu-2782.1.97/iokit/Kernel/
H A DIODataQueue.cpp105 dataQueue->tail = 0;
152 const UInt32 tail = dataQueue->tail; local
160 // Check for underflow of (dataQueue->queueSize - tail)
161 if (dataQueue->queueSize < tail) {
165 if ( tail >= head )
168 if ((entrySize <= UINT32_MAX - tail) &&
169 ((tail + entrySize) <= dataQueue->queueSize) )
171 entry = (IODataQueueEntry *)((UInt8 *)dataQueue->queue + tail);
176 // The tail ca
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tdom/tdom/tests/
H A Dall.tcl43 set tail [file tail $file]
44 if {[string match l.*.test $tail]} {
48 puts stdout $tail
75 set tail [file tail $file]
76 puts stdout $tail
/macosx-10.10.1/tcl-105/tcl_ext/sdx/sdx/lib/app-sdx/
H A Dsync.tcl36 set tail [file tail $file]
37 if {$tail == "." || $tail == ".."} {
40 set target [file join $dest $tail]
42 set seen($tail) 1
45 [info exists opts(ignore,$tail)]} {
83 set tail [file tail $file]
84 if {$tail
[all...]
/macosx-10.10.1/postfix-255/postfix/src/trivial-rewrite/
H A Drewrite.c124 if (tree->head == tree->tail
125 && tree->tail->type == TOK822_QSTRING
126 && VSTRING_LEN(tree->tail->vstr) == 0)
132 if (tree->head == tree->tail
133 && tree->tail->type == '@') {
134 tok822_free_tree(tok822_sub_keep_before(tree, tree->tail));
144 && colon != tree->tail)
150 if ((domain = tok822_rfind_type(tree->tail, '@')) == 0) {
169 && (domain = tok822_rfind_type(tree->tail, '%')) != 0) {
193 && (domain = tok822_rfind_type(tree->tail, '
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/rake/
H A Dinvocation_chain.rb7 def initialize(value, tail)
9 @tail = tail
13 @value == obj || @tail.member?(obj)
34 "#{@tail.to_s} => "
/macosx-10.10.1/bash-94.1.2/bash-3.2/
H A Dhashcmd.c132 char *path, *dotted_filename, *tail; local
149 tail = (pathdata(item)->flags & HASH_RELPATH) ? path : (char *)filename; /* XXX - fix const later */
151 if (tail[0] != '.' || tail[1] != '/')
153 dotted_filename = (char *)xmalloc (3 + strlen (tail));
155 strcpy (dotted_filename + 2, tail);
158 dotted_filename = savestring (tail);
182 tail = (char *)strrchr (path, '/');
184 if (tail)
186 *tail
[all...]

Completed in 617 milliseconds

1234567891011>>