Home
last modified time | relevance | path

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

12

/openbsd/gnu/llvm/libcxx/include/__type_traits/
H A Dis_volatile.h24 struct _LIBCPP_TEMPLATE_VIS is_volatile : _BoolConstant<__is_volatile(_Tp)> { }; struct
33 template <class _Tp> struct _LIBCPP_TEMPLATE_VIS is_volatile : public false_type {};
34 template <class _Tp> struct _LIBCPP_TEMPLATE_VIS is_volatile<_Tp volatile> : public true_type {};
38 inline constexpr bool is_volatile_v = is_volatile<_Tp>::value;
H A Dapply_cv.h25 bool = is_volatile<__libcpp_remove_reference_t<_Tp> >::value>
/openbsd/gnu/llvm/libcxx/include/__algorithm/
H A Dcopy_move_common.h45 !is_volatile<_From>::value &&
46 !is_volatile<_To>::value;
54 !is_volatile<_From>::value &&
55 !is_volatile<_To>::value;
/openbsd/gnu/llvm/lldb/source/Host/common/
H A DFileSystem.cpp280 bool is_volatile) { in GetMemoryBuffer() argument
283 auto buffer_or_error = T::getFile(path, is_volatile); in GetMemoryBuffer()
288 auto buffer_or_error = T::getFileSlice(path, size, offset, is_volatile); in GetMemoryBuffer()
299 const bool is_volatile = !IsLocal(path); in CreateWritableDataBuffer() local
301 is_volatile); in CreateWritableDataBuffer()
311 const bool is_volatile = !IsLocal(path); in CreateDataBuffer() local
313 GetMemoryBuffer<llvm::MemoryBuffer>(path, size, offset, is_volatile); in CreateDataBuffer()
/openbsd/gnu/llvm/libcxx/include/__memory/
H A Dallocator.h93 static_assert(!is_volatile<_Tp>::value, "std::allocator does not support volatile types");
182 static_assert(!is_volatile<_Tp>::value, "std::allocator does not support volatile types");
/openbsd/gnu/llvm/libcxx/include/__tuple_dir/
H A Dapply_cv.h64 is_volatile<_RawTp>::value>;
H A Dtuple_size.h34 __enable_if_t<!is_volatile<_Tp>::value>,
/openbsd/gnu/usr.bin/gcc/gcc/cp/
H A Dcvt.c861 int is_volatile = TYPE_VOLATILE (type); local
864 if (is_volatile && !is_complete)
867 else if (is_reference && is_volatile)
871 if (is_reference || !is_volatile || !is_complete)
/openbsd/gnu/gcc/libstdc++-v3/include/tr1/
H A Dtype_traits_fwd.h116 struct is_volatile;
H A Dtype_traits267 struct is_volatile
271 struct is_volatile<_Tp volatile>
490 && !is_volatile<__rr_Tp>::value));
/openbsd/gnu/gcc/gcc/cp/
H A Dcvt.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()
/openbsd/gnu/usr.bin/binutils/gdb/
H A Dgdbtypes.h671 unsigned int is_volatile:1; member
925 #define TYPE_FN_FIELD_VOLATILE(thisfn, n) ((thisfn)[n].is_volatile)
H A Dgdbtypes.c1367 int is_const, is_volatile; in check_typedef() local
1402 is_volatile = TYPE_VOLATILE (type); in check_typedef()
1420 make_cv_type (is_const, is_volatile, newtype, &type); in check_typedef()
1438 make_cv_type (is_const, is_volatile, SYMBOL_TYPE (sym), &type); in check_typedef()
H A Dstabsread.c2253 new_sublist->fn_field.is_volatile = 0; in read_member_functions()
2258 new_sublist->fn_field.is_volatile = 0; in read_member_functions()
2263 new_sublist->fn_field.is_volatile = 1; in read_member_functions()
2268 new_sublist->fn_field.is_volatile = 1; in read_member_functions()
H A Dsymtab.c336 char *volatile_prefix = method->is_volatile ? "V" : ""; in gdb_mangle_name()
H A Dhpread.c3986 fn_p->field.fn_fields[ix].is_volatile = volatile_member; /* ?? */ in hpread_read_struct_type()
/openbsd/gnu/llvm/libcxx/include/
H A Dtype_traits61 template <class T> struct is_volatile;
295 = is_volatile<T>::value; // C++17
517 #include <__type_traits/is_volatile.h>
H A DCMakeLists.txt676 __type_traits/is_volatile.h
H A Dmodule.modulemap.in1522 module is_volatile { private header "__type_traits/is_volatile.h" }
/openbsd/gnu/llvm/llvm/utils/gn/secondary/libcxx/include/
H A DBUILD.gn751 "__type_traits/is_volatile.h",
/openbsd/gnu/lib/libcxx/
H A DMakefile763 __type_traits/is_volatile.h \
/openbsd/gnu/llvm/llvm/bindings/ocaml/llvm/
H A Dllvm.ml1089 external is_volatile : llvalue -> bool = "llvm_is_volatile"
H A Dllvm.mli1872 (** [is_volatile i] is [true] if the load or store instruction [i] is marked
1876 val is_volatile : llvalue -> bool val
/openbsd/gnu/llvm/clang/include/clang/Tooling/Inclusions/
H A DStdSymbolMap.inc648 SYMBOL(is_volatile, std::, <type_traits>)
/openbsd/gnu/llvm/libcxx/include/experimental/
H A Dsimd958 !std::is_volatile<_Tp>::value && !std::is_same<_Tp, bool>::value;

12