When looking in the Memory tab, I have a class which have 8.96 GiB Max Live Size while the Max Live Count it 401,000,000.
This a a Scala Cons class which is an element in a LinkedList of type Byte.
By this logic, 401M bytes is 401 MiB (maybe times some constant), so I don't understand why the live size is 8.96 GiB, which is orders of magnitude larger.
Can someone please help me make sense of this?

According to Java Object Layout tool instance size of
::oris 24 bytes
hence
which makes sense because
::stores at least references to a head and a tail, in addition to standard object headers