Searched refs:td (Results 26 - 50 of 304) sorted by relevance

1234567891011>>

/external/fio/
H A Dtime.c21 void usec_sleep(struct thread_data *td, unsigned long usec) argument
53 } while (!td->terminate);
66 int in_ramp_time(struct thread_data *td) argument
68 return td->o.ramp_time && !td->ramp_time_over;
71 int ramp_time_over(struct thread_data *td) argument
75 if (!td->o.ramp_time || td->ramp_time_over)
79 if (utime_since(&td->epoch, &tv) >= td
[all...]
H A Deta.c13 * Sets the status of the 'td' in the printed status map.
15 static void check_str_update(struct thread_data *td) argument
17 char c = run_str[td->thread_number - 1];
19 switch (td->runstate) {
21 if (td->error)
23 else if (td->sig)
35 if (td_rw(td)) {
36 if (td_random(td)) {
37 if (td->o.rwmix[DDIR_READ] == 100)
39 else if (td
128 thread_eta(struct thread_data *td) argument
303 struct thread_data *td; local
[all...]
H A Dinit.c321 static void set_cmd_options(struct thread_data *td) argument
323 struct thread_options *o = &td->o;
335 struct thread_data *td; local
351 td = &threads[thread_number++];
352 *td = *parent;
354 td->io_ops = NULL;
356 td->eo = NULL;
358 td->o.uid = td->o.gid = -1U;
360 dup_files(td, paren
374 put_job(struct thread_data *td) argument
393 __setup_rate(struct thread_data *td, enum fio_ddir ddir) argument
413 setup_rate(struct thread_data *td) argument
437 get_rand_start_delay(struct thread_data *td) argument
460 fixup_options(struct thread_data *td) argument
752 td_fill_rand_seeds_os(struct thread_data *td) argument
778 td_fill_rand_seeds_internal(struct thread_data *td) argument
803 td_fill_rand_seeds(struct thread_data *td) argument
823 ioengine_load(struct thread_data *td) argument
879 init_flags(struct thread_data *td) argument
897 setup_random_seeds(struct thread_data *td) argument
1034 add_job(struct thread_data *td, const char *jobname, int job_add_num, int recursed, int client_type) argument
1236 struct thread_data *td, *td_parent; local
1306 struct thread_data *td; local
1705 struct thread_data *td = NULL; local
[all...]
H A Dblktrace.c18 static int refill_fifo(struct thread_data *td, struct fifo *fifo, int fd) argument
30 td_verror(td, errno, "read blktrace file");
44 static int trace_fifo_get(struct thread_data *td, struct fifo *fifo, int fd, argument
48 int ret = refill_fifo(td, fifo, fd);
60 static int discard_pdu(struct thread_data *td, struct fifo *fifo, int fd, argument
67 return trace_fifo_get(td, fifo, fd, NULL, t->pdu_len);
111 static int lookup_device(struct thread_data *td, char *path, unsigned int maj, argument
136 found = lookup_device(td, full_path, maj, min);
151 if (td->o.replay_redirect) {
154 td
177 trace_add_open_close_event(struct thread_data *td, int fileno, enum file_log_act action) argument
190 trace_add_file(struct thread_data *td, __u32 device) argument
233 store_ipo(struct thread_data *td, unsigned long long offset, unsigned int bytes, int rw, unsigned long long ttime, int fileno) argument
278 handle_trace_discard(struct thread_data *td, struct blk_io_trace *t, unsigned long long ttime, unsigned long *ios) argument
308 handle_trace_fs(struct thread_data *td, struct blk_io_trace *t, unsigned long long ttime, unsigned long *ios, unsigned int *bs) argument
331 handle_trace(struct thread_data *td, struct blk_io_trace *t, unsigned long long ttime, unsigned long *ios, unsigned int *bs) argument
367 load_blktrace(struct thread_data *td, const char *filename, int need_swap) argument
[all...]
H A Dfio.h352 #define __td_verror(td, err, msg, func) \
355 if ((td)->error) \
357 (td)->error = ____e; \
358 if (!(td)->first_error) \
359 snprintf(td->verror, sizeof(td->verror), "file:%s:%d, func=%s, error=%s", __FILE__, __LINE__, (func), (msg)); \
363 #define td_clear_error(td) \
364 (td)->error = 0;
365 #define td_verror(td, err, func) \
366 __td_verror((td), (er
401 fio_ro_check(struct thread_data *td, struct io_u *io_u) argument
408 should_fsync(struct thread_data *td) argument
536 fio_fill_issue_time(struct thread_data *td) argument
545 __should_check_rate(struct thread_data *td, enum fio_ddir ddir) argument
560 should_check_rate(struct thread_data *td, uint64_t *bytes_done) argument
575 td_max_bs(struct thread_data *td) argument
583 td_min_bs(struct thread_data *td) argument
600 td_io_u_lock(struct thread_data *td) argument
606 td_io_u_unlock(struct thread_data *td) argument
612 td_io_u_free_notify(struct thread_data *td) argument
[all...]
H A Dtd_error.h23 int td_non_fatal_error(struct thread_data *td, enum error_type_bit etype,
25 void update_error_count(struct thread_data *td, int err);
H A Dprofile.c89 void profile_add_hooks(struct thread_data *td) argument
101 td->prof_io_ops = *ops->io_ops;
102 td->flags |= TD_F_PROFILE_OPS;
106 int profile_td_init(struct thread_data *td) argument
108 struct prof_io_ops *ops = &td->prof_io_ops;
111 return ops->td_init(td);
116 void profile_td_exit(struct thread_data *td) argument
118 struct prof_io_ops *ops = &td->prof_io_ops;
121 ops->td_exit(td);
H A Dverify.c28 static void populate_hdr(struct thread_data *td, struct io_u *io_u,
32 static void fill_pattern(struct thread_data *td, void *p, unsigned int len, argument
62 void fill_buffer_pattern(struct thread_data *td, void *p, unsigned int len) argument
64 fill_pattern(td, p, len, td->o.buffer_pattern, td->o.buffer_pattern_bytes);
67 void fill_verify_pattern(struct thread_data *td, void *p, unsigned int len, argument
70 if (!td->o.verify_pattern_bytes) {
76 io_u->rand_seed = fill_random_buf(&td->__verify_state, p, len);
82 td
91 get_hdr_inc(struct thread_data *td, struct io_u *io_u) argument
102 fill_pattern_headers(struct thread_data *td, struct io_u *io_u, unsigned long seed, int use_seed) argument
218 struct thread_data *td; member in struct:vcont
285 struct thread_data *td = vc->td; local
348 struct thread_data *td = vc->td; local
393 struct thread_data *td = vc->td; local
659 verify_io_u_async(struct thread_data *td, struct io_u *io_u) argument
678 verify_trimmed_io_u(struct thread_data *td, struct io_u *io_u) argument
731 verify_io_u(struct thread_data *td, struct io_u *io_u) argument
869 fill_meta(struct verify_header *hdr, struct thread_data *td, struct io_u *io_u, unsigned int header_num) argument
973 populate_hdr(struct thread_data *td, struct io_u *io_u, struct verify_header *hdr, unsigned int header_num, unsigned int header_len) argument
1063 populate_verify_io_u(struct thread_data *td, struct io_u *io_u) argument
1073 get_next_verify(struct thread_data *td, struct io_u *io_u) argument
1158 fio_verify_init(struct thread_data *td) argument
1168 struct thread_data *td = data; local
1234 verify_async_init(struct thread_data *td) argument
1275 verify_async_exit(struct thread_data *td) argument
[all...]
/external/doclava/res/assets/templates/components/
H A Dsearch_box.cs9 <td class="gsc-input">
21 </td>
22 <td class="gsc-search-button">
24 </td>
25 <td class="gsc-clear-button">
27 </td>
/external/doclava/res/assets/templates/
H A Ddiff.cs134 <td class="handle handle-opened">&nbsp;</td>
137 <td class="handle">&nbsp;</td>
139 <td class="package-label"><?cs var:package.name ?></td>
141 <td>
147 </td>
154 <td class="handle handle-opened">&nbsp;</td>
[all...]
/external/chromium_org/chrome/browser/resources/user_actions/
H A Duser_actions.css13 td {
/external/fio/engines/
H A Dnull.c26 static struct io_u *fio_null_event(struct thread_data *td, int event) argument
28 struct null_data *nd = (struct null_data *) td->io_ops->data;
33 static int fio_null_getevents(struct thread_data *td, unsigned int min_events, argument
37 struct null_data *nd = (struct null_data *) td->io_ops->data;
48 static int fio_null_commit(struct thread_data *td) argument
50 struct null_data *nd = (struct null_data *) td->io_ops->data;
54 io_u_mark_submit(td, nd->queued);
63 static int fio_null_queue(struct thread_data *td, struct io_u *io_u) argument
65 struct null_data *nd = (struct null_data *) td->io_ops->data;
67 fio_ro_check(td, io_
78 fio_null_open(struct thread_data fio_unused *td, struct fio_file fio_unused *f) argument
84 fio_null_cleanup(struct thread_data *td) argument
95 fio_null_init(struct thread_data *td) argument
[all...]
H A Dsg.c64 static int fio_sgio_getevents(struct thread_data *td, unsigned int min, argument
67 struct sgio_data *sd = td->io_ops->data;
76 for_each_file(td, f, i) {
96 ret = poll(sd->pfds, td->o.nr_files, -1);
100 td_verror(td, errno, "poll");
105 if (pollin_events(sd->pfds, td->o.nr_files))
115 for_each_file(td, f, i) {
121 td_verror(td, errno, "read");
147 for_each_file(td, f, i) {
159 static int fio_sgio_ioctl_doio(struct thread_data *td, argument
194 fio_sgio_doio(struct thread_data *td, struct io_u *io_u, int do_sync) argument
204 fio_sgio_prep(struct thread_data *td, struct io_u *io_u) argument
246 fio_sgio_queue(struct thread_data *td, struct io_u *io_u) argument
273 fio_sgio_event(struct thread_data *td, int event) argument
280 fio_sgio_get_bs(struct thread_data *td, unsigned int *bs) argument
308 fio_sgio_cleanup(struct thread_data *td) argument
322 fio_sgio_init(struct thread_data *td) argument
348 fio_sgio_type_check(struct thread_data *td, struct fio_file *f) argument
384 fio_sgio_open(struct thread_data *td, struct fio_file *f) argument
423 fio_sgio_init(struct thread_data fio_unused *td) argument
[all...]
H A Dnet.c35 struct thread_data *td; member in struct:netio_options
192 static int poll_wait(struct thread_data *td, int fd, short events) argument
197 while (!td->terminate) {
205 td_verror(td, errno, "poll");
233 static int fio_netio_prep(struct thread_data *td, struct io_u *io_u) argument
235 struct netio_options *o = td->eo;
245 td_verror(td, EINVAL, "bad direction");
278 static int splice_in(struct thread_data *td, struct io_u *io_u) argument
280 struct netio_data *nd = td->io_ops->data;
288 static int splice_out(struct thread_data *td, struc argument
326 vmsplice_io_u_out(struct thread_data *td, struct io_u *io_u, unsigned int len) argument
337 vmsplice_io_u_in(struct thread_data *td, struct io_u *io_u) argument
348 fio_netio_splice_in(struct thread_data *td, struct io_u *io_u) argument
363 fio_netio_splice_out(struct thread_data *td, struct io_u *io_u) argument
374 fio_netio_splice_in(struct thread_data *td, struct io_u *io_u) argument
380 fio_netio_splice_out(struct thread_data *td, struct io_u *io_u) argument
387 fio_netio_send(struct thread_data *td, struct io_u *io_u) argument
447 fio_netio_recv(struct thread_data *td, struct io_u *io_u) argument
495 __fio_netio_queue(struct thread_data *td, struct io_u *io_u, enum fio_ddir ddir) argument
538 fio_netio_queue(struct thread_data *td, struct io_u *io_u) argument
560 fio_netio_connect(struct thread_data *td, struct fio_file *f) argument
666 fio_netio_accept(struct thread_data *td, struct fio_file *f) argument
718 fio_netio_udp_close(struct thread_data *td, struct fio_file *f) argument
743 fio_netio_close_file(struct thread_data *td, struct fio_file *f) argument
757 fio_netio_udp_recv_open(struct thread_data *td, struct fio_file *f) argument
790 fio_netio_udp_send_open(struct thread_data *td, struct fio_file *f) argument
819 fio_netio_open_file(struct thread_data *td, struct fio_file *f) argument
853 fio_fill_addr(struct thread_data *td, const char *host, int af, void *dst, struct addrinfo **res) argument
891 fio_netio_setup_connect_inet(struct thread_data *td, const char *host, unsigned short port) argument
941 fio_netio_setup_connect_unix(struct thread_data *td, const char *path) argument
953 fio_netio_setup_connect(struct thread_data *td) argument
963 fio_netio_setup_listen_unix(struct thread_data *td, const char *path) argument
996 fio_netio_setup_listen_inet(struct thread_data *td, short port) argument
1103 fio_netio_setup_listen(struct thread_data *td) argument
1128 fio_netio_init(struct thread_data *td) argument
1176 fio_netio_cleanup(struct thread_data *td) argument
1192 fio_netio_setup(struct thread_data *td) argument
1214 fio_netio_terminate(struct thread_data *td) argument
1220 fio_netio_setup_splice(struct thread_data *td) argument
[all...]
H A Dcpu.c11 struct thread_data *td; member in struct:cpu_options
55 static int fio_cpuio_queue(struct thread_data *td, struct io_u fio_unused *io_u) argument
57 struct cpu_options *co = td->eo;
60 td->done = 1;
68 static int fio_cpuio_init(struct thread_data *td) argument
70 struct thread_options *o = &td->o;
71 struct cpu_options *co = td->eo;
74 td_vmsg(td, EINVAL, "cpu thread needs rate (cpuload=)","cpuio");
90 log_info("%s: ioengine=cpu, cpuload=%u, cpucycle=%u\n", td->o.name,
96 static int fio_cpuio_open(struct thread_data fio_unused *td, argument
[all...]
H A Dmmap.c25 static int fio_mmap_file(struct thread_data *td, struct fio_file *f, argument
30 if (td_rw(td))
32 else if (td_write(td)) {
35 if (td->o.verify != VERIFY_NONE)
43 td_verror(td, errno, "mmap");
47 if (!td_random(td)) {
49 td_verror(td, errno, "madvise");
54 td_verror(td, errno, "madvise");
60 if (td->error && f->mmap_ptr)
63 return td
69 fio_mmapio_prep_limited(struct thread_data *td, struct io_u *io_u) argument
90 fio_mmapio_prep_full(struct thread_data *td, struct io_u *io_u) argument
108 fio_mmapio_prep(struct thread_data *td, struct io_u *io_u) argument
142 fio_mmapio_queue(struct thread_data *td, struct io_u *io_u) argument
182 fio_mmapio_init(struct thread_data *td) argument
[all...]
H A Dbinject.c62 static unsigned int binject_read_commands(struct thread_data *td, void *p, argument
71 for_each_file(td, f, i) {
78 td_verror(td, errno, "read");
93 static int fio_binject_getevents(struct thread_data *td, unsigned int min, argument
96 struct binject_data *bd = td->io_ops->data;
106 for_each_file(td, f, i) {
123 ret = poll(bd->pfds, td->o.nr_files, -1);
127 td_verror(td, errno, "poll");
132 if (pollin_events(bd->pfds, td->o.nr_files))
139 events = binject_read_commands(td, bu
173 fio_binject_doio(struct thread_data *td, struct io_u *io_u) argument
186 fio_binject_prep(struct thread_data *td, struct io_u *io_u) argument
216 fio_binject_queue(struct thread_data *td, struct io_u *io_u) argument
235 fio_binject_event(struct thread_data *td, int event) argument
242 binject_open_ctl(struct thread_data *td) argument
253 binject_unmap_dev(struct thread_data *td, struct binject_file *bf) argument
275 binject_map_dev(struct thread_data *td, struct binject_file *bf, int fd) argument
330 fio_binject_close_file(struct thread_data *td, struct fio_file *f) argument
344 fio_binject_open_file(struct thread_data *td, struct fio_file *f) argument
377 fio_binject_cleanup(struct thread_data *td) argument
390 fio_binject_init(struct thread_data *td) argument
435 fio_binject_init(struct thread_data fio_unused *td) argument
[all...]
H A Drbd.c25 struct thread_data *td; member in struct:rbd_options
64 static int _fio_setup_rbd_data(struct thread_data *td, argument
69 if (td->io_ops->data)
78 rbd_data->aio_events = malloc(td->o.iodepth * sizeof(struct io_u *));
82 memset(rbd_data->aio_events, 0, td->o.iodepth * sizeof(struct io_u *));
93 static int _fio_rbd_connect(struct thread_data *td) argument
95 struct rbd_data *rbd_data = td->io_ops->data;
96 struct rbd_options *o = td->eo;
196 static struct io_u *fio_rbd_event(struct thread_data *td, int event) argument
198 struct rbd_data *rbd_data = td
203 fio_rbd_getevents(struct thread_data *td, unsigned int min, unsigned int max, struct timespec *t) argument
236 fio_rbd_queue(struct thread_data *td, struct io_u *io_u) argument
303 fio_rbd_init(struct thread_data *td) argument
320 fio_rbd_cleanup(struct thread_data *td) argument
332 fio_rbd_setup(struct thread_data *td) argument
400 fio_rbd_open(struct thread_data *td, struct fio_file *f) argument
405 fio_rbd_io_u_free(struct thread_data *td, struct io_u *io_u) argument
415 fio_rbd_io_u_init(struct thread_data *td, struct io_u *io_u) argument
[all...]
H A Dlibaio.c25 struct thread_data *td; member in struct:libaio_options
44 static int fio_libaio_prep(struct thread_data fio_unused *td, struct io_u *io_u) argument
58 static struct io_u *fio_libaio_event(struct thread_data *td, int event) argument
60 struct libaio_data *ld = td->io_ops->data;
119 static int fio_libaio_getevents(struct thread_data *td, unsigned int min, argument
122 struct libaio_data *ld = td->io_ops->data;
123 struct libaio_options *o = td->eo;
124 unsigned actual_min = td->o.iodepth_batch_complete == 0 ? 0 : min;
147 static int fio_libaio_queue(struct thread_data *td, struct io_u *io_u) argument
149 struct libaio_data *ld = td
184 fio_libaio_queued(struct thread_data *td, struct io_u **io_us, unsigned int nr) argument
203 fio_libaio_commit(struct thread_data *td) argument
235 fio_libaio_cancel(struct thread_data *td, struct io_u *io_u) argument
242 fio_libaio_cleanup(struct thread_data *td) argument
255 fio_libaio_init(struct thread_data *td) argument
[all...]
/external/chromium_org/third_party/icu/source/test/perf/collationperf/
H A DCollPerf.pl186 <td>strcoll</td>
187 <td>nanosecs</td>
188 <td>Timing for string collation, an incremental compare of strings.</td>
191 <td>keygen</td>
192 <td>nanosecs</td>
[all...]
/external/icu/icu4c/source/test/perf/collationperf/
H A DCollPerf.pl186 <td>strcoll</td>
187 <td>nanosecs</td>
188 <td>Timing for string collation, an incremental compare of strings.</td>
191 <td>keygen</td>
192 <td>nanosecs</td>
[all...]
/external/llvm/
H A Dllvm-gen-intrinsics.mk1 # We treat Intrinsics.td as a very special target just like what lib/VMCore/Makefile does
2 INTRINSICTD := $(LLVM_ROOT_PATH)/include/llvm/IR/Intrinsics.td
3 INTRINSICTDS := $(wildcard $(dir $(INTRINSICTD))/Intrinsics*.td)
16 $(call transform-host-td-to-out,intrinsic)
18 $(call transform-device-td-to-out,intrinsic)
/external/chromium_org/tools/code_coverage/
H A Dcroc.css26 td {
35 td.secdesc {
45 td.section {
50 td.stat {
54 td.number {
58 td.graph {
64 td.high_pct {
68 td.mid_pct {
72 td.low_pct {
/external/chromium_org/third_party/re2/doc/
H A Dmksyntaxhtml16 ,s!(^[^ ]+) (.*)\n!<tr><td><code>\1</code></td><td>\2</td></tr>\n!g
18 ,s!^$!<tr><td></td></tr>!g
19 ,x v/<tr>/ s!.*!<tr><td colspan=2>&</td></tr>!
31 <tr><td colspan=2>This page lists the regular expression syntax accepted by RE2.</td></t
[all...]
/external/regex-re2/doc/
H A Dmksyntaxhtml16 ,s!(^[^ ]+) (.*)\n!<tr><td><code>\1</code></td><td>\2</td></tr>\n!g
18 ,s!^$!<tr><td></td></tr>!g
19 ,x v/<tr>/ s!.*!<tr><td colspan=2>&</td></tr>!
31 <tr><td colspan=2>This page lists the regular expression syntax accepted by RE2.</td></t
[all...]

Completed in 889 milliseconds

1234567891011>>