shape_doc 0.1
|
Go to the source code of this file.
#define bin_pack2 | ( | a, | |
b, | |||
n | |||
) | (((a)<<n)|(b)) |
Definition at line 4 of file ssi_bin_pack.hpp.
#define bin_pack2_1 | ( | a, | |
b | |||
) | bin_pack2(a,b,1) |
Definition at line 5 of file ssi_bin_pack.hpp.
#define bin_pack2_2 | ( | a, | |
b | |||
) | (((a)<<2)|(b)) |
Definition at line 6 of file ssi_bin_pack.hpp.
#define bin_pack2_3 | ( | a, | |
b | |||
) | (((a)<<3)|(b)) |
Definition at line 7 of file ssi_bin_pack.hpp.
#define bin_pack4_1 | ( | a, | |
b, | |||
c, | |||
d | |||
) | bin_pack2_2(bin_pack2_1(a,b),bin_pack2_1(c,d)) |
Definition at line 8 of file ssi_bin_pack.hpp.