HomeSort by relevance Sort by last modified time
    Searched refs:td (Results 1 - 25 of 1258) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /compatibility/cdd/3_software/
3_7_runtime-compatibility.md 33 <td rowspan="12">Android Watch</td>
34 <td>120 dpi (ldpi)</td>
35 <td rowspan="3">32MB</td>
38 <td>160 dpi (mdpi)</td>
41 <td>213 dpi (tvdpi)</td>
    [all...]
  /external/fio/
memory.c 15 void fio_unpin_memory(struct thread_data *td)
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)
30 if (!td->o.lockmem
    [all...]
flow.h 4 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);
backend.c 139 static bool __check_min_rate(struct thread_data *td, struct timeval *now,
152 if (!td->o.ratemin[ddir] && !td->o.rate_iops_min[ddir])
158 if (mtime_since(&td->start, now) < 2000)
161 iops += td->this_io_blocks[ddir];
162 bytes += td->this_io_bytes[ddir];
163 ratemin += td->o.ratemin[ddir];
164 rate_iops += td->o.rate_iops[ddir];
165 rate_iops_min += td->o.rate_iops_min[ddir];
170 if (td->rate_bytes[ddir] || td->rate_blocks[ddir])
1445 struct thread_data *td; member in struct:fork_data
1457 struct thread_data *td = fd->td; local
1871 struct thread_data *td; local
2091 struct thread_data *td; local
2118 struct thread_data *td; local
2384 struct thread_data *td; local
    [all...]
ioengines.c 80 static struct ioengine_ops *dlopen_ioengine(struct thread_data *td,
91 td_vmsg(td, -1, dlerror(), "dlopen");
117 td_vmsg(td, -1, dlerror(), "dlsym");
122 td->io_ops_dlhandle = dlhandle;
126 struct ioengine_ops *load_ioengine(struct thread_data *td, const char *name)
144 ops = dlopen_ioengine(td, name);
163 void free_ioengine(struct thread_data *td)
165 dprint(FD_IO, "free ioengine %s\n", td->io_ops->name);
167 if (td->eo && td->io_ops->options)
562 struct thread_data td; local
    [all...]
io_u.c 38 static void mark_random_map(struct thread_data *td, struct io_u *io_u)
40 unsigned int min_bs = td->o.rw_min_bs;
55 static uint64_t last_block(struct thread_data *td, struct fio_file *f,
71 if (td->o.zone_range)
72 max_size = td->o.zone_range;
74 if (td->o.min_bs[ddir] > td->o.ba[ddir])
75 max_size -= td->o.min_bs[ddir] - td->o.ba[ddir];
77 max_blocks = max_size / (uint64_t) td->o.ba[ddir]
    [all...]
libfio.c 81 static void reset_io_counters(struct thread_data *td, int all)
87 td->stat_io_bytes[ddir] = 0;
88 td->this_io_bytes[ddir] = 0;
89 td->stat_io_blocks[ddir] = 0;
90 td->this_io_blocks[ddir] = 0;
91 td->rate_bytes[ddir] = 0;
92 td->rate_blocks[ddir] = 0;
93 td->bytes_done[ddir] = 0;
94 td->rate_io_issue_bytes[ddir] = 0;
95 td->rate_next_io_time[ddir] = 0
238 struct thread_data *td; local
274 struct thread_data *td; local
    [all...]
rate-submit.c 17 struct thread_data *td = sw->priv; local
22 io_u_set(td, io_u, IO_U_F_NO_FILE_PUT);
24 td->cur_depth++;
27 ret = td_io_queue(td, io_u);
30 ret = io_u_queued_complete(td, 1);
32 td->cur_depth -= ret;
33 io_u_clear(td, io_u, IO_U_F_FLIGHT);
38 io_queue_event(td, io_u, &ret, ddir, NULL, 0, NULL);
41 td->cur_depth--;
45 if (td->o.iodepth == 1
64 struct thread_data *td = sw->priv; local
74 struct thread_data *td = sw->priv; local
84 struct thread_data *td; local
100 struct thread_data *td = sw->priv; local
144 struct thread_data *td = sw->priv; local
    [all...]
td_error.c 16 int td_non_fatal_error(struct thread_data *td, enum error_type_bit etype,
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)
38 td->total_err_count++;
39 if (td->total_err_count == 1
    [all...]
trim.h 7 extern bool __must_check get_next_trim(struct thread_data *td, struct io_u *io_u);
8 extern bool 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)
18 td->trim_entries--;
23 static inline bool get_next_trim(struct thread_data *td, struct io_u *io_u)
27 static inline bool io_u_should_trim(struct thread_data *td, struct io_u *io_u)
31 static inline void remove_trim_entry(struct thread_data *td, struct io_piece *ipo)
filesetup.c 35 static inline void clear_error(struct thread_data *td)
37 td->error = 0;
38 td->verror[0] = '\0';
44 static int extend_file(struct thread_data *td, struct fio_file *f)
61 if (td_read(td) ||
62 (td_write(td) && td->o.overwrite && !td->o.file_append) ||
63 (td_write(td) && td_ioengine_flagged(td, FIO_NOEXTEND))
    [all...]
io_ddir.h 42 #define td_read(td) ((td)->o.td_ddir & TD_DDIR_READ)
43 #define td_write(td) ((td)->o.td_ddir & TD_DDIR_WRITE)
44 #define td_trim(td) ((td)->o.td_ddir & TD_DDIR_TRIM)
45 #define td_rw(td) (((td)->o.td_ddir & TD_DDIR_RW) == TD_DDIR_RW)
46 #define td_random(td) ((td)->o.td_ddir & TD_DDIR_RAND
    [all...]
flow.c 16 int flow_threshold_exceeded(struct thread_data *td)
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)
94 if (td->o.flow
    [all...]
cgroup.h 13 static inline int cgroup_setup(struct thread_data *td, struct flist_head *list,
16 td_verror(td, EINVAL, "cgroup_setup");
20 static inline void cgroup_shutdown(struct thread_data *td, char **mnt)
  /external/compiler-rt/test/msan/
textdomain.cc 7 const char *td = textdomain("abcd"); local
8 if (td[0] == 0) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ThreadDeathTest.java 26 ThreadDeath td = new ThreadDeath(); local
27 assertNull(td.getCause());
28 assertNull(td.getMessage());
  /compatibility/cdd/5_multimedia/
5_1_media-codecs.md 59 <td>MPEG-4 AAC Profile<br />(AAC LC)</td>
60 <td>Support for mono/stereo/5.0/5.1 content with standard
61 sampling rates from 8 to 48 kHz.</td>
62 <td>
68 </td>
71 <td>MPEG-4 HE AAC Profile (AAC+)</td>
72 <td>Support for mono/stereo/5.0/5.1 content with standard
73 sampling rates from 16 to 48 kHz.</td>
    [all...]
5_7_network-protocols.md 32 <td>MPEG-2 Transport Stream</td>
33 <td><a href="http://www.iso.org/iso/catalogue_detail?csnumber=44169">ISO 13818</a></td>
34 <td>
48 </td>
52 <td>AAC with ADTS framing and ID3 tags</td>
53 <td><a href="http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=43345">ISO 13818-7</a></td>
    [all...]
  /external/fio/engines/
gfapi.h 17 extern int fio_gf_setup(struct thread_data *td);
18 extern void fio_gf_cleanup(struct thread_data *td);
19 extern int fio_gf_get_file_size(struct thread_data *td, struct fio_file *f);
20 extern int fio_gf_open_file(struct thread_data *td, struct fio_file *f);
21 extern int fio_gf_close_file(struct thread_data *td, struct fio_file *f);
22 extern int fio_gf_unlink_file(struct thread_data *td, struct fio_file *f);
skeleton_external.c 29 static struct io_u *fio_skeleton_event(struct thread_data *td, int event)
40 static int fio_skeleton_getevents(struct thread_data *td, unsigned int min,
50 static int fio_skeleton_cancel(struct thread_data *td, struct io_u *io_u)
65 static int fio_skeleton_queue(struct thread_data *td, struct io_u *io_u)
70 fio_ro_check(td, io_u);
86 static int fio_skeleton_prep(struct thread_data *td, struct io_u *io_u)
96 static int fio_skeleton_init(struct thread_data *td)
106 static void fio_skeleton_cleanup(struct thread_data *td)
114 static int fio_skeleton_open(struct thread_data *td, struct fio_file *f)
116 return generic_open_file(td, f)
    [all...]
null.c 26 static struct io_u *fio_null_event(struct thread_data *td, int event)
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,
37 struct null_data *nd = (struct null_data *) td->io_ops_data;
48 static int fio_null_commit(struct thread_data *td)
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)
65 struct null_data *nd = (struct null_data *) td->io_ops_data;
67 fio_ro_check(td, io_u)
    [all...]
  /external/pdfium/third_party/libtiff/
tif_tile.c 40 TIFFDirectory *td = &tif->tif_dir; local
41 uint32 dx = td->td_tilewidth;
42 uint32 dy = td->td_tilelength;
43 uint32 dz = td->td_tiledepth;
46 if (td->td_imagedepth == 1)
49 dx = td->td_imagewidth;
51 dy = td->td_imagelength;
53 dz = td->td_imagedepth;
55 uint32 xpt = TIFFhowmany_32(td->td_imagewidth, dx);
56 uint32 ypt = TIFFhowmany_32(td->td_imagelength, dy)
77 TIFFDirectory *td = &tif->tif_dir; local
117 TIFFDirectory *td = &tif->tif_dir; local
147 TIFFDirectory *td = &tif->tif_dir; local
204 TIFFDirectory *td = &tif->tif_dir; local
    [all...]
tif_write.c 52 register TIFFDirectory *td; local
67 td = &tif->tif_dir;
72 if (row >= td->td_imagelength) { /* extend image */
73 if (td->td_planarconfig == PLANARCONFIG_SEPARATE) {
78 td->td_imagelength = row+1;
84 if (td->td_planarconfig == PLANARCONFIG_SEPARATE) {
85 if (sample >= td->td_samplesperpixel) {
88 (unsigned long) sample, (unsigned long) td->td_samplesperpixel);
91 strip = sample*td->td_stripsperimage + row/td->td_rowsperstrip
191 TIFFDirectory *td = &tif->tif_dir; local
309 TIFFDirectory *td = &tif->tif_dir; local
384 TIFFDirectory *td; local
529 TIFFDirectory* td = &tif->tif_dir; local
682 TIFFDirectory *td = &tif->tif_dir; local
719 TIFFDirectory *td = &tif->tif_dir; local
    [all...]
  /external/swiftshader/third_party/LLVM/test/TableGen/
dg.exp 3 RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{td}]]
  /frameworks/rs/script_api/
rs_value_types.spec 24 <tr><td> </td> <td>8 bits </td> <td>16 bits </td> <td>32 bits </td> <td>64 bits</td></tr
    [all...]

Completed in 958 milliseconds

1 2 3 4 5 6 7 8 91011>>