Home
last modified time | relevance | path

Searched refs:is_volatile (Results 1 – 13 of 13) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
HDFileSystem.cpp285 const bool is_volatile = !IsLocal(path); in CreateDataBuffer() local
294 llvm::WritableMemoryBuffer::getFile(*external_path, -1, is_volatile); in CreateDataBuffer()
300 *external_path, size, offset, is_volatile); in CreateDataBuffer()
/freebsd-11-stable/contrib/gcc/cp/
HDcvt.c864 int is_volatile = TYPE_VOLATILE (type); in convert_to_void() local
868 if (is_volatile && !is_complete) in convert_to_void()
873 else if (is_volatile && (is_reference || TREE_ADDRESSABLE (type))) in convert_to_void()
877 if (is_reference || !is_volatile || !is_complete || TREE_ADDRESSABLE (type)) in convert_to_void()
/freebsd-11-stable/contrib/libstdc++/include/tr1/
Dtype_traits_fwd.h116 struct is_volatile;
Dtype_traits267 struct is_volatile
271 struct is_volatile<_Tp volatile>
490 && !is_volatile<__rr_Tp>::value));
/freebsd-11-stable/contrib/gdb/gdb/
HDgdbtypes.h647 unsigned int is_volatile:1; member
901 #define TYPE_FN_FIELD_VOLATILE(thisfn, n) ((thisfn)[n].is_volatile)
HDstabsread.c2297 new_sublist->fn_field.is_volatile = 0; in read_member_functions()
2302 new_sublist->fn_field.is_volatile = 0; in read_member_functions()
2307 new_sublist->fn_field.is_volatile = 1; in read_member_functions()
2312 new_sublist->fn_field.is_volatile = 1; in read_member_functions()
HDgdbtypes.c1378 int is_const, is_volatile, is_restrict; in check_typedef() local
1413 is_volatile = TYPE_VOLATILE (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()
HDsymtab.c333 char *volatile_prefix = method->is_volatile ? "V" : ""; in gdb_mangle_name()
HDhpread.c3991 fn_p->field.fn_fields[ix].is_volatile = volatile_member; /* ?? */ in hpread_read_struct_type()
/freebsd-11-stable/contrib/llvm-project/libcxx/include/
HD__tuple33 typename enable_if<!is_volatile<_Tp>::value>::type,
334 is_volatile<_RawTp>::value>;
HDtype_traits60 template <class T> struct is_volatile;
292 = is_volatile<T>::value; // C++17
668 // is_volatile
670 template <class _Tp> struct _LIBCPP_TEMPLATE_VIS is_volatile : public false_type {};
671 template <class _Tp> struct _LIBCPP_TEMPLATE_VIS is_volatile<_Tp volatile> : public true_type {};
676 = is_volatile<_Tp>::value;
1930 bool = is_volatile<typename remove_reference<_Tp>::type>::value>
3335 : public integral_constant<bool, !is_volatile<_Tp>::value && __is_trivially_copyable(_Tp)>
/freebsd-11-stable/contrib/libstdc++/
DChangeLog-2004421 * testsuite/tr1/4_metaprogramming/type_properties/is_volatile/
422 is_volatile.cc: Likewise.
464 * testsuite/tr1/4_metaprogramming/type_properties/is_volatile/
465 is_volatile.cc: Likewise.
475 * include/tr1/type_traits: Implement is_const and is_volatile.
482 is_volatile/is_volatile.cc: Likewise.
484 is_volatile/typedefs.cc: Likewise.
/freebsd-11-stable/contrib/llvm-project/libcxx/include/experimental/
HDsimd951 !std::is_volatile<_Tp>::value && !std::is_same<_Tp, bool>::value;