Home
last modified time | relevance | path

Searched refs:is_const (Results 1 – 23 of 23) sorted by relevance

/NextBSD/contrib/libstdc++/include/ext/pb_ds/detail/
Dtype_utils.hpp62 using std::tr1::is_const;
87 value = is_const<T>::value && is_pointer<T>::value
96 value = is_const<T>::value && is_reference<T>::value
/NextBSD/contrib/gcc/
HDgenattr.c47 int is_const = GET_CODE (XEXP (attr, 2)) == CONST; in gen_attr() local
55 (is_const ? "void" : "rtx")); in gen_attr()
72 XSTR (attr, 0), XSTR (attr, 0), (is_const ? "void" : "rtx")); in gen_attr()
HDgenattrtab.c178 unsigned is_const : 1; /* Attribute value constant for each run. */ member
714 check_attr_test (rtx exp, int is_const, int lineno) in check_attr_test() argument
729 is_const, lineno); in check_attr_test()
742 if (is_const && ! attr->is_const) in check_attr_test()
753 if (attr->is_const) in check_attr_test()
798 return check_attr_test (orexp, is_const, lineno); in check_attr_test()
815 XEXP (exp, 0) = check_attr_test (XEXP (exp, 0), is_const, lineno); in check_attr_test()
816 XEXP (exp, 1) = check_attr_test (XEXP (exp, 1), is_const, lineno); in check_attr_test()
820 XEXP (exp, 0) = check_attr_test (XEXP (exp, 0), is_const, lineno); in check_attr_test()
824 if (is_const) in check_attr_test()
[all …]
HDcse.c459 char is_const; member
1548 elt->is_const = (CONSTANT_P (x) || fixed_base_plus_p (x)); in insert()
1606 if (elt->is_const && classp && REG_P (classp->exp) in insert()
1619 && ! elt->is_const) in insert()
1625 if (p->is_const && !REG_P (p->exp)) in insert()
3152 if (p->is_const) in find_comparison_args()
3967 int is_const = 0; in fold_rtx() local
3978 is_const = 1, const_arg0 = XEXP (const_arg0, 0); in fold_rtx()
3988 if (new != 0 && is_const in fold_rtx()
4508 if (elt->is_const && CONSTANT_P (elt->exp)) in equiv_constant()
[all …]
HDChangeLog-200025002 (emit_call_1): Replace `is_const' and `nothrow' with `ecf_flags'.
HDChangeLog-200529737 (struct alpha_builtin_def): Add is_const.
/NextBSD/contrib/libpcap/
HDoptimize.c520 int is_const; member
556 vmap[val].is_const = 1; in F()
804 if (vmap[val].is_const) { in opt_peep()
875 if (vmap[val].is_const && BPF_SRC(b->s.code) == BPF_X) { in opt_peep()
885 if (vmap[val].is_const && BPF_SRC(b->s.code) == BPF_K) { in opt_peep()
942 if (alter && vmap[v].is_const) { in opt_stmt()
974 if (alter && vmap[val[A_ATOM]].is_const) { in opt_stmt()
1011 if (vmap[val[A_ATOM]].is_const) { in opt_stmt()
1031 if (alter && vmap[val[X_ATOM]].is_const) { in opt_stmt()
1032 if (vmap[val[A_ATOM]].is_const) { in opt_stmt()
[all …]
/NextBSD/contrib/libstdc++/include/tr1/
Dtype_traits_fwd.h113 struct is_const;
Dtype_traits259 struct is_const
263 struct is_const<_Tp const>
489 && is_const<__rr_Tp>::value
Dfunctional_iterate.h893 && !is_const<_Functor>::value)
Dfunctional990 return is_const<_Functor>::value;
/NextBSD/contrib/gdb/gdb/
HDgdbtypes.h646 unsigned int is_const:1; member
900 #define TYPE_FN_FIELD_CONST(thisfn, n) ((thisfn)[n].is_const)
HDgdbtypes.c1378 int is_const, is_volatile, is_restrict; in check_typedef() local
1412 is_const = TYPE_CONST (type); in check_typedef()
1432 make_cvr_type (is_const, is_volatile, is_restrict, newtype, &type); in check_typedef()
1450 make_cvr_type (is_const, is_volatile, is_restrict, SYMBOL_TYPE (sym), in check_typedef()
HDstabsread.c2296 new_sublist->fn_field.is_const = 0; in read_member_functions()
2301 new_sublist->fn_field.is_const = 1; in read_member_functions()
2306 new_sublist->fn_field.is_const = 0; in read_member_functions()
2311 new_sublist->fn_field.is_const = 1; in read_member_functions()
HDsymtab.c332 char *const_prefix = method->is_const ? "C" : ""; in gdb_mangle_name()
HDhpread.c3990 fn_p->field.fn_fields[ix].is_const = const_member; in hpread_read_struct_type()
/NextBSD/contrib/libc++/include/experimental/
Dtype_traits72 = is_const<T>::value;
265 = is_const<_Tp>::value;
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Symbol/
HDClangASTContext.h172 GetCStringType(bool is_const);
/NextBSD/contrib/compiler-rt/lib/sanitizer_common/scripts/
HDcpplint.py3384 is_const = True
3408 is_const = False
3410 if not is_const:
/NextBSD/contrib/libc++/include/
Dtype_traits60 template <class T> struct is_const;
280 // is_const
282 template <class _Tp> struct _LIBCPP_TYPE_VIS_ONLY is_const : public false_type {};
283 template <class _Tp> struct _LIBCPP_TYPE_VIS_ONLY is_const<_Tp const> : public true_type {};
571 is_const<_Tp>::value >
916 && (!is_const<typename remove_reference<_T2>::type>::value
1351 template <class _Tp, class _Up, bool = is_const<typename remove_reference<_Tp>::type>::value,
/NextBSD/contrib/llvm/tools/lldb/source/Symbol/
HDClangASTContext.cpp1073 ClangASTContext::GetCStringType (bool is_const) in GetCStringType() argument
1078 if (is_const) in GetCStringType()
/NextBSD/contrib/libstdc++/
DChangeLog-2004419 * testsuite/tr1/4_metaprogramming/type_properties/is_const/
420 is_const.cc: Likewise.
462 * testsuite/tr1/4_metaprogramming/type_properties/is_const/
463 is_const.cc: Minor tweaks.
475 * include/tr1/type_traits: Implement is_const and is_volatile.
478 is_const/is_const.c: New.
480 is_const/typedefs.cc: Likewise.
DChangeLog-20051332 take a "false" (i.e., is_const == false) node_iterator.
1335 (hashtable::const_local_iterator): Fix typedef (is_const == true).