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

1 2 3

  /external/compiler-rt/test/msan/
textdomain.cc 7 const char *td = textdomain("abcd"); local
8 if (td[0] == 0) {
  /art/compiler/sea_ir/types/
type_data_test.cc 25 TypeData td; local
29 EXPECT_TRUE(NULL == td.FindTypeOf(first_instruction_id));
32 td.SetTypeOf(first_instruction_id, int_type);
33 EXPECT_TRUE(int_type == td.FindTypeOf(first_instruction_id));
34 EXPECT_TRUE(NULL == td.FindTypeOf(second_instruction_id));
35 td.SetTypeOf(second_instruction_id, byte_type);
36 EXPECT_TRUE(int_type == td.FindTypeOf(first_instruction_id));
37 EXPECT_TRUE(byte_type == td.FindTypeOf(second_instruction_id));
type_inference_visitor_test.cc 37 TypeData td; local
39 TypeInferenceVisitor tiv(NULL, &td, &type_cache);
49 TypeData td; local
51 TypeInferenceVisitor tiv(NULL, &td, &type_cache);
62 TypeData td; local
64 TypeInferenceVisitor tiv(NULL, &td, &type_cache);
76 TypeData td; local
78 TypeInferenceVisitor tiv(NULL, &td, &type_cache);
90 TypeData td; local
92 TypeInferenceVisitor tiv(NULL, &td, &type_cache)
106 TypeData td; local
    [all...]
  /bionic/tests/
ftw_test.cpp 64 TemporaryDir td; local
65 TemporaryFile tf(td.dirname);
66 ftw(td.dirname, check_ftw, 1);
70 TemporaryDir td; local
71 GenericTemporaryFile<mkstemp64> tf(td.dirname);
72 ftw64(td.dirname, check_ftw64, 1);
76 TemporaryDir td; local
77 TemporaryFile tf(td.dirname);
78 nftw(td.dirname, check_nftw, 1, 0);
82 TemporaryDir td; local
    [all...]
  /external/clang/
clang-host-build.mk 29 ## Commands for running tblgen to compile a td file
31 define transform-host-clang-td-to-out
  /external/llvm/
llvm-tblgen-rules.mk 2 ## 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-to-out, register-info
    [all...]
llvm-device-build.mk 70 ## Commands for running tblgen to compile a td file
72 define transform-device-td-to-out
llvm-host-build.mk 57 ## Commands for running tblgen to compile a td file
59 define transform-host-td-to-out
  /external/clang/test/Sema/
static-array.c 25 typedef int td[static 3]; // expected-error {{'static' used in array declarator outside of function prototype}} typedef
  /external/fio/engines/
cpu.c 11 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)
57 struct cpu_options *co = td->eo;
60 td->done = 1;
68 static int fio_cpuio_init(struct thread_data *td)
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,
    [all...]
e4defrag.c 39 struct thread_data *td; member in struct:e4defrag_options
68 static int fio_e4defrag_init(struct thread_data *td)
71 struct e4defrag_options *o = td->eo;
83 td_verror(td, ENOMEM, "io_queue_init");
88 if (td->o.directory)
89 len = sprintf(donor_name, "%s/", td->o.directory);
94 td_verror(td, errno, "io_queue_init");
101 long long len = td->o.file_size_high - td->o.start_offset;
102 r = fallocate(ed->donor_fd, 0, td->o.start_offset, len)
    [all...]
libaio.c 25 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)
58 static struct io_u *fio_libaio_event(struct thread_data *td, int event)
60 struct libaio_data *ld = td->io_ops->data;
119 static int fio_libaio_getevents(struct thread_data *td, unsigned int min,
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)
149 struct libaio_data *ld = td->io_ops->data
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_query.c 174 struct pipe_query_data_timestamp_disjoint td; local
176 td.frequency = 1000000;
177 td.disjoint = sq->end != sq->start;
178 memcpy(vresult, &td,
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_query.c 174 struct pipe_query_data_timestamp_disjoint td; local
176 td.frequency = 1000000;
177 td.disjoint = sq->end != sq->start;
178 memcpy(vresult, &td,
  /external/freetype/src/gzip/
infblock.c 157 inflate_huft *tl, *td; local
160 (const inflate_huft**)&td, z);
161 s->sub.decode.codes = inflate_codes_new(bl, bd, tl, td, z);
309 inflate_huft *tl, *td; local
316 s->sub.trees.blens, &bl, &bd, &tl, &td,
329 if ((c = inflate_codes_new(bl, bd, tl, td, z)) == Z_NULL)
  /external/javassist/src/main/javassist/bytecode/stackmap/
TypeData.java 42 static void setType(TypeData td, String className, ClassPool cp) throws BadBytecode {
43 if (td == TypeTag.TOP)
46 td.setType(className, cp);
158 private static void add(ArrayList list, TypeData td) {
161 if (list.get(i) == td)
164 list.add(td);
217 TypeData td = (TypeData)equiv.get(i); local
218 if (td instanceof TypeName) {
219 TypeName tn = (TypeName)td;
227 TypeData td = (TypeData)equiv.get(i) local
240 TypeData td = (TypeData)equiv.get(i); local
    [all...]
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...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLViewSourceDocument.cpp 205 RefPtrWillBeRawPtr<HTMLTableCellElement> td = HTMLTableCellElement::create(tdTag, *this); local
206 td->setAttribute(classAttr, "line-number");
207 td->setIntegralAttribute(valueAttr, ++m_lineNumber);
208 trow->parserAppendChild(td);
211 td = HTMLTableCellElement::create(tdTag, *this);
212 td->setAttribute(classAttr, "line-content");
213 trow->parserAppendChild(td);
214 m_current = m_td = td;
  /external/clang/test/SemaCXX/
decl-expr-ambiguity.cpp 28 typedef T td(int(p)); typedef
  /external/fio/
ioengines.c 88 static struct ioengine_ops *dlopen_ioengine(struct thread_data *td,
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)
151 ops = dlopen_ioengine(td, name);
174 void free_ioengine(struct thread_data *td)
176 dprint(FD_IO, "free ioengine %s\n", td->io_ops->name);
178 if (td->eo && td->io_ops->options) {
179 options_free(td->io_ops->options, td->eo)
577 struct thread_data td; local
    [all...]
libfio.c 79 static void reset_io_counters(struct thread_data *td)
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->rwmix_issues = 0
192 struct thread_data *td; local
224 struct thread_data *td; local
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_jpeg.h 135 char td, ta; // DC & AC huffman tables member in struct:GrFmtJpegReader::cmp_info
  /external/chromium_org/third_party/boringssl/src/crypto/dh/
dh_test.c 431 const rfc5114_td *td = rfctd + i; local
433 dhA = td->get_param(NULL);
434 dhB = td->get_param(NULL);
438 dhA->priv_key = BN_bin2bn(td->xA, td->xA_len, NULL);
439 dhA->pub_key = BN_bin2bn(td->yA, td->yA_len, NULL);
441 dhB->priv_key = BN_bin2bn(td->xB, td->xB_len, NULL);
442 dhB->pub_key = BN_bin2bn(td->yB, td->yB_len, NULL)
    [all...]
  /external/clang/test/CXX/basic/basic.types/
p10.cpp 130 TrivDtor td[3]; member in struct:ArrGood
  /external/clang/test/CodeGen/
pragma-weak.c 56 #pragma weak td // expected-warning {{weak identifier 'td' never declared}} macro
57 typedef int td; typedef

Completed in 1133 milliseconds

1 2 3