Home | History | Annotate | Download | only in pointers

Lines Matching refs:storage_type

304   typedef _Tp storage_type;
307 static value_type * to_value_type_ptr(storage_type *__ptr)
309 static value_type const* to_value_type_cptr(storage_type const*__ptr)
311 static value_type ** to_value_type_pptr(storage_type **__ptr)
313 static value_type & to_value_type_ref(storage_type &__ref)
315 static value_type const& to_value_type_cref(storage_type const&__ref)
318 static storage_type * to_storage_type_ptr(value_type *__ptr)
320 static storage_type const* to_storage_type_cptr(value_type const*__ptr)
322 static storage_type ** to_storage_type_pptr(value_type **__ptr)
324 static storage_type const& to_storage_type_cref(value_type const& __ref)
403 typedef _StorageT storage_type;
406 static value_type * to_value_type_ptr(storage_type *__ptr)
408 static value_type const* to_value_type_cptr(storage_type const*__ptr)
410 static value_type ** to_value_type_pptr(storage_type **__ptr)
412 static value_type & to_value_type_ref(storage_type &__ref)
414 static value_type const& to_value_type_cref(storage_type const&__ref)
417 static storage_type * to_storage_type_ptr(value_type *__ptr)
418 { return __REINTERPRET_CAST(storage_type*, __ptr); }
419 static storage_type const* to_storage_type_cptr(value_type const*__ptr)
420 storage_type const*, __ptr); }
421 static storage_type ** to_storage_type_pptr(value_type **__ptr)
422 { return __REINTERPRET_CAST(storage_type **, __ptr); }
423 static storage_type const& to_storage_type_cref(value_type const&__ref)
424 { return __REINTERPRET_CAST(storage_type const&, __ref); }