Searched refs:delay (Results 1 - 25 of 53) sorted by relevance

123

/osnet-11/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dwtimeout.c51 * The delay is in milliseconds.
54 wtimeout(WINDOW *w, int delay) argument
56 if (delay < 0) {
61 /* Non-Block (0 == delay) and delayed (0 < delay) */
69 * Also 'delay' is in milliseconds, so it is rounted up
70 * to the nearest 10th of a second. Only when 'delay' is
73 * of this code was using the expression "(delay + 50) /100",
76 w->_vtime = (delay > 25500) ? 255 : (delay
[all...]
H A Dtimeout.c62 timeout(int delay) argument
64 wtimeout(stdscr, delay);
/osnet-11/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dwtimeout.c48 * The delay is in milliseconds.
51 wtimeout(w, delay)
53 int delay;
56 __m_trace("wtimeout(%p, %d)", w, delay);
59 if (delay < 0) {
64 /* Non-Block (0 == delay) and delayed (0 < delay) */
68 w->_vtime = (delay+50)/100;
H A Dtimeout.c59 (timeout)(int delay) argument
62 __m_trace("timeout(%d)", delay);
65 wtimeout(stdscr, delay);
/osnet-11/usr/src/lib/libcurses/screen/
H A Dttimeout.c51 * delay: < 0 for infinite delay (blocking read)
52 * = 0 for no delay read
60 ttimeout(int delay) argument
65 if (delay < 0)
66 delay = -1;
68 if (cur_term->_delay == delay)
72 if (delay > 0) {
74 _setblock(-delay);
75 _settimeout(delay);
[all...]
H A Ddelay.c63 * Insert a delay into the output stream for "delay/10" milliseconds.
64 * Round up by a half a character frame, and then do the delay.
71 _delay(int delay, int (*outc)(char)) argument
91 delay += mspc10 / 2;
96 for (delay /= mspc10; delay-- > 0; )
H A Dtputs.c53 int delay = 0; local
76 /* Convert the number representing the delay. */
79 delay = delay * 10 + *cp++ - '0';
82 delay *= 10;
86 delay += *cp - '0';
93 * If the delay is followed by a `*', then
95 * If the delay is followed by a '/', then
96 * the delay is done irregardless of xon/xoff.
110 delay *
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CGI/examples/
H A Dnph-clock.cgi5 do_push(-next_page=>\&draw_time,-delay=>1);
/osnet-11/usr/src/lib/libplot/t300s/common/
H A Dsubr.c42 delay(void) function
159 delay();
162 delay();
175 delay();
178 delay();
197 delay();
199 delay();
203 delay();
205 delay();
/osnet-11/usr/src/lib/libc/sparc/gen/
H A Dlock.s38 xor %o1, 0xff, %o0 ! delay - return non-zero if success
H A Dladd.s51 nop ! delay instruction.
53 nop ! delay instruction.
H A Dlsub.s50 nop ! delay instruction.
52 nop ! delay instruction.
H A Dmemmove.s43 cmp %i2, 17 ! delay slot, for small counts copy bytes
48 cmp %i2, 17 ! delay slot, for small counts copy bytes
H A Dmemset.s59 .empty ! following lable is ok in delay slot
H A Dmemcmp.s89 ldub [%o1], %o5 ! delay slot, get next byte from s2
91 mov %o3, %o4 ! delay slot, move *s1 to %o4
97 andcc %o1, 3, %o4 ! delay slot, is s2 aligned?
106 deccc %o2 ! delay slot, compare count (len)
138 sub %o1, %o2, %o0 ! delay slot
143 sub %o4, %o5, %o0 ! delay slot, return(*s1 - *s2)
H A Dlshiftl.s48 nop ! delay instruction.
50 nop ! delay instruction.
H A Dstrncmp.s56 sub %i0, %i1, %i0 ! delay slot, get diff from s1 - s2
63 nop ! delay slot
95 ld [%i1], %i3 ! delay slot
145 ld [%i1], %i3 ! delay slot
189 ld [%i1], %i3 ! delay slot
193 inc 4, %i2 ! delay slot
297 nop ! delay slot
/osnet-11/usr/src/cmd/sendmail/libsm/
H A Dt-sem.c28 delay(t, s) function
75 delay(0, "try to acq");
81 delay(0, "acquired");
85 delay(0, "try to rel");
91 delay(0, "released");
206 delay(1, "parent: acquire 1");
221 delay(3, "parent: release 1");
236 delay(1, "parent: getval");
251 delay(1, "parent: acquire 2");
282 delay(
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CGI/t/
H A Dpush.t26 ok( ! defined $q->push_delay(), 'no initial delay' );
27 is( $q->push_delay(.5), .5, 'set a delay' );
31 # next_page() to be called twice, last_page() once, no delay
35 -delay => 0,
56 # no delay, custom headers from callback, only call callback once
58 -delay => 0,
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CGI/
H A DPush.pm40 my ($type,$callback,$delay,$last_page,$cookie,$target,$expires,$nph,@other) = rearrange([TYPE,NEXT_PAGE,DELAY,LAST_PAGE,[COOKIE,COOKIES],TARGET,EXPIRES,NPH],@p);
43 $delay = 1 unless defined($delay);
44 $self->push_delay($delay);
96 my $delay = shift;
97 if ( ($delay >= 1) && ($delay!~/\./) ){
98 sleep($delay);
100 select(undef,undef,undef,$delay);
105 my ($self,$delay)
[all...]
/osnet-11/usr/src/lib/libsqlite/tool/
H A Dspeedtest2.tcl37 set delay 1000
38 exec sync; after $delay;
42 exec sync; after $delay;
52 exec sync; after $delay;
56 exec sync; after $delay;
H A Dspeedtest.tcl37 set delay 1000
38 # exec sync; after $delay;
42 exec sync; after $delay;
52 exec sync; after $delay;
56 exec sync; after $delay;
60 exec sync; after $delay;
64 exec sync; after $delay;
/osnet-11/usr/src/lib/libc/sparcv9/gen/
H A Dmemmove.s43 cmp %i2, 17 ! delay slot, for small counts copy bytes
48 cmp %i2, 17 ! delay slot, for small counts copy bytes
H A Dmemcmp.s88 ldub [%o1], %o5 ! delay slot, get next byte from s2
90 mov %o3, %o4 ! delay slot, move *s1 to %o4
96 andcc %o1, 3, %o4 ! delay slot, is s2 aligned?
105 deccc %o2 ! delay slot, compare count (len)
136 sub %o1, %o2, %o0 ! delay slot
140 sub %o4, %o5, %o0 ! delay slot, return(*s1 - *s2)
H A Dstrncmp.s56 sub %i0, %i1, %i0 ! delay slot, get diff from s1 - s2
63 nop ! delay slot
95 lduw [%i1], %i3 ! delay slot
145 lduw [%i1], %i3 ! delay slot
189 lduw [%i1], %i3 ! delay slot
193 inc 4, %i2 ! delay slot
297 nop ! delay slot

Completed in 94 milliseconds

123