Searched refs:td (Results 1 - 25 of 304) sorted by relevance

1234567891011>>

/external/fio/
H A Dmemory.c15 void fio_unpin_memory(struct thread_data *td) argument
17 if (td->pinned_mem) {
18 dprint(FD_MEM, "unpinning %llu bytes\n", td->o.lockmem);
19 if (munlock(td->pinned_mem, td->o.lockmem) < 0)
21 munmap(td->pinned_mem, td->o.lockmem);
22 td->pinned_mem = NULL;
26 int fio_pin_memory(struct thread_data *td) argument
30 if (!td
64 alloc_mem_shm(struct thread_data *td, unsigned int total_mem) argument
109 free_mem_shm(struct thread_data *td) argument
118 alloc_mem_mmap(struct thread_data *td, size_t total_mem) argument
173 free_mem_mmap(struct thread_data *td, size_t total_mem) argument
185 alloc_mem_malloc(struct thread_data *td, size_t total_mem) argument
194 free_mem_malloc(struct thread_data *td) argument
203 allocate_io_mem(struct thread_data *td) argument
239 free_io_mem(struct thread_data *td) argument
[all...]
H A Dflow.h4 int flow_threshold_exceeded(struct thread_data *td);
5 void flow_init_job(struct thread_data *td);
6 void flow_exit_job(struct thread_data *td);
H A Dioengines.c88 static struct ioengine_ops *dlopen_ioengine(struct thread_data *td, argument
99 td_vmsg(td, -1, dlerror(), "dlopen");
125 td_vmsg(td, -1, dlerror(), "dlsym");
134 struct ioengine_ops *load_ioengine(struct thread_data *td, const char *name) argument
151 ops = dlopen_ioengine(td, name);
174 void free_ioengine(struct thread_data *td) argument
176 dprint(FD_IO, "free ioengine %s\n", td->io_ops->name);
178 if (td->eo && td->io_ops->options) {
179 options_free(td
191 close_ioengine(struct thread_data *td) argument
203 td_io_prep(struct thread_data *td, struct io_u *io_u) argument
222 td_io_getevents(struct thread_data *td, unsigned int min, unsigned int max, struct timespec *t) argument
265 td_io_queue(struct thread_data *td, struct io_u *io_u) argument
364 td_io_init(struct thread_data *td) argument
384 td_io_commit(struct thread_data *td) argument
410 td_io_open_file(struct thread_data *td, struct fio_file *f) argument
491 td_io_close_file(struct thread_data *td, struct fio_file *f) argument
509 td_io_get_file_size(struct thread_data *td, struct fio_file *f) argument
517 do_sync_file_range(struct thread_data *td, struct fio_file *f) argument
530 do_io_u_sync(struct thread_data *td, struct io_u *io_u) argument
556 do_io_u_trim(struct thread_data *td, struct io_u *io_u) argument
577 struct thread_data td; local
[all...]
H A Dbackend.c140 static int __check_min_rate(struct thread_data *td, struct timeval *now, argument
153 if (!td->o.ratemin[ddir] && !td->o.rate_iops_min[ddir])
159 if (mtime_since(&td->start, now) < 2000)
162 iops += td->this_io_blocks[ddir];
163 bytes += td->this_io_bytes[ddir];
164 ratemin += td->o.ratemin[ddir];
165 rate_iops += td->o.rate_iops[ddir];
166 rate_iops_min += td->o.rate_iops_min[ddir];
171 if (td
228 check_min_rate(struct thread_data *td, struct timeval *now, uint64_t *bytes_done) argument
247 cleanup_pending_aio(struct thread_data *td) argument
282 fio_io_sync(struct thread_data *td, struct fio_file *f) argument
324 fio_file_fsync(struct thread_data *td, struct fio_file *f) argument
339 __update_tv_cache(struct thread_data *td) argument
344 update_tv_cache(struct thread_data *td) argument
350 runtime_exceeded(struct thread_data *td, struct timeval *t) argument
362 break_on_this_error(struct thread_data *td, enum fio_ddir ddir, int *retptr) argument
408 check_update_rusage(struct thread_data *td) argument
421 do_verify(struct thread_data *td, uint64_t verify_bytes) argument
633 exceeds_number_ios(struct thread_data *td) argument
646 io_bytes_exceeded(struct thread_data *td) argument
673 do_io(struct thread_data *td) argument
959 cleanup_io_u(struct thread_data *td) argument
978 init_io_u(struct thread_data *td) argument
1095 switch_ioscheduler(struct thread_data *td) argument
1153 keep_running(struct thread_data *td) argument
1213 do_dry_run(struct thread_data *td) argument
1261 struct thread_data *td = data; local
1580 struct thread_data *td; local
1610 struct thread_data *td; local
1715 struct thread_data *td; local
2015 struct thread_data *td; local
[all...]
H A Dio_u.c36 static void mark_random_map(struct thread_data *td, struct io_u *io_u) argument
38 unsigned int min_bs = td->o.rw_min_bs;
53 static uint64_t last_block(struct thread_data *td, struct fio_file *f, argument
68 if (td->o.zone_range)
69 max_size = td->o.zone_range;
71 max_blocks = max_size / (uint64_t) td->o.ba[ddir];
83 static int __get_next_rand_offset(struct thread_data *td, struct fio_file *f, argument
88 lastb = last_block(td, f, ddir);
92 if (td->o.random_generator == FIO_RAND_GEN_TAUSWORTHE) {
95 rmax = td
139 __get_next_rand_offset_zipf(struct thread_data *td, struct fio_file *f, enum fio_ddir ddir, uint64_t *b) argument
147 __get_next_rand_offset_pareto(struct thread_data *td, struct fio_file *f, enum fio_ddir ddir, uint64_t *b) argument
163 get_off_from_method(struct thread_data *td, struct fio_file *f, enum fio_ddir ddir, uint64_t *b) argument
181 should_sort_io(struct thread_data *td) argument
195 should_do_random(struct thread_data *td, enum fio_ddir ddir) argument
214 get_next_rand_offset(struct thread_data *td, struct fio_file *f, enum fio_ddir ddir, uint64_t *b) argument
253 get_next_rand_block(struct thread_data *td, struct fio_file *f, enum fio_ddir ddir, uint64_t *b) argument
271 get_next_seq_offset(struct thread_data *td, struct fio_file *f, enum fio_ddir ddir, uint64_t *offset) argument
296 get_next_block(struct thread_data *td, struct io_u *io_u, enum fio_ddir ddir, int rw_seq, unsigned int *is_random) argument
365 __get_next_offset(struct thread_data *td, struct io_u *io_u, unsigned int *is_random) argument
400 get_next_offset(struct thread_data *td, struct io_u *io_u, unsigned int *is_random) argument
413 io_u_fits(struct thread_data *td, struct io_u *io_u, unsigned int buflen) argument
421 __get_next_buflen(struct thread_data *td, struct io_u *io_u, unsigned int is_random) argument
489 get_next_buflen(struct thread_data *td, struct io_u *io_u, unsigned int is_random) argument
502 set_rwmix_bytes(struct thread_data *td) argument
515 get_rand_ddir(struct thread_data *td) argument
534 io_u_quiesce(struct thread_data *td) argument
552 rate_ddir(struct thread_data *td, enum fio_ddir ddir) argument
611 get_rw_ddir(struct thread_data *td) argument
668 set_rw_ddir(struct thread_data *td, struct io_u *io_u) argument
679 put_file_log(struct thread_data *td, struct fio_file *f) argument
687 put_io_u(struct thread_data *td, struct io_u *io_u) argument
704 clear_io_u(struct thread_data *td, struct io_u *io_u) argument
710 requeue_io_u(struct thread_data *td, struct io_u **io_u) argument
732 fill_io_u(struct thread_data *td, struct io_u *io_u) argument
821 io_u_mark_submit(struct thread_data *td, unsigned int nr) argument
827 io_u_mark_complete(struct thread_data *td, unsigned int nr) argument
833 io_u_mark_depth(struct thread_data *td, unsigned int nr) argument
862 io_u_mark_lat_usec(struct thread_data *td, unsigned long usec) argument
903 io_u_mark_lat_msec(struct thread_data *td, unsigned long msec) argument
948 io_u_mark_latency(struct thread_data *td, unsigned long usec) argument
959 get_next_file_rand(struct thread_data *td, enum fio_file_flags goodf, enum fio_file_flags badf) argument
1008 get_next_file_rr(struct thread_data *td, int goodf, int badf) argument
1060 __get_next_file(struct thread_data *td) argument
1101 get_next_file(struct thread_data *td) argument
1113 set_io_u_file(struct thread_data *td, struct io_u *io_u) argument
1140 lat_fatal(struct thread_data *td, struct io_completion_data *icd, unsigned long tusec, unsigned long max_usec) argument
1149 lat_new_cycle(struct thread_data *td) argument
1160 __lat_target_failed(struct thread_data *td) argument
1183 lat_target_failed(struct thread_data *td) argument
1192 lat_target_init(struct thread_data *td) argument
1207 lat_target_reset(struct thread_data *td) argument
1213 lat_target_success(struct thread_data *td) argument
1258 lat_target_check(struct thread_data *td) argument
1284 queue_full(struct thread_data *td) argument
1296 __get_io_u(struct thread_data *td) argument
1338 check_get_trim(struct thread_data *td, struct io_u *io_u) argument
1364 check_get_verify(struct thread_data *td, struct io_u *io_u) argument
1434 get_io_u(struct thread_data *td) argument
1528 io_u_log_error(struct thread_data *td, struct io_u *io_u) argument
1551 gtod_reduce(struct thread_data *td) argument
1557 account_io_completion(struct thread_data *td, struct io_u *io_u, struct io_completion_data *icd, const enum fio_ddir idx, unsigned int bytes) argument
1599 usec_for_io(struct thread_data *td, enum fio_ddir ddir) argument
1610 io_completed(struct thread_data *td, struct io_u *io_u, struct io_completion_data *icd) argument
1717 init_icd(struct thread_data *td, struct io_completion_data *icd, int nr) argument
1732 ios_completed(struct thread_data *td, struct io_completion_data *icd) argument
1751 io_u_sync_complete(struct thread_data *td, struct io_u *io_u, uint64_t *bytes) argument
1780 io_u_queued_complete(struct thread_data *td, int min_evts, uint64_t *bytes) argument
1820 io_u_queued(struct thread_data *td, struct io_u *io_u) argument
1830 fill_io_buffer(struct thread_data *td, void *buf, unsigned int min_write, unsigned int max_bs) argument
1856 io_u_fill_buffer(struct thread_data *td, struct io_u *io_u, unsigned int min_write, unsigned int max_bs) argument
[all...]
H A Dtd_error.c16 int td_non_fatal_error(struct thread_data *td, enum error_type_bit etype, argument
21 if (!td->o.ignore_error[etype]) {
22 td->o.ignore_error[etype] = __NON_FATAL_ERR;
23 td->o.ignore_error_nr[etype] = sizeof(__NON_FATAL_ERR)
27 if (!(td->o.continue_on_error & (1 << etype)))
29 for (i = 0; i < td->o.ignore_error_nr[etype]; i++)
30 if (td->o.ignore_error[etype][i] == err)
36 void update_error_count(struct thread_data *td, int err) argument
38 td->total_err_count++;
39 if (td
[all...]
H A Dtrim.h7 extern int __must_check get_next_trim(struct thread_data *td, struct io_u *io_u);
8 extern int io_u_should_trim(struct thread_data *td, struct io_u *io_u);
14 static inline void remove_trim_entry(struct thread_data *td, struct io_piece *ipo) argument
18 td->trim_entries--;
23 static inline int get_next_trim(struct thread_data *td, struct io_u *io_u) argument
27 static inline int io_u_should_trim(struct thread_data *td, struct io_u *io_u) argument
31 static inline void remove_trim_entry(struct thread_data *td, struct io_piece *ipo) argument
H A Dlibfio.c79 static void reset_io_counters(struct thread_data *td) argument
84 td->stat_io_bytes[ddir] = 0;
85 td->this_io_bytes[ddir] = 0;
86 td->stat_io_blocks[ddir] = 0;
87 td->this_io_blocks[ddir] = 0;
88 td->rate_bytes[ddir] = 0;
89 td->rate_blocks[ddir] = 0;
91 td->zone_bytes = 0;
93 td->last_was_sync = 0;
94 td
103 clear_io_state(struct thread_data *td) argument
120 reset_all_stats(struct thread_data *td) argument
167 td_set_runstate(struct thread_data *td, int runstate) argument
177 td_bump_runstate(struct thread_data *td, int new_state) argument
185 td_restore_runstate(struct thread_data *td, int old_state) argument
192 struct thread_data *td; local
224 struct thread_data *td; local
[all...]
H A Diolog.c17 void queue_io_piece(struct thread_data *td, struct io_piece *ipo) argument
19 flist_add_tail(&ipo->list, &td->io_log_list);
20 td->total_io_size += ipo->len;
23 void log_io_u(struct thread_data *td, struct io_u *io_u) argument
30 if (!td->o.write_iolog_file)
33 fprintf(td->iolog_f, "%s %s %llu %lu\n", io_u->file->file_name,
38 void log_file(struct thread_data *td, struct fio_file *f, argument
45 if (!td->o.write_iolog_file)
52 if (!td->iolog_f)
55 fprintf(td
58 iolog_delay(struct thread_data *td, unsigned long delay) argument
84 ipo_special(struct thread_data *td, struct io_piece *ipo) argument
118 read_iolog_get(struct thread_data *td, struct io_u *io_u) argument
165 prune_io_piece_log(struct thread_data *td) argument
190 log_io_piece(struct thread_data *td, struct io_u *io_u) argument
271 unlog_io_piece(struct thread_data *td, struct io_u *io_u) argument
288 trim_io_piece(struct thread_data *td, struct io_u *io_u) argument
298 write_iolog_close(struct thread_data *td) argument
311 read_iolog2(struct thread_data *td, FILE *f) argument
443 init_iolog_read(struct thread_data *td) argument
481 init_iolog_write(struct thread_data *td) argument
517 init_iolog(struct thread_data *td) argument
607 finish_log_named(struct thread_data *td, struct io_log *log, const char *prefix, const char *postfix, int trylock) argument
632 finish_log(struct thread_data *td, struct io_log *log, const char *name, int trylock) argument
638 write_this_log(struct thread_data *td, struct io_log *log, const char *log_file, const char *name, int try) argument
654 write_iops_log(struct thread_data *td, int try) argument
661 write_slat_log(struct thread_data *td, int try) argument
668 write_clat_log(struct thread_data *td, int try) argument
675 write_lat_log(struct thread_data *td, int try) argument
682 write_bandw_log(struct thread_data *td, int try) argument
727 fio_writeout_logs(struct thread_data *td) argument
[all...]
H A Dfilesetup.c27 static inline void clear_error(struct thread_data *td) argument
29 td->error = 0;
30 td->verror[0] = '\0';
36 static int extend_file(struct thread_data *td, struct fio_file *f) argument
53 if (td_read(td) ||
54 (td_write(td) && td->o.overwrite && !td->o.file_append) ||
55 (td_write(td) && td
201 pre_read_file(struct thread_data *td, struct fio_file *f) argument
259 get_rand_file_size(struct thread_data *td) argument
279 file_size(struct thread_data *td, struct fio_file *f) argument
292 bdev_size(struct thread_data *td, struct fio_file *f) argument
322 char_size(struct thread_data *td, struct fio_file *f) argument
357 get_file_size(struct thread_data *td, struct fio_file *f) argument
387 __file_invalidate_cache(struct thread_data *td, struct fio_file *f, unsigned long long off, unsigned long long len) argument
440 file_invalidate_cache(struct thread_data *td, struct fio_file *f) argument
448 generic_close_file(struct thread_data fio_unused *td, struct fio_file *f) argument
496 file_close_shadow_fds(struct thread_data *td) argument
514 generic_open_file(struct thread_data *td, struct fio_file *f) argument
636 generic_get_file_size(struct thread_data *td, struct fio_file *f) argument
644 get_file_sizes(struct thread_data *td) argument
679 get_fs_free_counts(struct thread_data *td) argument
745 get_start_offset(struct thread_data *td, struct fio_file *f) argument
759 setup_files(struct thread_data *td) argument
975 pre_read_files(struct thread_data *td) argument
989 __init_rand_distribution(struct thread_data *td, struct fio_file *f) argument
1012 init_rand_distribution(struct thread_data *td) argument
1031 init_random_map(struct thread_data *td) argument
1076 close_files(struct thread_data *td) argument
1087 close_and_free_files(struct thread_data *td) argument
1214 alloc_new_file(struct thread_data *td) argument
1231 add_file(struct thread_data *td, const char *fname, int numjob, int inc) argument
1317 add_file_exclusive(struct thread_data *td, const char *fname) argument
1337 put_file(struct thread_data *td, struct fio_file *f) argument
1370 lock_file(struct thread_data *td, struct fio_file *f, enum fio_ddir ddir) argument
1386 unlock_file(struct thread_data *td, struct fio_file *f) argument
1399 unlock_file_all(struct thread_data *td, struct fio_file *f) argument
1407 recurse_dir(struct thread_data *td, const char *dirname) argument
1455 add_dir_files(struct thread_data *td, const char *path) argument
1465 dup_files(struct thread_data *td, struct thread_data *org) argument
1507 get_fileno(struct thread_data *td, const char *fname) argument
1522 free_release_files(struct thread_data *td) argument
1529 fio_file_reset(struct thread_data *td, struct fio_file *f) argument
1539 fio_files_done(struct thread_data *td) argument
[all...]
H A Dflow.c16 int flow_threshold_exceeded(struct thread_data *td) argument
18 struct fio_flow *flow = td->flow;
24 sign = td->o.flow > 0 ? 1 : -1;
25 if (sign * flow->flow_counter > td->o.flow_watermark) {
26 if (td->o.flow_sleep) {
27 io_u_quiesce(td);
28 usleep(td->o.flow_sleep);
36 flow->flow_counter += td->o.flow;
92 void flow_init_job(struct thread_data *td) argument
94 if (td
98 flow_exit_job(struct thread_data *td) argument
[all...]
H A Dcgroup.h13 static inline int cgroup_setup(struct thread_data *td, struct flist_head *list, argument
16 td_verror(td, EINVAL, "cgroup_setup");
20 static inline void cgroup_shutdown(struct thread_data *td, char **mnt) argument
H A Dio_ddir.h28 #define td_read(td) ((td)->o.td_ddir & TD_DDIR_READ)
29 #define td_write(td) ((td)->o.td_ddir & TD_DDIR_WRITE)
30 #define td_trim(td) ((td)->o.td_ddir & TD_DDIR_TRIM)
31 #define td_rw(td) (((td)->o.td_ddir & TD_DDIR_RW) == TD_DDIR_RW)
32 #define td_random(td) ((td)
[all...]
H A Dtrim.c14 int get_next_trim(struct thread_data *td, struct io_u *io_u) argument
23 if (flist_empty(&td->trim_list))
26 assert(td->trim_entries);
27 ipo = flist_entry(td->trim_list.next, struct io_piece, trim_list);
28 remove_trim_entry(td, ipo);
38 if (!td->o.trim_zero) {
43 rb_erase(&ipo->rb_node, &td->io_hist_tree);
45 td->io_hist_len--;
51 int r = td_io_open_file(td, io_u->file);
70 int io_u_should_trim(struct thread_data *td, struc argument
[all...]
H A Dcgroup.c22 static char *find_cgroup_mnt(struct thread_data *td) argument
31 td_verror(td, errno, "setmntent /proc/mounts");
50 static void add_cgroup(struct thread_data *td, const char *name, argument
71 if (td->o.cgroup_nodelete)
100 static char *get_cgroup_root(struct thread_data *td, char *mnt) argument
104 if (td->o.cgroup)
105 sprintf(str, "%s%s%s", mnt, FIO_OS_PATH_SEPARATOR, td->o.cgroup);
107 sprintf(str, "%s%s%s", mnt, FIO_OS_PATH_SEPARATOR, td->o.name);
112 static int write_int_to_file(struct thread_data *td, const char *path, argument
122 td_verror(td, errn
132 cgroup_write_pid(struct thread_data *td, const char *root) argument
142 cgroup_del_pid(struct thread_data *td, char *mnt) argument
147 cgroup_setup(struct thread_data *td, struct flist_head *clist, char **mnt) argument
189 cgroup_shutdown(struct thread_data *td, char **mnt) argument
[all...]
/external/compiler-rt/test/msan/
H A Dtextdomain.cc7 const char *td = textdomain("abcd"); local
8 if (td[0] == 0) {
/external/chromium_org/chrome/browser/resources/user_actions/
H A Duser_actions.js26 var td = document.createElement('td');
27 td.textContent = userAction;
28 tr.appendChild(td);
29 td = document.createElement('td');
30 td.textContent = Date.now() / 1000; // in seconds since epoch
31 tr.appendChild(td);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DMakefile21 HAVE_LLVM_INTRINSICS = $(shell grep IntrinsicsR600.td $(LLVM_INCLUDEDIR)/llvm/Intrinsics.td)
23 SIRegisterInfo.td: SIGenRegisterInfo.pl
29 R600Intrinsics.td: R600IntrinsicsNoOpenCL.td R600IntrinsicsOpenCL.td
31 cp R600IntrinsicsNoOpenCL.td R600Intrinsics.td
33 cp R600IntrinsicsOpenCL.td R600Intrinsics.td
[all...]
/external/mesa3d/src/gallium/drivers/radeon/
H A DMakefile21 HAVE_LLVM_INTRINSICS = $(shell grep IntrinsicsR600.td $(LLVM_INCLUDEDIR)/llvm/Intrinsics.td)
23 SIRegisterInfo.td: SIGenRegisterInfo.pl
29 R600Intrinsics.td: R600IntrinsicsNoOpenCL.td R600IntrinsicsOpenCL.td
31 cp R600IntrinsicsNoOpenCL.td R600Intrinsics.td
33 cp R600IntrinsicsOpenCL.td R600Intrinsics.td
[all...]
/external/clang/include/clang/Driver/
H A DMakefile8 $(ObjDir)/Options.inc.tmp : Options.td CC1Options.td CLCompatOptions.td $(LLVM_TBLGEN) $(ObjDir)/.dir
/external/fio/engines/
H A Dskeleton_external.c29 static struct io_u *fio_skeleton_event(struct thread_data *td, int event) argument
40 static int fio_skeleton_getevents(struct thread_data *td, unsigned int min, argument
50 static int fio_skeleton_cancel(struct thread_data *td, struct io_u *io_u) argument
65 static int fio_skeleton_queue(struct thread_data *td, struct io_u *io_u) argument
70 fio_ro_check(td, io_u);
86 static int fio_skeleton_prep(struct thread_data *td, struct io_u *io_u) argument
96 static int fio_skeleton_init(struct thread_data *td) argument
106 static void fio_skeleton_cleanup(struct thread_data *td) argument
114 static int fio_skeleton_open(struct thread_data *td, struct fio_file *f) argument
116 return generic_file_open(td,
122 fio_skeleton_close(struct thread_data *td, struct fio_file *f) argument
[all...]
/external/doclava/res/assets/templates/
H A Dtodo.cs21 table td { property
35 <tr><th>Errors</th><td><?cs var:all.errorCount ?></td></tr>
36 <tr><th>Percent Good</th><td><?cs var:all.percentGood ?></td></tr>
37 <tr><th>Total Comments</th><td><?cs var:all.totalCount ?></td></tr>
51 <td><?cs var:pkg.name ?></td>
52 <td><
[all...]
/external/chromium_org/third_party/re2/doc/
H A Dmksyntaxwiki15 ,s!(^[^ ]+) (.*)\n!<tr><td>\1</td><td>\2</td></tr>\n!g
17 ,s!^$!<tr><td></td></tr>!g
18 ,x v/<tr>/ s!.*!<tr><td colspan="2">&</td></tr>!
27 <tr><td colspan="2">This page lists the regular expression syntax accepted by RE2.</td></t
[all...]
/external/regex-re2/doc/
H A Dmksyntaxwiki15 ,s!(^[^ ]+) (.*)\n!<tr><td>\1</td><td>\2</td></tr>\n!g
17 ,s!^$!<tr><td></td></tr>!g
18 ,x v/<tr>/ s!.*!<tr><td colspan="2">&</td></tr>!
27 <tr><td colspan="2">This page lists the regular expression syntax accepted by RE2.</td></t
[all...]
/external/llvm/
H A Dllvm-tblgen-rules.mk2 ## Commands for running tblgen to compile a td file
4 define transform-td-to-out
6 $(call transform-host-td-to-out,$(1)), \
7 $(call transform-device-td-to-out,$(1)))
11 ## TableGen: Compile .td files to .inc.
32 tblgen_td_deps := $(tblgen_source_dir)/../*.td
34 tblgen_td_deps := $(tblgen_source_dir)/*.td
39 # The directory and the .td directory is not the same.
43 $(generated_sources)/%GenRegisterInfo.inc: $(tblgen_source_dir)/../%.td \
45 $(call transform-td
[all...]

Completed in 530 milliseconds

1234567891011>>