Searched refs:ts (Results 251 - 275 of 980) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/groff-38/groff/font/devps/generate/
H A Dlgreekmap31 sigma1 ts
/macosx-10.9.5/ntp-88/util/
H A Dntptime.c91 l_fp ts; local
291 TVTOTS(&tv, &ts);
292 ts.l_ui += JAN_1970;
293 ts.l_uf += ts_roundbit;
294 ts.l_uf &= ts_mask;
296 prettydate(&ts), fdigits, (int) time_frac);
301 (unsigned int) ts.l_ui, (unsigned int) ts.l_uf,
/macosx-10.9.5/vim-53/runtime/indent/
H A Dobjc.vim35 let width = width + &ts - (width % &ts)
54 let width = width + &ts - (width % &ts)
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dchaskell.vim18 " vim: ts=8
H A Dxbl.vim29 " vim: ts=8
/macosx-10.9.5/xnu-2422.115.4/tools/tests/libMicro/apple/
H A Dvm_allocate.c90 //tsd_t *ts = (tsd_t *)tsd;
91 //(void) fprintf(stderr, "benchmark_initbatch: ts_once = %i\n",ts->ts_once);
142 tsd_t *ts = (tsd_t *)tsd; local
146 ts->ts_once = optt;
147 //(void) fprintf(stderr, "benchmark_finibatch: ts_once = %i\n",ts->ts_once);
162 //tsd_t *ts = (tsd_t *)tsd;
163 //(void) fprintf(stderr, "benchmark_finiworker: ts_once = %i\n",ts->ts_once);
190 //tsd_t *ts = (tsd_t *)tsd;
191 //ts->ts_once = optt;
192 //(void) fprintf(stderr, "benchmark_initworker: ts_once = %i\n",ts
[all...]
H A Dlmbench_bw_file_rd.c243 tsd_t *ts = (tsd_t *)tsd; local
244 strncpy(ts->filename, optf, 255);
245 ts->open_read_close = opti;
246 debug("benchmark_initworker: ts_once = %i\n",ts->ts_once);
266 tsd_t *ts = (tsd_t *)tsd; local
272 if (ts->open_read_close) {
273 fd = open(ts->filename, O_RDONLY);
H A Dlmbench_bw_unix.c287 tsd_t *ts = (tsd_t *)tsd; local
289 ts->repetitions++;
290 ts->repetitions--;
291 debug("benchmark_finiworker: repetitions = %i\n",ts->repetitions);
/macosx-10.9.5/xnu-2422.115.4/bsd/kern/
H A Dkern_overrides.c185 struct timespec ts; local
186 ts.tv_sec = timeout / NSEC_PER_SEC;
187 ts.tv_nsec = timeout - ((long)ts.tv_sec * NSEC_PER_SEC);
188 msleep((caddr_t)&sys_override_wait, &sys_override_lock, PRIBIO | PCATCH, "system_override", &ts);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/filters/
H A DFEConvolveMatrix.cpp501 static TextStream& operator<<(TextStream& ts, const EdgeModeType& type) argument
505 ts << "UNKNOWN";
508 ts << "DUPLICATE";
511 ts << "WRAP";
514 ts << "NONE";
517 return ts;
520 TextStream& FEConvolveMatrix::externalRepresentation(TextStream& ts, int indent) const argument
522 writeIndent(ts, indent);
523 ts << "[feConvolveMatrix";
524 FilterEffect::externalRepresentation(ts);
[all...]
/macosx-10.9.5/text_cmds-87/ed/
H A Ded.h120 char *ts; \
123 if ((ts = (char *) realloc((b), ti += max((i), MINBUFSZ))) == NULL) { \
130 if ((ts = (char *) malloc(ti += max((i), MINBUFSZ))) == NULL) { \
138 (b) = ts; \
146 char *ts; \
148 if ((ts = (char *) realloc((b), ti += max((i), MINBUFSZ))) == NULL) { \
155 (b) = ts; \
H A Dglbl.c150 line_t **ts; local
155 if ((ts = (line_t **) realloc(active_list,
164 if ((ts = (line_t **) malloc((ti += MINBUFSZ) *
174 active_list = ts;
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/tm/
H A Dtmxtime.c56 Tm_t ts; local
58 ts = *tm;
60 tm = &ts;
/macosx-10.9.5/libpcap-42/libpcap/
H A Dsf-pcap.c336 hdr->ts.tv_sec = SWAPLONG(sf_hdr.ts.tv_sec);
337 hdr->ts.tv_usec = SWAPLONG(sf_hdr.ts.tv_usec);
341 hdr->ts.tv_sec = sf_hdr.ts.tv_sec;
342 hdr->ts.tv_usec = sf_hdr.ts.tv_usec;
487 sf_hdr.ts.tv_sec = h->ts
[all...]
/macosx-10.9.5/ncurses-42/ncurses/ncurses/widechar/
H A Dlib_box_set.c47 const ARG_CH_T ts, const ARG_CH_T bs,
59 _tracech_t2(3, ts),
73 RENDER_WITH_DEFAULT(ts, WACS_HLINE);
45 wborder_set(WINDOW *win, const ARG_CH_T ls, const ARG_CH_T rs, const ARG_CH_T ts, const ARG_CH_T bs, const ARG_CH_T tl, const ARG_CH_T tr, const ARG_CH_T bl, const ARG_CH_T br) argument
/macosx-10.9.5/xnu-2422.115.4/osfmk/mach/
H A Dpolicy.h214 policy_timeshare_base_data_t ts; member in struct:policy_bases
220 policy_timeshare_limit_data_t ts; member in struct:policy_limits
226 policy_timeshare_info_data_t ts; member in struct:policy_infos
/macosx-10.9.5/webdavfs-352.92.2/webdav_fs.kextproj/webdav_fs.kmodproj/
H A Dwebdav_vnops.c80 struct timespec ts;
83 ts.tv_sec = 0;
84 ts.tv_nsec = 1 * 1000 * 1000; /* wait for 1 ms */
85 (void) msleep((caddr_t)&ts, NULL, PCATCH, "log_vnop_start", &ts);
91 struct timespec ts;
94 ts.tv_sec = 0;
95 ts.tv_nsec = 1 * 1000 * 1000; /* wait for 1 ms */
96 (void) msleep((caddr_t)&ts, NULL, PCATCH, "log_vnop_error", &ts);
426 struct timespec ts; local
584 struct timespec ts; local
840 struct timespec ts; local
1474 struct timespec ts; local
2085 struct timespec ts; local
2934 struct timespec ts; local
3228 struct timespec ts; local
3414 struct timespec ts; local
3914 struct timespec ts; local
4180 struct timespec ts; local
[all...]
/macosx-10.9.5/swig-10/Source/Swig/
H A Dtypemap.c313 int ts = tm_scope; local
319 while (ts >= 0) {
327 tm = typemap_get(ptype, pname, ts);
349 ts--;
416 int ts = tm_scope; local
467 while (ts >= 0) {
470 sm = typemap_get(type, name, ts);
482 sm = typemap_get(ntype, name, ts);
521 ts--;
610 int ts; local
887 String *ts; local
1926 int ts; local
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/crypto/mersenne/
H A Dmt19937db.c141 db_timespec ts; local
159 __os_gettime(env, &ts, 1);
160 __db_chksum(NULL, (u_int8_t *)&ts.tv_sec,
161 sizeof(ts.tv_sec), NULL, (u_int8_t *)&seed);
/macosx-10.9.5/Heimdal-323.92.1/lib/ipc/
H A Dtimer.c99 struct timespec ts; local
100 ts.tv_sec = e->t;
101 ts.tv_nsec = 0;
103 dispatch_walltime(&ts, 0),
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDSystem/
H A DIOBSDConsole.h56 /* atTime */ AbsoluteTime ts,
H A DIOHIDSystemCursorHelper.cpp126 void IOHIDSystemCursorHelper::logPosition(const char *name, uint64_t ts) argument
135 name, ts,
153 void IOHIDSystemCursorHelper::klogPosition(const char *name, uint64_t ts) argument
162 name, ts,
/macosx-10.9.5/OpenSSH-186/openssh/openbsd-compat/
H A Dbsd-misc.c171 struct timespec ts; local
173 ts.tv_sec = useconds / 1000000;
174 ts.tv_nsec = (useconds % 1000000) * 1000;
175 return nanosleep(&ts, NULL);
/macosx-10.9.5/vim-53/src/
H A Dgui_beval.h1 /* vi:set ts=8 sts=4 sw=4:
61 int ts; /* tabstop setting for this buffer */ member in struct:BalloonEvalStruct
/macosx-10.9.5/xnu-2422.115.4/security/
H A Dmac_vfs_subr.c103 struct timespec ts; local
105 ts.tv_sec = 10;
106 ts.tv_nsec = 0;
112 "vnode_label", &ts);

Completed in 387 milliseconds

<<11121314151617181920>>