void wbits16(List<int> d, int p, int v) { v <<= p & 7; int o = (p ~/ 8) | 0; d[o] |= v; d[o + 1] |= v >> 8; d[o + 2] |= v >> 16; }