Searched refs:ts (Results 126 - 150 of 951) sorted by relevance

1234567891011>>

/macosx-10.10.1/bind9-45.101/bind9/lib/isc/pthreads/
H A Dcondition.c37 struct timespec ts; local
45 result = isc_time_secondsastimet(t, &ts.tv_sec);
53 ts.tv_nsec = (long)isc_time_nanoseconds(t);
57 presult = pthread_cond_timedwait(c, &m->mutex, &ts);
59 presult = pthread_cond_timedwait(c, m, &ts);
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/tm/
H A Dtmxduration.c37 Time_t ts; local
57 ts = tmxdate(t, &x, now);
61 ns = ts - now;
67 ts = tmxdate(t, &x, now);
71 ns = ts - now;
/macosx-10.10.1/libffi-18.1/tests/testsuite/libffi.call/
H A Dstruct1.c17 static test_structure_1 struct1(test_structure_1 ts) argument
20 ts.uc++;
22 ts.d--;
23 ts.ui++;
25 return ts;
H A Dstruct7.c16 static test_structure_7 struct7 (test_structure_7 ts) argument
18 ts.f1 += 1;
19 ts.f2 += 1;
20 ts.d += 1;
22 return ts;
H A Dstruct8.c17 static test_structure_8 struct8 (test_structure_8 ts) argument
19 ts.f1 += 1;
20 ts.f2 += 1;
21 ts.f3 += 1;
22 ts.f4 += 1;
24 return ts;
/macosx-10.10.1/ntp-92/lib/isc/pthreads/
H A Dcondition.c37 struct timespec ts; local
45 result = isc_time_secondsastimet(t, &ts.tv_sec);
53 ts.tv_nsec = (long)isc_time_nanoseconds(t);
57 presult = pthread_cond_timedwait(c, &m->mutex, &ts);
59 presult = pthread_cond_timedwait(c, m, &ts);
/macosx-10.10.1/ntp-92/util/
H A Dhist.c31 struct timeval ts, tr, tp; local
48 gettimeofday(&ts, &tzp);
49 t = ts.tv_sec * 1000000 + ts.tv_usec;
59 printf("error <= 0 %ld %d %d, %d %d\n", w, ts.tv_sec,
60 ts.tv_usec, tr.tv_sec, tr.tv_usec);
69 ts = tr;
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-core/libffi-src/tests/testsuite/libffi.call/
H A Dstruct1.c17 static test_structure_1 struct1(test_structure_1 ts) argument
20 ts.uc++;
22 ts.d--;
23 ts.ui++;
25 return ts;
H A Dstruct7.c16 static test_structure_7 struct7 (test_structure_7 ts) argument
18 ts.f1 += 1;
19 ts.f2 += 1;
20 ts.d += 1;
22 return ts;
H A Dstruct8.c17 static test_structure_8 struct8 (test_structure_8 ts) argument
19 ts.f1 += 1;
20 ts.f2 += 1;
21 ts.f3 += 1;
22 ts.f4 += 1;
24 return ts;
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/libffi-src/tests/testsuite/libffi.call/
H A Dstruct1.c17 static test_structure_1 struct1(test_structure_1 ts) argument
20 ts.uc++;
22 ts.d--;
23 ts.ui++;
25 return ts;
H A Dstruct7.c16 static test_structure_7 struct7 (test_structure_7 ts) argument
18 ts.f1 += 1;
19 ts.f2 += 1;
20 ts.d += 1;
22 return ts;
H A Dstruct8.c17 static test_structure_8 struct8 (test_structure_8 ts) argument
19 ts.f1 += 1;
20 ts.f2 += 1;
21 ts.f3 += 1;
22 ts.f4 += 1;
24 return ts;
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/libffi-src/tests/testsuite/libffi.call/
H A Dstruct1.c17 static test_structure_1 struct1(test_structure_1 ts) argument
20 ts.uc++;
22 ts.d--;
23 ts.ui++;
25 return ts;
H A Dstruct7.c16 static test_structure_7 struct7 (test_structure_7 ts) argument
18 ts.f1 += 1;
19 ts.f2 += 1;
20 ts.d += 1;
22 return ts;
H A Dstruct8.c17 static test_structure_8 struct8 (test_structure_8 ts) argument
19 ts.f1 += 1;
20 ts.f2 += 1;
21 ts.f3 += 1;
22 ts.f4 += 1;
24 return ts;
/macosx-10.10.1/ruby-106/ruby/test/
H A Dtest_open3.rb153 [RUBY, '-e', 'print STDIN.read + "2"']) {|i,o,ts|
156 assert_kind_of(Array, ts)
157 assert_equal(2, ts.length)
158 ts.each {|t| assert_kind_of(Thread, t) }
162 ts.each {|t|
170 [RUBY, '-e', 'print STDIN.read + "2"']) {|o,ts|
172 assert_kind_of(Array, ts)
173 assert_equal(2, ts.length)
174 ts.each {|t| assert_kind_of(Thread, t) }
176 ts
[all...]
/macosx-10.10.1/postfix-255/postfix/src/bounce/
H A Dbounce_templates.c246 void bounce_templates_load(VSTREAM *fp, BOUNCE_TEMPLATES *ts) argument
310 if (MATCH_TMPL_NAME(ts->failure->class, len, member_name))
311 bounce_template_load(ts->failure, VSTREAM_PATH(fp), value);
312 else if (MATCH_TMPL_NAME(ts->delay->class, len, member_name))
313 bounce_template_load(ts->delay, VSTREAM_PATH(fp), value);
314 else if (MATCH_TMPL_NAME(ts->success->class, len, member_name))
315 bounce_template_load(ts->success, VSTREAM_PATH(fp), value);
316 else if (MATCH_TMPL_NAME(ts->verify->class, len, member_name))
317 bounce_template_load(ts->verify, VSTREAM_PATH(fp), value);
341 void bounce_templates_expand(VSTREAM *fp, BOUNCE_TEMPLATES *ts) argument
368 bounce_templates_dump(VSTREAM *fp, BOUNCE_TEMPLATES *ts) argument
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/rinda/
H A Dring.rb30 # Advertises +ts+ on the UDP broadcast address at +port+.
32 def initialize(ts, port=Ring_PORT)
33 @ts = ts
61 @ts.write(tuple, sec)
83 tuple = @ts.take([:lookup_ring, DRbObject])
84 Thread.new { tuple[1].call(@ts) rescue nil}
202 self.lookup_ring(timeout) do |ts|
203 queue.push(ts)
245 ts
[all...]
/macosx-10.10.1/ruby-106/ruby/test/rexml/
H A Dlistener.rb2 attr_reader :ts, :te
5 @ts = false
9 @ts = true if name=="subsection" and attrs["title"]=="Namespaces"
/macosx-10.10.1/SmartCardServices-55111/src/PCSC/
H A Dwinscard_msg.cpp679 INTERNAL void htonlTransmitStruct(transmit_struct *ts) argument
681 if (ts)
683 ts->hCard = htonl(ts->hCard);
684 ts->pioSendPciProtocol = htonl(ts->pioSendPciProtocol);
685 ts->pioSendPciLength = htonl(ts->pioSendPciLength);
686 ts->cbSendLength = htonl(ts
694 ntohlTransmitStruct(transmit_struct *ts) argument
709 htonlTransmitStructExtended(transmit_struct_extended *ts) argument
726 ntohlTransmitStructExtended(transmit_struct_extended *ts) argument
[all...]
/macosx-10.10.1/apr-32/apr/apr/test/
H A Dteststr.c192 } ts[] = { local
244 for (n = 0; n < sizeof(ts)/sizeof(ts[0]); n++) {
250 result = apr_strtoi64(ts[n].in, &end, ts[n].base);
255 " not %" APR_INT64_T_FMT, ts[n].in,
256 result, ts[n].result),
257 result == ts[n].result);
259 if (ts[n].errnum != -1) {
261 apr_psprintf(p, "for '%s': errno was %d not %d", ts[
325 } ts[] = { local
[all...]
/macosx-10.10.1/dcerpc-61/dcerpc/ncklib/
H A Drpcclock.c251 struct timespec *ts
267 ts->tv_sec = start_time.tv_sec + whole_secs;
268 ts->tv_nsec = (1000 * start_time.tv_usec) +
270 if (ts->tv_nsec >= 1000000000)
272 ts->tv_nsec -= 1000000000;
273 ts->tv_sec += 1;
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/port/
H A Dastwinsize.c87 struct ttysize ts;
89 if (!ttctl(fd, TIOCGSIZE, &ts) && ts.ts_lines > 0 && ts.ts_cols > 0)
91 if (rows) *rows = ts.ts_lines;
92 if (cols) *cols = ts.ts_cols;
/macosx-10.10.1/IOHIDFamily-606.1.7/IOHIDSystem/
H A DIOHITablet.cpp106 AbsoluteTime ts)
110 ts);
114 AbsoluteTime ts)
118 ts);
136 AbsoluteTime ts)
147 ts,
154 AbsoluteTime ts)
173 ts,
105 dispatchTabletEvent(NXEventData *tabletEvent, AbsoluteTime ts) argument
113 dispatchProximityEvent(NXEventData *proximityEvent, AbsoluteTime ts) argument
134 _tabletEvent(IOHITablet *self, NXEventData *tabletData, AbsoluteTime ts) argument
152 _proximityEvent(IOHITablet *self, NXEventData *proximityData, AbsoluteTime ts) argument

Completed in 229 milliseconds

1234567891011>>