HomeSort by: relevance | last modified time | path
    Searched defs:tuple (Results 1 - 25 of 57) sorted by relevancy

1 2 3

  /src/external/gpl3/binutils/dist/gas/
hash.c 28 const string_tuple_t *tuple = e; local
29 return htab_hash_string (tuple->key);
hash.h 55 string_tuple_t *tuple = table->alloc_f (1, sizeof (*tuple)); local
56 tuple->key = key;
57 tuple->value = value;
58 return tuple;
65 string_tuple_t *tuple = htab_find (table, &needle); local
66 return tuple != NULL ? (void *) tuple->value : NULL;
73 string_tuple_t *tuple = htab_find (table, &needle); local
74 return tuple != NULL ? tuple->value : -1
84 string_tuple_t *tuple = htab_find (table, &needle); local
    [all...]
macro.c 53 string_tuple_t *tuple = ent; local
54 free_macro ((macro_entry *) tuple->value);
  /src/external/gpl3/binutils.old/dist/gas/
hash.c 28 const string_tuple_t *tuple = e; local
29 return htab_hash_string (tuple->key);
hash.h 55 string_tuple_t *tuple = table->alloc_f (1, sizeof (*tuple)); local
56 tuple->key = key;
57 tuple->value = value;
58 return tuple;
65 string_tuple_t *tuple = htab_find (table, &needle); local
66 return tuple != NULL ? (void *) tuple->value : NULL;
73 string_tuple_t *tuple = htab_find (table, &needle); local
74 return tuple != NULL ? tuple->value : -1
84 string_tuple_t *tuple = htab_find (table, &needle); local
    [all...]
macro.c 64 string_tuple_t *tuple = ent; local
65 free_macro ((macro_entry *) tuple->value);
  /src/external/mpl/bind/dist/tests/dns/
dbdiff_test.c 79 dns_difftuple_t *tuple; local
95 for (tuple = ISC_LIST_HEAD(diff.tuples); tuple != NULL;
96 tuple = ISC_LIST_NEXT(tuple, link))
98 assert_int_equal(tuple->op, DNS_DIFFOP_ADD);
111 dns_difftuple_t *tuple; local
127 for (tuple = ISC_LIST_HEAD(diff.tuples); tuple != NULL;
128 tuple = ISC_LIST_NEXT(tuple, link)
    [all...]
skr_test.c 354 dns_difftuple_t *tuple = ISC_LIST_HEAD(bundle->diff.tuples); local
355 while (tuple != NULL) {
358 switch (tuple->rdata.type) {
362 cmp = dns_rdata_compare(&tuple->rdata,
367 cmp = dns_rdata_compare(&tuple->rdata,
370 cmp = dns_rdata_compare(&tuple->rdata,
375 cmp = dns_rdata_compare(&tuple->rdata,
384 cmp = dns_rdata_compare(&tuple->rdata, &tb->cdnskey);
387 cmp = dns_rdata_compare(&tuple->rdata, &tb->cds);
397 tuple = ISC_LIST_NEXT(tuple, link)
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/testsuite/common/
bits-tst.c 296 test_tuples *tuple = &tuples[i]; local
297 if (tuple->col >= 0)
299 long long val = (!call ? tuple->val : calc ((*tests)->macro, -1,
300 tuple->row, tuple->col));
301 long long check = tuple->check;
304 fprintf (stderr, "%s:%d:", (*tests)->file, tuple->line);
306 if (tuple->row >= 0)
307 fprintf (stderr, " (%d, %d)", tuple->row, tuple->col)
    [all...]
  /src/external/gpl3/gdb/dist/sim/testsuite/common/
bits-tst.c 297 test_tuples *tuple = &tuples[i]; local
298 if (tuple->col >= 0)
300 long long val = (!call ? tuple->val : calc ((*tests)->macro, -1,
301 tuple->row, tuple->col));
302 long long check = tuple->check;
305 fprintf (stderr, "%s:%d:", (*tests)->file, tuple->line);
307 if (tuple->row >= 0)
308 fprintf (stderr, " (%d, %d)", tuple->row, tuple->col)
    [all...]
  /src/external/mpl/bind/dist/lib/dns/
skr.c 143 skrbundle_addtuple(dns_skrbundle_t *bundle, dns_difftuple_t **tuple) {
144 REQUIRE(DNS_DIFFTUPLE_VALID(*tuple));
148 dns_diff_append(&bundle->diff, tuple);
159 dns_difftuple_t *tuple = ISC_LIST_HEAD(bundle->diff.tuples); local
160 while (tuple != NULL) {
163 if (tuple->op != DNS_DIFFOP_ADDRESIGN) {
164 tuple = ISC_LIST_NEXT(tuple, link);
167 INSIST(tuple->rdata.type == dns_rdatatype_rrsig);
169 result = dns_rdata_tostruct(&tuple->rdata, &rrsig, NULL)
347 dns_difftuple_t *tuple = NULL; local
    [all...]
  /src/external/mpl/bind/dist/tests/libtest/
dns.c 442 dns_difftuple_t *tuple = NULL; local
489 * Create a diff tuple for the parsed change and append it to
493 changes[i].ttl, &rdata, &tuple);
497 dns_diff_append(diff, &tuple);
  /src/external/gpl3/gdb.old/dist/gdb/python/
py-framefilter.c 327 one element in each item in the list, do not start a tuple. The
566 std::optional<ui_out_emit_tuple> tuple; local
589 /* With PRINT_NO_VALUES, MI does not emit a tuple normally as
591 -stack-list-variables, which always provides a tuple. */
595 tuple.emplace (out, nullptr);
665 creates the wrapping tuple, and calls enumerate_locals. Returns
690 largely just creates the wrapping tuple, and calls enumerate_args.
827 std::optional<ui_out_emit_tuple> tuple; local
832 tuple.emplace (out, "frame");
py-inferior.c 405 PyObject *tuple; local
418 tuple = PyTuple_New (inf_obj->threads->size ());
419 if (!tuple)
426 PyTuple_SET_ITEM (tuple, i, thr);
430 return tuple;
511 Returns a tuple of all inferiors. */
  /src/external/gpl3/gdb/dist/gdb/python/
py-framefilter.c 327 one element in each item in the list, do not start a tuple. The
566 std::optional<ui_out_emit_tuple> tuple; local
589 /* With PRINT_NO_VALUES, MI does not emit a tuple normally as
591 -stack-list-variables, which always provides a tuple. */
595 tuple.emplace (out, nullptr);
665 creates the wrapping tuple, and calls enumerate_locals. Returns
690 largely just creates the wrapping tuple, and calls enumerate_args.
827 std::optional<ui_out_emit_tuple> tuple; local
832 tuple.emplace (out, "frame");
py-inferior.c 405 PyObject *tuple; local
418 tuple = PyTuple_New (inf_obj->threads->size ());
419 if (!tuple)
426 PyTuple_SET_ITEM (tuple, i, thr);
430 return tuple;
511 Returns a tuple of all inferiors. */
  /src/sys/dev/pcmcia/
pcmcia_cis.c 142 struct pcmcia_tuple tuple; local
168 /* initialize state for the primary tuple chain */
170 PCMCIA_CIS_SIZE, &pcmh, &tuple.ptr, &window)) {
178 tuple.memt = pcmh.memt;
179 tuple.memh = pcmh.memh;
181 DPRINTF(("cis mem map %x\n", (unsigned int) tuple.memh));
183 tuple.mult = 2;
192 DPRINTF(("%s: CIS tuple chain:\n", device_xname(sc->dev)));
204 if (tuple.mult * tuple.ptr >= PCMCIA_CIS_SIZE -
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
InitPreprocessor.cpp 726 // Don't rely on the tuple argument, because we can be asked to target
737 VersionTuple tuple = LangOpts.ObjCRuntime.getVersion(); local
740 if (tuple.getMinor().hasValue())
741 minor = tuple.getMinor().getValue();
744 if (tuple.getSubminor().hasValue())
745 subminor = tuple.getSubminor().getValue();
748 Twine(tuple.getMajor() * 10000 + minor * 100 +
  /src/external/cddl/osnet/dist/lib/pyzfs/common/
ioctl.c 476 PyObject *tuple; local
497 tuple = Py_BuildValue("sissKsissiiO",
503 PyDict_SetItemString(d, p->pd_name, tuple);
504 Py_DECREF(tuple);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.trace/
unavailable.cc 65 struct tuple struct
71 struct tuple tarray[8];
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.trace/
unavailable.cc 65 struct tuple struct
71 struct tuple tarray[8];
  /src/sys/dev/cardbus/
cardbus.c 310 parse_tuple(u_int8_t *tuple, int len, void *data)
316 switch (tuple[0]) {
318 if (tuple[1] != 4) {
320 __func__, tuple[1]));
323 cis->manufacturer = tuple[2] | (tuple[3] << 8);
324 cis->product = tuple[4] | (tuple[5] << 8);
328 memcpy(cis->cis1_info_buf, tuple + 2, tuple[1])
608 u_int8_t *tuple = malloc(TUPLESIZE, M_DEVBUF, M_WAITOK); local
    [all...]
  /src/external/mpl/bind/dist/lib/isccfg/include/isccfg/
grammar.h 119 /*% A tuple field definition. */
180 cfg_obj_t **tuple; member in union:cfg_obj::__anon24175
  /src/external/mpl/dhcp/bind/dist/lib/isccfg/include/isccfg/
grammar.h 126 /*% A tuple field definition. */
206 cfg_obj_t **tuple; member in union:cfg_obj::__anon24410
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-param-util.h 44 #include <tuple>
752 : public ParamGeneratorInterface<::std::tuple<T...>> {
754 typedef ::std::tuple<T...> ParamType;
756 CartesianProductGenerator(const std::tuple<ParamGenerator<T>...>& g)
775 const std::tuple<ParamGenerator<T>...>& generators, bool is_end)
855 std::tuple<typename ParamGenerator<T>::iterator...> begin_;
856 std::tuple<typename ParamGenerator<T>::iterator...> end_;
857 std::tuple<typename ParamGenerator<T>::iterator...> current_;
863 std::tuple<ParamGenerator<T>...> generators_;
871 operator ParamGenerator<::std::tuple<T...>>() const
    [all...]

Completed in 37 milliseconds

1 2 3