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

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/binutils/dist/gas/
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...]
hash.c 28 const string_tuple_t *tuple = e; local
29 return htab_hash_string (tuple->key);
  /src/external/gpl3/binutils.old/dist/gas/
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...]
hash.c 28 const string_tuple_t *tuple = e; local
29 return htab_hash_string (tuple->key);
  /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...]
pcmciavar.h 246 #define pcmcia_cis_read_1(tuple, idx0) \
247 (bus_space_read_1((tuple)->memt, (tuple)->memh, (tuple)->mult*(idx0)))
249 #define pcmcia_tuple_read_1(tuple, idx1) \
250 (pcmcia_cis_read_1((tuple), ((tuple)->ptr+(2+(idx1)))))
252 #define pcmcia_tuple_read_2(tuple, idx2) \
253 (pcmcia_tuple_read_1((tuple), (idx2)) | \
254 (pcmcia_tuple_read_1((tuple), (idx2)+1)<<8)
    [all...]
xirc.c 280 xirc_manfid_ciscallback(struct pcmcia_tuple *tuple, void *arg)
284 if (tuple->code != PCMCIA_CISTPL_MANFID)
287 if (tuple->length < 5)
290 *id = (pcmcia_tuple_read_1(tuple, 3) << 8) |
291 pcmcia_tuple_read_1(tuple, 4);
661 xi_xirc_lan_nid_ciscallback(struct pcmcia_tuple *tuple, void *arg)
666 if (tuple->length < 2)
669 switch (tuple->code) {
671 switch (pcmcia_tuple_read_1(tuple, 0)) {
673 if (pcmcia_tuple_read_1(tuple, 1) != ETHER_ADDR_LEN
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
xray-color-helper.h 16 #include <tuple>
47 ArrayRef<std::tuple<uint8_t, uint8_t, uint8_t>> ColorMap;
48 ArrayRef<std::tuple<uint8_t, uint8_t, uint8_t>> BoundMap;
72 std::tuple<uint8_t, uint8_t, uint8_t> getColorTuple(double Point) const;
77 std::tuple<uint8_t, uint8_t, uint8_t> getDefaultColorTuple() const {
83 // Convert a tuple to a string
84 static std::string getColorString(std::tuple<uint8_t, uint8_t, uint8_t> t);
xray-color-helper.cpp 23 static const std::tuple<uint8_t, uint8_t, uint8_t> SequentialMaps[][9] = {
44 static const std::tuple<uint8_t, uint8_t, uint8_t> SequentialBounds[][2] = {
60 static const std::tuple<uint8_t, uint8_t, uint8_t> DivergingCoeffs[][11] = {
71 static const std::tuple<uint8_t, uint8_t, uint8_t> DivergingBounds[][2] = {
80 // Takes a tuple of uint8_ts representing a color in RGB and converts them to
81 // HSV represented by a tuple of doubles
82 static std::tuple<double, double, double>
83 convertToHSV(const std::tuple<uint8_t, uint8_t, uint8_t> &Color) {
118 // RGB represented as a tuple of uint8_ts
119 static std::tuple<uint8_t, uint8_t, uint8_t
    [all...]
  /src/external/mit/isl/dist/
isl_bind_domain_templ.c 44 /* Given a tuple of identifiers "tuple" that correspond
52 __isl_keep isl_multi_id *tuple)
57 n = isl_multi_id_size(tuple);
64 id = isl_multi_id_get_at(tuple, i);
77 /* Given a tuple of identifiers "tuple" in a space that corresponds
84 __isl_keep isl_multi_id *tuple)
90 tuple_space = isl_multi_id_peek_space(tuple);
96 return FN(TYPE,equate_initial_params)(obj, tuple);
    [all...]
isl_multi_bind_templ.c 11 * specified by "tuple", living in the same space as
17 __isl_take isl_multi_id *tuple)
28 tuple_space = isl_multi_id_peek_space(tuple);
38 isl_multi_id_free(tuple);
43 id = isl_multi_id_get_at(tuple, 0);
50 id = isl_multi_id_get_at(tuple, i);
59 isl_multi_id_free(tuple);
63 isl_multi_id_free(tuple);
isl_multi_from_tuple_templ.c 14 * from a tuple "tuple" that was read by read_tuple.
19 __isl_take isl_space *dom_space, __isl_take isl_multi_pw_aff *tuple)
26 n = isl_multi_pw_aff_dim(tuple, isl_dim_out);
30 space = isl_space_range(isl_multi_pw_aff_get_space(tuple));
40 pa = isl_multi_pw_aff_get_pw_aff(tuple, i);
44 isl_multi_pw_aff_free(tuple);
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
encoding.d 1017 import std.typecons : Tuple, tuple;
1044 private immutable Tuple!(wchar, char)[] bstMap = [
1045 tuple('\u0148','\xF2'), tuple('\u00F3','\xF3'), tuple('\u0165','\xBB'),
1046 tuple('\u00D3','\xD3'), tuple('\u010F','\xEF'), tuple('\u015B','\xB6'),
1047 tuple('\u017C','\xBF'), tuple('\u00C1','\xC1'), tuple('\u00E1','\xE1')
    [all...]
  /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...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/
setops.d 85 A forward range of $(REF Tuple, std,typecons) representing elements of the
136 import std.typecons : tuple;
142 assert(canFind(N2, tuple(0, 0)));
143 assert(canFind(N2, tuple(123, 321)));
144 assert(canFind(N2, tuple(11, 35)));
145 assert(canFind(N2, tuple(279, 172)));
152 import std.typecons : tuple;
161 assert(canFind(BC, tuple(n[0], n[1])));
170 import std.typecons : tuple;
179 assert(canFind(EvenOdd, tuple(pair[0], pair[1])))
    [all...]
  /src/external/apache2/llvm/dist/libcxx/benchmarks/
CartesianBenchmarks.h 11 #include <tuple>
51 void makeBenchmarkFromValues(const std::vector<std::tuple<Args...> >& A) {
56 void makeBenchmarkImpl(const Args& A, std::tuple<U...> t) {
62 void makeBenchmarkImpl(const Args& A, std::tuple<U...>, std::tuple<T...>,
64 (internal::makeBenchmarkImpl<B>(A, std::tuple<U..., T>(), rest...), ...);
112 std::vector<std::tuple<typename Args::value_type...> > V;
113 internal::allValueCombinations(V, std::tuple<>(), A...);
114 internal::makeBenchmarkImpl<B>(V, std::tuple<>(), Tuples()...);
120 std::vector<std::tuple<typename Args::value_type...> > V
    [all...]
  /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/bsd/wpa/dist/wpa_supplicant/examples/
dbus-listen-preq.py 21 print('%.2x:%.2x:%.2x:%.2x:%.2x:%.2x' % tuple(args['addr']),
24 print('-> %.2x:%.2x:%.2x:%.2x:%.2x:%.2x' % tuple(args['dst']),
27 print('(bssid %.2x:%.2x:%.2x:%.2x:%.2x:%.2x)' % tuple(args['dst']),
  /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)
349 dns_difftuple_t *tuple = NULL; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/root/
rootobject.d 28 tuple,
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/precompiled/
stdtr1c++.h 50 #include <tr1/tuple>
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/precompiled/
stdtr1c++.h 50 #include <tr1/tuple>
  /src/external/gpl3/gcc.old/dist/libcc1/
rpc.hh 126 unmarshall (connection *, std::tuple<T...> &)
134 unmarshall (connection *conn, std::tuple<T...> &value)
150 call (connection *conn, const std::tuple<argument_wrapper<Arg>...> &,
159 call (connection *conn, const std::tuple<argument_wrapper<Arg>...> &value,
177 std::tuple<argument_wrapper<Arg>...> wrapped;
  /src/external/gpl3/gcc/dist/libcc1/
rpc.hh 126 unmarshall (connection *, std::tuple<T...> &)
134 unmarshall (connection *conn, std::tuple<T...> &value)
150 call (connection *conn, const std::tuple<argument_wrapper<Arg>...> &,
159 call (connection *conn, const std::tuple<argument_wrapper<Arg>...> &value,
177 std::tuple<argument_wrapper<Arg>...> wrapped;
  /src/external/mpl/bind/dist/lib/ns/
update.c 414 * \li '*tuple' == NULL. Either the tuple is freed, or its
418 do_one_tuple(dns_difftuple_t **tuple, dns_db_t *db, dns_dbversion_t *ver,
427 ISC_LIST_APPEND(temp_diff.tuples, *tuple, link);
433 ISC_LIST_UNLINK(temp_diff.tuples, *tuple, link);
435 dns_difftuple_free(tuple);
442 dns_diff_appendminimal(diff, tuple);
477 dns_difftuple_t *tuple = NULL; local
479 result = dns_difftuple_create(diff->mctx, op, name, ttl, rdata, &tuple);
483 return do_one_tuple(&tuple, db, ver, diff)
1032 dns_difftuple_t *tuple = NULL; local
1431 dns_difftuple_t *tuple = NULL; local
2024 dns_difftuple_t *tuple; local
2354 dns_difftuple_t *tuple, *newtuple = NULL, *next; local
2628 dns_difftuple_t *tuple, *newtuple = NULL, *next; local
    [all...]

Completed in 48 milliseconds

1 2 3 4 5 6 7 8 91011>>