Searched refs:__t (Results 1 - 25 of 84) sorted by relevance

1234

/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp0x/lambda/
H A Dlambda-names1.C8 return [&]() -> int {int __t; __t = t; return __t; }();
9 return [&t]() -> int {int __t; __t = t; return __t; }();
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Dpr18299-1.c2 would produce __t (VAR_DECL) as a statement in the
7 const int __t = (__t); local
H A D991008-1.c13 int __t = aIndent; local
14 while (--__t >= 0)
19 int __t = aIndent; local
20 while (--__t >= 0)
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dstmt-expr-4.c18 ((const char *)(({ __typeof (num_string) const __t
19 = num_string; __t; })
H A D20050629-1.c114 root = &(__extension__ ({ const tree __t = (def); if (((enum tree_code) (__t)->common.code) != (SSA_NAME)) tree_check_failed (__t, "/home/cygnus/dnovillo/gcc/src.ppc64/gcc/tree-flow-inline.h", 222, __FUNCTION__, (SSA_NAME), 0); __t; }
244 { { if (code == LT_EXPR || code == GE_EXPR) { swap_tree_operands (stmt, &__extension__ (*({const tree __t = __extension__ ({ const tree __t = (expr); char const __c = tree_code_type[(int) (((enum tree_code) (__t)->common.code))]; if (!((__c) >= tcc_reference && (__c) <= tcc_expression)) tree_class_check_failed (__t, tcc_expression, "/home/cygnus/dnovillo/gcc/src.ppc64/gcc/tree-ssa-operands.c", 1435, __FUNCTION__); __t; }); const int __i = (0); if (__i < 0 || __i >= tree_code_length[(int) (((enum tree_code) (__t)
[all...]
H A D20070725-1.c45 if (({const struct tree_base* __t = (rhs); __t;})->readonly_flag
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/tree-ssa/
H A D20030703-2.c24 tree __t = t; local
25 if (tree_code_type[__t->code])
30 /* There should be precisely one load of {t,__t}->code. If there is
H A Dfoldconst-3.c44 (type) __t
51 (__t)->
57 (__t,
59 __t;})->
64 __typeof (type) __t = (type);
67 (((enum tree_code) (__t)->base.
70 tree_class_check_failed (__t,
72 __t;}
H A D20030711-1.c33 const tree __t = type->type.binfo;
34 if (4 >= __t->vec.length)
H A Dfoldconst-2.c45 __t
48 __t;}
H A Dforwprop-26.c43 if (!(( { __typeof (vnode->decl) const __t = (vnode->decl); __t;})->decl_with_vis.comdat_flag)
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp0x/
H A Dvt-35147.C4 _Tp&& forward(_Tp&& __t) { return __t; } // { dg-message "note" } argument
H A Dunnamed_refs.C20 movel(_Tp& __t) argument
21 { return static_cast<_Tp&&>(__t); }
H A Dnamed.C5 movel(_Tp& __t) argument
6 { return static_cast<_Tp&&>(__t); }
H A Dpr33996.C21 forward(typename identity<_Tp>::type&& __t) argument
22 { return __t; }
/haiku-buildtools/gcc/libstdc++-v3/src/c++98/
H A Dvalarray.cc55 valarray<size_t>& __t = const_cast<valarray<size_t>&>(__a); local
56 return __valarray_product(&__t[0], &__t[0] + __n);
72 valarray<size_t> __t(__l);
84 --__t[__n - 1];
89 for (size_t __k2 = __n - 1; __k2 && !__t[__k2]; --__k2)
92 __t[__k2] = __l[__k2];
94 --__t[__k2 - 1];
/haiku-buildtools/legacy/gcc/libstdc++/
H A Dvalarray.cc26 size_t* const __t = static_cast<size_t*>(alloca(__n*sizeof(size_t))); local
27 __valarray_fill(__t, __n, size_t(0));
32 __i[__j] += __s[__k]*__t[__k];
33 ++__t[__n-1];
35 if (__t[__k] >= __l[__k]) {
36 __t[__k] = 0;
37 ++__t[__k-1];
/haiku-buildtools/gcc/libstdc++-v3/include/bits/
H A Dstl_function.h236 operator()(_Tp&& __t, _Up&& __u) const
237 noexcept(noexcept(std::forward<_Tp>(__t) + std::forward<_Up>(__u)))
238 -> decltype(std::forward<_Tp>(__t) + std::forward<_Up>(__u))
239 { return std::forward<_Tp>(__t) + std::forward<_Up>(__u); }
251 operator()(_Tp&& __t, _Up&& __u) const
252 noexcept(noexcept(std::forward<_Tp>(__t) - std::forward<_Up>(__u)))
253 -> decltype(std::forward<_Tp>(__t) - std::forward<_Up>(__u))
254 { return std::forward<_Tp>(__t) - std::forward<_Up>(__u); }
266 operator()(_Tp&& __t, _Up&& __u) const
267 noexcept(noexcept(std::forward<_Tp>(__t) * st
[all...]
H A Duniform_int_dist.h175 __generate(_ForwardIterator __f, _ForwardIterator __t, argument
177 { this->__generate(__f, __t, __urng, _M_param); }
182 __generate(_ForwardIterator __f, _ForwardIterator __t, argument
185 { this->__generate_impl(__f, __t, __urng, __p); }
189 __generate(result_type* __f, result_type* __t, argument
192 { this->__generate_impl(__f, __t, __urng, __p); }
207 __generate_impl(_ForwardIterator __f, _ForwardIterator __t,
285 __generate_impl(_ForwardIterator __f, _ForwardIterator __t, argument
309 while (__f != __t)
321 while (__f != __t)
[all...]
H A Dvalarray_before.h66 _Tp operator()(const _Tp& __t) const
67 { return abs(__t); }
73 _Tp operator()(const _Tp& __t) const
74 { return cos(__t); }
80 _Tp operator()(const _Tp& __t) const
81 { return acos(__t); }
87 _Tp operator()(const _Tp& __t) const
88 { return cosh(__t); }
94 _Tp operator()(const _Tp& __t) const
95 { return sin(__t); }
551 _BinBase2(const _Clos& __e, const _Vt& __t) argument
571 _BinBase1(const _Vt& __t, const _Clos& __e) argument
658 _BinClos(const valarray<_Tp>& __v, const _Tp& __t) argument
668 _BinClos(const _Tp& __t, const valarray<_Tp>& __v) argument
[all...]
/haiku-buildtools/gcc/libstdc++-v3/include/parallel/
H A Dunique_copy.h132 for (_ThreadIndex __t = 0; __t < __num_threads; ++__t)
133 __begin_output += __counter[__t];
157 for (_ThreadIndex __t = 0; __t < __iam; __t++)
158 __begin_output += __counter[__t];
171 for (_ThreadIndex __t = 0; __t < __num_thread
[all...]
H A Dqueue.h83 push_front(const _Tp& __t) argument
88 *(_M_base + __former_front % _M_max_size) = __t;
100 pop_front(_Tp& __t) argument
115 __t = *(_M_base + (__former_front - 1) % _M_max_size);
127 pop_back(_Tp& __t) //queue behavior argument
142 __t = *(_M_base + __former_back % _M_max_size);
/haiku-buildtools/gcc/libstdc++-v3/libsupc++/
H A Dnested_exception.h99 static void _S_throw(_Up&& __t) argument
100 { throw _Nested_exception<_Tp>{static_cast<_Up&&>(__t)}; }
107 static void _S_throw(_Up&& __t) argument
108 { throw static_cast<_Up&&>(__t); }
130 /// If @p __t is derived from nested_exception, throws @p __t.
135 throw_with_nested(_Tp&& __t) argument
137 _Throw_with_nested_helper<_Tp>::_S_throw(static_cast<_Tp&&>(__t));
143 static void _S_rethrow(const _Tp& __t) argument
145 if (auto __tp = dynamic_cast<const nested_exception*>(&__t))
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/
H A Dpr55093.c30 inline tree tree_check (tree __t, const char *__f, int __l, const char *__g, enum tree_code __c) { argument
31 if (((enum tree_code) (__t)->base.code) != __c)
32 tree_check_failed (__t, __f, __l, __g, __c, 0);
33 return __t;
/haiku-buildtools/gcc/gcc/
H A Dtree.h2848 tree_check (tree __t, const char *__f, int __l, const char *__g, tree_code __c) argument
2850 if (TREE_CODE (__t) != __c)
2851 tree_check_failed (__t, __f, __l, __g, __c, 0);
2852 return __t;
2856 tree_not_check (tree __t, const char *__f, int __l, const char *__g, argument
2859 if (TREE_CODE (__t) == __c)
2860 tree_not_check_failed (__t, __f, __l, __g, __c, 0);
2861 return __t;
2865 tree_check2 (tree __t, const char *__f, int __l, const char *__g, argument
2868 if (TREE_CODE (__t) !
2875 tree_not_check2(tree __t, const char *__f, int __l, const char *__g, enum tree_code __c1, enum tree_code __c2) argument
2885 tree_check3(tree __t, const char *__f, int __l, const char *__g, enum tree_code __c1, enum tree_code __c2, enum tree_code __c3) argument
2896 tree_not_check3(tree __t, const char *__f, int __l, const char *__g, enum tree_code __c1, enum tree_code __c2, enum tree_code __c3) argument
2907 tree_check4(tree __t, const char *__f, int __l, const char *__g, enum tree_code __c1, enum tree_code __c2, enum tree_code __c3, enum tree_code __c4) argument
2920 tree_not_check4(tree __t, const char *__f, int __l, const char *__g, enum tree_code __c1, enum tree_code __c2, enum tree_code __c3, enum tree_code __c4) argument
2933 tree_check5(tree __t, const char *__f, int __l, const char *__g, enum tree_code __c1, enum tree_code __c2, enum tree_code __c3, enum tree_code __c4, enum tree_code __c5) argument
2947 tree_not_check5(tree __t, const char *__f, int __l, const char *__g, enum tree_code __c1, enum tree_code __c2, enum tree_code __c3, enum tree_code __c4, enum tree_code __c5) argument
2961 contains_struct_check(tree __t, const enum tree_node_structure_enum __s, const char *__f, int __l, const char *__g) argument
2970 tree_class_check(tree __t, const enum tree_code_class __class, const char *__f, int __l, const char *__g) argument
2979 tree_range_check(tree __t, enum tree_code __code1, enum tree_code __code2, const char *__f, int __l, const char *__g) argument
2989 omp_clause_subcode_check(tree __t, enum omp_clause_code __code, const char *__f, int __l, const char *__g) argument
3000 omp_clause_range_check(tree __t, enum omp_clause_code __code1, enum omp_clause_code __code2, const char *__f, int __l, const char *__g) argument
3016 expr_check(tree __t, const char *__f, int __l, const char *__g) argument
3027 non_type_check(tree __t, const char *__f, int __l, const char *__g) argument
3035 tree_int_cst_elt_check(const_tree __t, int __i, const char *__f, int __l, const char *__g) argument
3047 tree_int_cst_elt_check(tree __t, int __i, const char *__f, int __l, const char *__g) argument
3066 tree_vec_elt_check(tree __t, int __i, const char *__f, int __l, const char *__g) argument
3081 omp_clause_elt_check(tree __t, int __i, const char *__f, int __l, const char *__g) argument
3094 any_integral_type_check(tree __t, const char *__f, int __l, const char *__g) argument
3103 tree_check(const_tree __t, const char *__f, int __l, const char *__g, tree_code __c) argument
3112 tree_not_check(const_tree __t, const char *__f, int __l, const char *__g, enum tree_code __c) argument
3121 tree_check2(const_tree __t, const char *__f, int __l, const char *__g, enum tree_code __c1, enum tree_code __c2) argument
3131 tree_not_check2(const_tree __t, const char *__f, int __l, const char *__g, enum tree_code __c1, enum tree_code __c2) argument
3141 tree_check3(const_tree __t, const char *__f, int __l, const char *__g, enum tree_code __c1, enum tree_code __c2, enum tree_code __c3) argument
3152 tree_not_check3(const_tree __t, const char *__f, int __l, const char *__g, enum tree_code __c1, enum tree_code __c2, enum tree_code __c3) argument
3163 tree_check4(const_tree __t, const char *__f, int __l, const char *__g, enum tree_code __c1, enum tree_code __c2, enum tree_code __c3, enum tree_code __c4) argument
3176 tree_not_check4(const_tree __t, const char *__f, int __l, const char *__g, enum tree_code __c1, enum tree_code __c2, enum tree_code __c3, enum tree_code __c4) argument
3189 tree_check5(const_tree __t, const char *__f, int __l, const char *__g, enum tree_code __c1, enum tree_code __c2, enum tree_code __c3, enum tree_code __c4, enum tree_code __c5) argument
3203 tree_not_check5(const_tree __t, const char *__f, int __l, const char *__g, enum tree_code __c1, enum tree_code __c2, enum tree_code __c3, enum tree_code __c4, enum tree_code __c5) argument
3217 contains_struct_check(const_tree __t, const enum tree_node_structure_enum __s, const char *__f, int __l, const char *__g) argument
3226 tree_class_check(const_tree __t, const enum tree_code_class __class, const char *__f, int __l, const char *__g) argument
3235 tree_range_check(const_tree __t, enum tree_code __code1, enum tree_code __code2, const char *__f, int __l, const char *__g) argument
3245 omp_clause_subcode_check(const_tree __t, enum omp_clause_code __code, const char *__f, int __l, const char *__g) argument
3256 omp_clause_range_check(const_tree __t, enum omp_clause_code __code1, enum omp_clause_code __code2, const char *__f, int __l, const char *__g) argument
3270 expr_check(const_tree __t, const char *__f, int __l, const char *__g) argument
3279 non_type_check(const_tree __t, const char *__f, int __l, const char *__g) argument
3292 tree_vec_elt_check(const_tree __t, int __i, const char *__f, int __l, const char *__g) argument
3308 omp_clause_elt_check(const_tree __t, int __i, const char *__f, int __l, const char *__g) argument
3319 any_integral_type_check(const_tree __t, const char *__f, int __l, const char *__g) argument
3346 tree_operand_check(tree __t, int __i, const char *__f, int __l, const char *__g) argument
3356 tree_operand_check_code(tree __t, enum tree_code __code, int __i, const char *__f, int __l, const char *__g) argument
3367 tree_operand_check(const_tree __t, int __i, const char *__f, int __l, const char *__g) argument
3377 tree_operand_check_code(const_tree __t, enum tree_code __code, int __i, const char *__f, int __l, const char *__g) argument
[all...]

Completed in 329 milliseconds

1234