Home
last modified time | relevance | path

Searched refs:xor_mask (Results 1 – 6 of 6) sorted by relevance

/third_party/boost/boost/random/
Dmersenne_twister.hpp80 BOOST_STATIC_CONSTANT(UIntType, xor_mask = a);
509 BOOST_RANDOM_MT_DEFINE_CONSTANT(UIntType, xor_mask);
/third_party/libxml2/
Dxmlschemastypes.c4116 unsigned char xmask, ymask, xor_mask, and_mask; in xmlSchemaCompareDates() local
4314 xor_mask = xmask ^ ymask; /* mark type differences */ in xmlSchemaCompareDates()
4318 if (xor_mask & 1) in xmlSchemaCompareDates()
4328 if (xor_mask & 2) in xmlSchemaCompareDates()
4338 if (xor_mask & 4) in xmlSchemaCompareDates()
4348 if (xor_mask & 8) in xmlSchemaCompareDates()
/third_party/gettext/gnulib-local/lib/libxml/
Dxmlschemastypes.c4039 unsigned char xmask, ymask, xor_mask, and_mask; in xmlSchemaCompareDates() local
4229 xor_mask = xmask ^ ymask; /* mark type differences */ in xmlSchemaCompareDates()
4233 if (xor_mask & 1) in xmlSchemaCompareDates()
4243 if (xor_mask & 2) in xmlSchemaCompareDates()
4253 if (xor_mask & 4) in xmlSchemaCompareDates()
4263 if (xor_mask & 8) in xmlSchemaCompareDates()
/third_party/boost/libs/config/doc/
Dmacro_reference.qbk791 static constexpr UIntType xor_mask = a;
795 static BOOST_CONSTEXPR_OR_CONST UIntType xor_mask = a;
805 static constexpr UIntType xor_mask = a;
809 BOOST_STATIC_CONSTEXPR UIntType xor_mask = a;
/third_party/mesa3d/src/amd/llvm/
Dac_llvm_build.c3615 static inline unsigned ds_pattern_bitmode(unsigned and_mask, unsigned or_mask, unsigned xor_mask) in ds_pattern_bitmode() argument
3617 assert(and_mask < 32 && or_mask < 32 && xor_mask < 32); in ds_pattern_bitmode()
3618 return and_mask | (or_mask << 5) | (xor_mask << 10); in ds_pattern_bitmode()
/third_party/mesa3d/src/amd/compiler/
Daco_instruction_selection.cpp242 unsigned xor_mask = (mask >> 10) & 0x1f; in emit_masked_swizzle() local
247 if (and_mask == 0x1f && or_mask < 4 && xor_mask < 4) { in emit_masked_swizzle()
250 res[i] = ((res[i] | or_mask) ^ xor_mask) & 0x3; in emit_masked_swizzle()
252 } else if (and_mask == 0x1f && !or_mask && xor_mask == 8) { in emit_masked_swizzle()
254 } else if (and_mask == 0x1f && !or_mask && xor_mask == 0xf) { in emit_masked_swizzle()
256 } else if (and_mask == 0x1f && !or_mask && xor_mask == 0x7) { in emit_masked_swizzle()