These are not "type" prefixes/suffixes, these are literal prefixes/suffixes, as they are applied on literals (string literals, number literals, ...). They don't have specific names, because they aren't that interesting ☺.
The built-in prefixes and suffixes in C++11 are:
Integers:
12U
, 12L
, 12UL
, 12LU
, 12LL
, 12ULL
, 12LLU
, 12u
, 12uL
, 12Lu
, 12uLL
, 12LLu
, 12l
, 12Ul
, 12lU
, 12ll
, 12Ull
, 12llU
, 12ul
, 12lu
, 12ull
, 12llu
Floating points:
Characters:
Strings:
u8"xxx"
, u"xxx"
, U"xxx"
, L"xxx"
, R"(xxx)"
, u8R"(xxx)"
, uR"(xxx)"
, UR"(xxx)"
, LR"(xxx)"
In particular, 1.0d
is not a built-in C++11 suffix. Some compilers e.g. GCC may also have extensions for other number suffixes, see C floating point number notation.
Relevant lexical grammar:
(§2.14.2 Integer literals)
unsigned-suffix: one of
u U
long-suffix: one of
l L
long-long-suffix: one of
ll LL
(§2.14.4 Floating literals)
floating-suffix: one of
f l F L
(§2.14.3 Character literals)
character-literal:
'
c-char-sequence '
u'
c-char-sequence '
U'
c-char-sequence '
L'
c-char-sequence '
and
(§2.14.5 String literals)
string-literal:
encoding-prefixopt "
s-char-sequenceopt "
encoding-prefixopt R
raw-string
encoding-prefix:
u8
u
U
L