_ktestc_mask16_u8
Classification
AVX-512, Mask, CPUID Test: AVX512DQ
Header File
immintrin.h
Instruction
KTESTW k, k
Synopsis
 _ktestc_mask16_u8(__mmask16 a, __mmask16 b);
Description
Compute the bitwise NOT of 16-bit mask "a" and then AND with "b", if the result is all zeroes, store 1 in "dst", otherwise store 0 in "dst".
Operation
tmp[15:0] := (NOT a[15:0]) AND b[15:0]
IF tmp[15:0] == 0x0
	dst := 1
ELSE
	dst := 0
FI