Packages

object PaddingStrategy

Source
PaddingStrategy.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PaddingStrategy
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. object Left128 extends PaddingStrategy with Product with Serializable

    A PaddingStrategy that applies padding to the left of our atomic value for a total cache line of 64 bytes (8 longs).

    A PaddingStrategy that applies padding to the left of our atomic value for a total cache line of 64 bytes (8 longs).

    Note the actual padding applied will be less, like 112 bytes, because we take into account the object's header and the the stored value.

  2. object Left64 extends PaddingStrategy with Product with Serializable

    A PaddingStrategy that applies padding to the left of our atomic value for a total cache line of 64 bytes (8 longs).

    A PaddingStrategy that applies padding to the left of our atomic value for a total cache line of 64 bytes (8 longs).

    Note the actual padding applied will be less, like 48 or 52 bytes, because we take into account the object's header and the the stored value.

  3. object LeftRight128 extends PaddingStrategy with Product with Serializable

    A PaddingStrategy that applies padding both to the left and to the right of our atomic value for a total cache line of 128 bytes (16 longs).

    A PaddingStrategy that applies padding both to the left and to the right of our atomic value for a total cache line of 128 bytes (16 longs).

    Note the actual padding applied will be less, like 112 or 116 bytes, because we take into account the object's header and the stored value.

  4. object LeftRight256 extends PaddingStrategy with Product with Serializable

    A PaddingStrategy that applies padding both to the left and to the right of our atomic value for a total cache line of 128 bytes (16 longs).

    A PaddingStrategy that applies padding both to the left and to the right of our atomic value for a total cache line of 128 bytes (16 longs).

    Note the actual padding applied will be less, like 232/240 bytes, because we take into account the object's header and the stored value.

  5. object NoPadding extends PaddingStrategy with Product with Serializable

    A PaddingStrategy that specifies no padding should be applied.

    A PaddingStrategy that specifies no padding should be applied. This is the default.

  6. object Right128 extends PaddingStrategy with Product with Serializable

    A PaddingStrategy that applies padding to the right of our atomic value for a total cache line of 64 bytes (8 longs).

    A PaddingStrategy that applies padding to the right of our atomic value for a total cache line of 64 bytes (8 longs).

    Note the actual padding applied will be less, like 112 bytes, because we take into account the object's header and the the stored value.

  7. object Right64 extends PaddingStrategy with Product with Serializable

    A PaddingStrategy that applies padding to the right of our atomic value for a total cache line of 64 bytes (8 longs).

    A PaddingStrategy that applies padding to the right of our atomic value for a total cache line of 64 bytes (8 longs).

    Note the actual padding applied will be less, like 48 or 52 bytes, because we take into account the object's header and the the stored value.