Displaying 1 result from an estimated 1 matches for "is_constant_mask".
2014 Sep 07
0
New flag bit for serialized used by pqR
...packed into a single
* integer. The integer is signed, so this shouldn't be pushed too
* far. It assumes at least 28 bits, but that should be no problem.
*/
#define IS_OBJECT_BIT_MASK (1 << 8)
#define HAS_ATTR_BIT_MASK (1 << 9)
#define HAS_TAG_BIT_MASK (1 << 10)
#define IS_CONSTANT_MASK (1 << 11) /* <<--- added in pqR */
#define ENCODE_LEVELS(v) ((v) << 12)
#define DECODE_LEVELS(v) ((v) >> 12)
#define DECODE_TYPE(v) ((v) & 255)
Please let me know if you see any problem with this, or if for some
reason you'd prefer that I use one of the other...