2014-06-14 02:15:36 +00:00
|
|
|
package org.capnproto;
|
|
|
|
|
|
|
|
final class Constants {
|
2014-09-03 01:24:00 +00:00
|
|
|
public static final int BITS_PER_BYTE = 8;
|
2014-06-14 02:15:36 +00:00
|
|
|
public static final int BITS_PER_POINTER = 64;
|
|
|
|
public static final int BITS_PER_WORD = 64;
|
|
|
|
public static final int BYTES_PER_WORD = 8;
|
|
|
|
public static final int POINTER_SIZE_IN_WORDS = 1;
|
|
|
|
}
|