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

1 2 3 45 6 7 8 91011>>

  /external/libvpx/libvpx/vp9/encoder/
vp9_context_tree.c 89 void vp9_setup_pc_tree(VP9_COMMON *cm, ThreadData *td) {
99 vpx_free(td->leaf_tree);
100 CHECK_MEM_ERROR(cm, td->leaf_tree,
101 vpx_calloc(leaf_nodes, sizeof(*td->leaf_tree)));
102 vpx_free(td->pc_tree);
103 CHECK_MEM_ERROR(cm, td->pc_tree,
104 vpx_calloc(tree_nodes, sizeof(*td->pc_tree)));
106 this_pc = &td->pc_tree[0];
107 this_leaf = &td->leaf_tree[0];
111 for (i = 0; i < leaf_nodes; ++i) alloc_mode_context(cm, 1, &td->leaf_tree[i])
    [all...]
vp9_encodeframe.h 39 void vp9_encode_tile(struct VP9_COMP *cpi, struct ThreadData *td, int tile_row,
42 void vp9_encode_sb_row(struct VP9_COMP *cpi, struct ThreadData *td,
  /external/autotest/frontend/client/src/autotest/common/ui/
RightClickTable.java 45 final Element td = getEventTargetCell(Event.as(event.getNativeEvent())); local
46 if (td == null) {
50 RowColumn position = getCellPosition(td);
55 return td;
60 protected RowColumn getCellPosition(Element td) {
61 Element tr = DOM.getParent(td);
64 int column = DOM.getChildIndex(tr, td);
  /external/icu/icu4c/source/test/intltest/
rbbitst.h 95 void generalIteratorTest(RuleBasedBreakIterator& bi, BITestData &td);
99 void testFirstAndNext(RuleBasedBreakIterator& bi, BITestData &td);
103 void testLastAndPrevious(RuleBasedBreakIterator& bi, BITestData &td);
107 void testFollowing(RuleBasedBreakIterator& bi, BITestData &td);
111 void testPreceding(RuleBasedBreakIterator& bi, BITestData &td);
115 void testIsBoundary(RuleBasedBreakIterator& bi, BITestData &td);
120 void doMultipleSelectionTest(RuleBasedBreakIterator& iterator, BITestData &td);
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
PercentageColumn.java 64 public void footer(final HTMLElement td, final ICoverageNode total,
67 cell(td, total);
70 public void item(final HTMLElement td, final ITableItem item,
73 cell(td, item.getNode());
76 private void cell(final HTMLElement td, final ICoverageNode node)
81 td.text("n/a");
83 td.text(format(counter.getCoveredRatio()));
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_trylock/
2-1.c 117 testdata_t *td = (testdata_t *) arg; local
119 td->status = pthread_mutex_trylock(&(td->mtx));
121 if (td->status == 0) {
124 ret = pthread_mutex_unlock(&(td->mtx));
140 testdata_t *td; local
172 td = &alternativ;
220 td = (testdata_t *) mmaped;
290 ret = pthread_mutex_init(&(td->mtx), &ma);
296 td->status = 0
    [all...]
1-2.c 140 testdata_t *td = (testdata_t *) arg; local
142 td->status = pthread_mutex_trylock(&(td->mtx));
144 if (td->status == 0) {
147 ret = pthread_mutex_unlock(&(td->mtx));
163 testdata_t *td; local
203 td = &alternativ;
253 td = (testdata_t *) mmaped;
325 ret = pthread_mutex_init(&(td->mtx), &ma);
331 td->status = 0
    [all...]
4-2.c 138 testdata_t *td = (testdata_t *) arg; local
140 td->status = pthread_mutex_trylock(&(td->mtx));
142 if (td->status == 0) {
145 ret = pthread_mutex_unlock(&(td->mtx));
161 testdata_t *td; local
204 td = &alternativ;
254 td = (testdata_t *) mmaped;
326 ret = pthread_mutex_init(&(td->mtx), &ma);
332 td->status = 0
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_broadcast/
1-2.c 57 if (td->fork) { \
69 if (td->fork) { \
171 struct testdata *td; variable in typeref:struct:testdata
181 ret = pthread_mutex_lock(&td->mtx);
186 td->count++;
188 timed = td->count & 1;
192 ret = clock_gettime(td->cid, &ts);
201 ret = pthread_cond_timedwait(&td->cnd, &td->mtx, &ts);
203 ret = pthread_cond_wait(&td->cnd, &td->mtx)
    [all...]
  /external/fio/t/
memlock.c 8 } td; variable in typeref:struct:thread_data
12 struct thread_data *td = data; local
18 size = td->mib * 1024UL * 1024UL;
47 td.mib = mib;
50 pthread_create(&pthreads[i], NULL, worker, &td);
  /external/pdfium/third_party/libtiff/
tif_extension.c 39 TIFFDirectory* td = &tif->tif_dir; local
41 return td->td_customValueCount;
47 TIFFDirectory* td = &tif->tif_dir; local
49 if( tag_index < 0 || tag_index >= td->td_customValueCount )
52 return td->td_customValues[tag_index].info->field_tag;
  /system/core/adb/sysdeps/
stat_test.cpp 26 TemporaryDir td; local
30 ASSERT_EQ(0, stat(td.path, &st));
34 ASSERT_EQ(0, stat((std::string(td.path) + '/').c_str(), &st));
38 ASSERT_EQ(0, stat((std::string(td.path) + '\\').c_str(), &st));
42 std::string nonexistent_path = std::string(td.path) + "/nonexistent";
  /external/fio/engines/
libhdfs.c 123 static int fio_hdfsio_prep(struct thread_data *td, struct io_u *io_u)
125 struct hdfsio_options *options = td->eo;
126 struct hdfsio_data *hd = td->io_ops_data;
168 static int fio_hdfsio_queue(struct thread_data *td, struct io_u *io_u)
170 struct hdfsio_data *hd = td->io_ops_data;
171 struct hdfsio_options *options = td->eo;
213 td_verror(td, io_u->error, "xfer");
218 int fio_hdfsio_open_file(struct thread_data *td, struct fio_file *f)
220 if (td->o.odirect) {
221 td->error = EINVAL
    [all...]
windowsaio.c 39 static int fio_windowsaio_getevents(struct thread_data *td, unsigned int min,
41 static struct io_u *fio_windowsaio_event(struct thread_data *td, int event);
42 static int fio_windowsaio_queue(struct thread_data *td,
44 static void fio_windowsaio_cleanup(struct thread_data *td);
46 static int fio_windowsaio_init(struct thread_data *td);
47 static int fio_windowsaio_open_file(struct thread_data *td, struct fio_file *f);
48 static int fio_windowsaio_close_file(struct thread_data fio_unused *td, struct fio_file *f);
50 static int fio_windowsaio_init(struct thread_data *td)
62 wd->aio_events = malloc(td->o.iodepth * sizeof(struct io_u*));
87 td->io_ops_data = wd
    [all...]
posixaio.c 63 static int fio_posixaio_cancel(struct thread_data fio_unused *td,
75 static int fio_posixaio_prep(struct thread_data fio_unused *td,
93 static int fio_posixaio_getevents(struct thread_data *td, unsigned int min,
96 struct posixaio_data *pd = td->io_ops_data;
114 io_u_qiter(&td->io_u_all, io_u, i) {
162 static struct io_u *fio_posixaio_event(struct thread_data *td, int event)
164 struct posixaio_data *pd = td->io_ops_data;
169 static int fio_posixaio_queue(struct thread_data *td,
172 struct posixaio_data *pd = td->io_ops_data;
176 fio_ro_check(td, io_u)
    [all...]
  /external/javassist/src/main/javassist/bytecode/stackmap/
MapMaker.java 231 private void merge(TypeData td, TypeData target) {
234 // td or target is null if it is TOP.
235 if (td != TOP && td.isObjectType())
242 target.merge(td);
298 TypeData td = types[i]; local
299 if (td != null)
300 td.evalExpectedType(cp);
371 TypeData td = bb.stackTypes[0]; local
372 if (td == TOP
380 TypeData td = bb.stackTypes[0]; local
402 TypeData td = types[offset + i]; local
441 TypeData td = oldTd[i]; local
457 TypeData td = types[offset++]; local
507 TypeData td = types[i]; local
516 TypeData td = types[i]; local
    [all...]
  /bootable/recovery/tests/unit/
dirutil_test.cpp 37 TemporaryDir td; local
38 ASSERT_EQ(0, mkdir_recursively(td.path, 0755, false, nullptr));
50 TemporaryDir td; local
51 std::string prefix(td.path);
69 TemporaryDir td; local
70 std::string prefix(td.path);
87 TemporaryDir td; local
88 std::string prefix(td.path);
  /cts/tests/app/src/android/app/cts/
TaskDescriptionTest.java 83 final TaskDescription td = info.taskDescription; local
84 assertNotNull(td);
86 assertNotNull(td.getIcon());
87 assertNotNull(td.getIconFilename());
89 assertNull(td.getIconFilename());
90 assertNull(td.getIcon());
92 assertEquals(resId, td.getIconResource());
93 assertEquals(label, td.getLabel());
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/static/css/
main.css 52 th,td {
57 td.center {
61 .deleted td {
70 .data td {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_signal/
4-1.c 27 } td; variable in typeref:struct:testdata
51 if (pthread_mutex_lock(&td.mutex) != 0) {
61 rc = pthread_cond_wait(&td.cond, &td.mutex);
69 if (pthread_mutex_unlock(&td.mutex) != 0) {
82 if (pthread_mutex_init(&td.mutex, NULL) != 0) {
86 if (pthread_cond_init(&td.cond, NULL) != 0) {
109 rc = pthread_cond_signal(&td.cond);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/
3-2.c 322 testdata_t *td = (testdata_t *) arg; local
328 pthread_getschedparam(pthread_self(), &(td->policy), &(td->param));
334 ret = pthread_barrier_wait(&(td->bar));
340 ret = pthread_barrier_wait(&(td->bar));
347 pthread_getschedparam(pthread_self(), &(td->policy), &(td->param));
353 ret = pthread_barrier_wait(&(td->bar));
359 ret = pthread_barrier_wait(&(td->bar));
365 if (td->policy == SCHED_RR
535 testdata_t td; local
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Target/
Mangler.h 39 const TargetData &TD;
52 Mangler(MCContext &context, const TargetData &td)
53 : Context(context), TD(td), NextAnonGlobalID(1) {}
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_timedwait/
4-2.c 177 testdata_t *td = (testdata_t *) arg; local
180 ret = pthread_mutex_lock(&(td->mtx));
182 td->status = ret;
187 if (td->ctrl == 0)
188 td->gotit += 1;
191 ret = pthread_mutex_unlock(&(td->mtx));
193 td->status = ret;
209 testdata_t *td; local
255 td = &alternativ;
303 td = (testdata_t *) mmaped
    [all...]
  /external/autotest/frontend/client/src/autotest/common/table/
FragmentedTable.java 30 * Native method to efficiently get a td element from a tbody. Copied from GWT's
84 protected RowColumn getCellPosition(Element td) {
85 Element tr = DOM.getParent(td);
90 int column = DOM.getChildIndex(tr, td);
99 Element td = DOM.eventGetTarget(event); local
100 for (; td != null; td = DOM.getParent(td)) {
101 // If it's a TD, it might be the one we're looking for.
102 if (DOM.getElementProperty(td, "tagName").equalsIgnoreCase("td"))
    [all...]
  /external/doclava/res/assets/templates/
diff.cs 134 <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...]

Completed in 1170 milliseconds

1 2 3 45 6 7 8 91011>>