HomeSort by relevance Sort by last modified time
    Searched full:tuple (Results 26 - 50 of 384) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/netfilter_ipv4/
ip_conntrack_tuple.h 79 #define IP_CT_TUPLE_U_BLANK(tuple) do { (tuple)->src.u.all = 0; (tuple)->dst.u.all = 0; } while (0)
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/netfilter_ipv4/
ip_conntrack_tuple.h 79 #define IP_CT_TUPLE_U_BLANK(tuple) do { (tuple)->src.u.all = 0; (tuple)->dst.u.all = 0; } while (0)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/netfilter_ipv4/
ip_conntrack_tuple.h 79 #define IP_CT_TUPLE_U_BLANK(tuple) do { (tuple)->src.u.all = 0; (tuple)->dst.u.all = 0; } while (0)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/netfilter_ipv4/
ip_conntrack_tuple.h 79 #define IP_CT_TUPLE_U_BLANK(tuple) do { (tuple)->src.u.all = 0; (tuple)->dst.u.all = 0; } while (0)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/netfilter_ipv4/
ip_conntrack_tuple.h 79 #define IP_CT_TUPLE_U_BLANK(tuple) do { (tuple)->src.u.all = 0; (tuple)->dst.u.all = 0; } while (0)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/netfilter_ipv4/
ip_conntrack_tuple.h 79 #define IP_CT_TUPLE_U_BLANK(tuple) do { (tuple)->src.u.all = 0; (tuple)->dst.u.all = 0; } while (0)
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/linux/netfilter_ipv4/
ip_conntrack_tuple.h 79 #define IP_CT_TUPLE_U_BLANK(tuple) do { (tuple)->src.u.all = 0; (tuple)->dst.u.all = 0; } while (0)
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/linux/netfilter_ipv4/
ip_conntrack_tuple.h 79 #define IP_CT_TUPLE_U_BLANK(tuple) do { (tuple)->src.u.all = 0; (tuple)->dst.u.all = 0; } while (0)
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/linux/netfilter_ipv4/
ip_conntrack_tuple.h 79 #define IP_CT_TUPLE_U_BLANK(tuple) do { (tuple)->src.u.all = 0; (tuple)->dst.u.all = 0; } while (0)
  /external/iptables/include/net/netfilter/
nf_conntrack_tuple.h 6 * Definitions and Declarations for tuple.
20 /* A `tuple' is a structure containing the information to uniquely
21 identify a connection. ie. if two packets have the same tuple, they
30 /* The protocol-specific manipulable parts of the tuple: always in
57 /* The manipulable part of the tuple. */
71 /* These are the parts of the tuple which are fixed. */
  /external/chromium/testing/gmock/test/
gmock-generated-internal-utils_test.cc 42 using ::std::tr1::tuple;
52 CompileAssertTypesEqual<tuple<>, MatcherTuple<tuple<> >::type>();
56 CompileAssertTypesEqual<tuple<Matcher<int> >,
57 MatcherTuple<tuple<int> >::type>();
61 CompileAssertTypesEqual<tuple<Matcher<int>, Matcher<char> >,
62 MatcherTuple<tuple<int, char> >::type>();
66 CompileAssertTypesEqual<tuple<Matcher<int>, Matcher<char>, Matcher<bool>,
68 MatcherTuple<tuple<int, char, bool, double, char*>
77 CompileAssertTypesEqual<tuple<>, F::ArgumentTuple>()
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
encode.h 39 // stores both the Tuple of encode labels and weights to a unique
47 struct Tuple {
48 Tuple() {}
49 Tuple(Label ilabel_, Label olabel_, Weight weight_)
51 Tuple(const Tuple& tuple)
52 : ilabel(tuple.ilabel), olabel(tuple.olabel), weight(tuple.weight) {
137 const Tuple* tuple = encode_tuples_[i]; local
165 Tuple* tuple = new Tuple(); local
247 const typename EncodeTable<A>::Tuple* tuple = local
    [all...]
compose.h 185 // of state tuple lookup, i.e. a bijective mapping from triples of two
190 // to the value associated with x. If x is an unassigned tuple, the
195 // ComposeFstImpl. The value stored in the table is equal to tuple ID
197 // table[x] is equal to 0 if and only if x is an unassigned tuple (in
201 // ID))" if x is an unassigned tuple.
222 // NB: if 'tuple' is not in 'table_', the pair (tuple, StateId()) is
226 StateId &operator[](const StateTuple &tuple) {
227 return table_[tuple];
266 // State tuple lookup table for the composition of a string FST with
453 StateTuple &tuple = state_tuples_[s]; local
632 StateTuple &tuple = state_tuples_[s]; local
    [all...]
  /external/chromium/testing/gmock/include/gmock/internal/
gmock-generated-internal-utils.h 64 // MatcherTuple<T>::type is a tuple type where each field is a Matcher
65 // for the corresponding field in tuple type T.
66 template <typename Tuple>
70 struct MatcherTuple< ::std::tr1::tuple<> > {
71 typedef ::std::tr1::tuple< > type;
75 struct MatcherTuple< ::std::tr1::tuple<A1> > {
76 typedef ::std::tr1::tuple<Matcher<A1> > type;
80 struct MatcherTuple< ::std::tr1::tuple<A1, A2> > {
81 typedef ::std::tr1::tuple<Matcher<A1>, Matcher<A2> > type;
85 struct MatcherTuple< ::std::tr1::tuple<A1, A2, A3> >
    [all...]
gmock-generated-internal-utils.h.pump 67 // MatcherTuple<T>::type is a tuple type where each field is a Matcher
68 // for the corresponding field in tuple type T.
69 template <typename Tuple>
80 struct MatcherTuple< ::std::tr1::tuple<$As> > {
81 typedef ::std::tr1::tuple<$matcher_As > type;
91 // ArgumentTuple: the tuple type consisting of all parameters of F.
92 // ArgumentMatcherTuple: the tuple type consisting of Matchers for all
105 typedef ::std::tr1::tuple<> ArgumentTuple;
124 typedef ::std::tr1::tuple<$As> ArgumentTuple;
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
multi-level-substitution.cpp 4 template<typename...> struct tuple { }; struct
38 struct Inner<tuple<pair<Types, YTypes>...> > {
43 int check0[X<short, int, long>::Inner<tuple<pair<short, unsigned short>,
48 int check1[X<short, int>::Inner<tuple<pair<short, unsigned short>,
61 struct Inner<tuple<pair<Types, YTypes>...>,
67 int check2[X1<short, int, long>::Inner<tuple<pair<short, unsigned short>,
74 int check3[X1<short, int>::Inner<tuple<pair<short, unsigned short>,
119 struct Inner<tuple<pair<Types1, Types2>...>,
125 int check6[X3<short, int, long>::Inner<tuple<pair<short, unsigned short>,
133 int check7[X3<short, int>::Inner<tuple<pair<short, unsigned short>
    [all...]
p4.cpp 3 template<typename... Types> struct tuple;
95 typedef tuple<Types& ...> types;
98 tuple<int&, float&> *t_int_ref_float_ref;
103 typedef tuple<typename Types::type...> types;
106 tuple<int, float> *t_int_float;
112 typedef tuple<int_c<N>...> type;
116 tuple<int_c<1>, int_c<2>, int_c<3>, int_c<4>,
metafunctions.cpp 15 template<typename...> struct tuple { }; struct
65 int check0[is_same<EverythingToInt<tuple<double, float>>::type,
66 tuple<int, int>>::value? 1 : -1];
173 typedef tuple<typename Meta<T>::type...> type;
193 tuple<int&, int*, int const>>::value? 1 : -1];
202 tuple<int&, int*, int const>>::value? 1 : -1];
232 tuple<int&, int*, int const>>::value? 1 : -1];
271 int check0[is_same<replace_with_int<pair<tuple<float, double, short>,
273 pair<tuple<int, int, int>, pair<int, int>>>::value? 1 : -1];
  /external/chromium/base/
tuple_unittest.cc 5 #include "base/tuple.h"
109 // Creating the tuple should copy the class to store internally in the tuple.
110 Tuple3<CopyLogger, CopyLogger*, bool*> tuple(logger, &logger, &res);
111 tuple.b = &tuple.a;
117 DispatchToFunction(&SomeLoggerMethRef, tuple);
124 DispatchToFunction(&SomeLoggerMethCopy, tuple);
  /external/kernel-headers/original/linux/netfilter_ipv4/
ip_conntrack.h 137 /* We expect this tuple, with the following mask */
138 struct ip_conntrack_tuple tuple, mask; member in struct:ip_conntrack_expect
175 tuplehash[hash->tuple.dst.dir]);
181 /* Alter reply tuple (maybe alter helper). */
186 /* Is this tuple taken? (ignoring any belonging to the given
189 ip_conntrack_tuple_taken(const struct ip_conntrack_tuple *tuple,
192 /* Return conntrack_info and tuple hash for given skb. */
258 ip_conntrack_helper_find_get(const struct ip_conntrack_tuple *tuple);
277 __ip_conntrack_expect_find(const struct ip_conntrack_tuple *tuple);
280 ip_conntrack_expect_find(const struct ip_conntrack_tuple *tuple);
    [all...]
ip_nat.h 71 /* Is this tuple already taken? (not by us)*/
72 extern int ip_nat_used_tuple(const struct ip_conntrack_tuple *tuple,
  /external/chromium/testing/gtest/include/gtest/
gtest-printers.h 76 // // Prints the fields of a tuple tersely to a string vector, one
77 // // element for each field. Tuple support must be enabled in
80 // const Tuple& value);
484 // Overload for ::std::tr1::tuple. Needed for printing function arguments,
487 // Helper function for printing a tuple. T must be instantiated with
488 // a tuple type.
494 // regardless of whether tr1::tuple is implemented using the
497 inline void PrintTo(const ::std::tr1::tuple<>& t, ::std::ostream* os) {
502 void PrintTo(const ::std::tr1::tuple<T1>& t, ::std::ostream* os) {
507 void PrintTo(const ::std::tr1::tuple<T1, T2>& t, ::std::ostream* os)
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p14.cpp 4 template<typename ...Types> struct tuple;
26 typedef tuple<T(Types, ...)...> template_arg_expansion_1;
  /external/llvm/utils/unittest/UnitTestMain/
Makefile 21 # libstdc++'s TR1 <tuple> header depends on RTTI and uses C++'0x features not
22 # supported by Clang, so force googletest to use its own tuple implementation.
  /external/chromium/testing/gmock/include/gmock/
gmock-generated-matchers.h 49 // The type of the i-th (0-based) field of Tuple.
50 #define GMOCK_FIELD_TYPE_(Tuple, i) \
51 typename ::std::tr1::tuple_element<i, Tuple>::type
53 // TupleFields<Tuple, k0, ..., kn> is for selecting fields from a
54 // tuple of type Tuple. It has two members:
56 // type: a tuple type whose i-th field is the ki-th field of Tuple.
57 // GetSelectedFields(t): returns fields k0, ..., and kn of t as a tuple.
59 // For example, in class TupleFields<tuple<bool, char, int>, 2, 0>, we have
    [all...]

Completed in 1658 milliseconds

12 3 4 5 6 7 8 91011>>