Home | History | Annotate | Download | only in pointers

Lines Matching refs:void_type

207   typedef _StorageT void_type;
209 static void_type * uncv_ptr(void_cv_type *__ptr)
211 static void_type const* uncv_cptr(void_cv_type const*__ptr)
213 static void_type ** uncv_pptr(void_cv_type **__ptr)
215 static void_type & uncv_ref(void_cv_type & __ref)
217 static void_type const& uncv_cref(void_cv_type const& __ref)
219 static void_cv_type* cv_ptr(void_type *__ptr)
221 static void_cv_type const* cv_cptr(void_type const*__ptr)
223 static void_cv_type ** cv_pptr(void_type **__ptr)
225 static void_cv_type & cv_ref(void_type & __ref)
227 static void_cv_type const& cv_cref(void_type const& __ref)
234 typedef void* void_type;
236 static void_type* uncv_ptr(void_cv_type *__ptr)
237 { return __CONST_CAST(void_type*, __ptr); }
238 static void_type const* uncv_cptr(void_cv_type const*__ptr)
239 { return __CONST_CAST(void_type const*, __ptr); }
240 static void_type** uncv_pptr(void_cv_type **__ptr)
241 { return __CONST_CAST(void_type**, __ptr); }
242 static void_type& uncv_ref(void_cv_type &__ref)
243 { return __CONST_CAST(void_type&, __ref); }
244 static void_type const& uncv_cref(void_cv_type const& __ptr)
245 { return __CONST_CAST(void_type const&, __ptr); }
247 static void_cv_type * cv_ptr(void_type *__ptr)
249 static void_cv_type const* cv_cptr(void_type const*__ptr)
251 static void_cv_type ** cv_pptr(void_type **__ptr)
253 static void_cv_type & cv_ref(void_type &__ref)
255 static void_cv_type const& cv_cref(void_type const& __ref)
274 typedef typename cv_traits::void_type void_type;
277 static value_type * to_value_type_ptr(void_type *__ptr)
279 static value_type const* to_value_type_cptr(void_type const*__ptr)
281 static value_type ** to_value_type_pptr(void_type **__ptr)
283 static value_type & to_value_type_ref(void_type &__ref)
285 static value_type const& to_value_type_cref(void_type const& __ptr)
288 static void_type * to_storage_type_ptr(value_type *__ptr)
290 static void_type const* to_storage_type_cptr(value_type const*__ptr)
292 static void_type ** to_storage_type_pptr(value_type **__ptr)
294 static void_type const& to_storage_type_cref(value_type const& __ref)
298 static void_type const& to_storage_type_crefT(value_type const& __ref)