Searched refs:maskA (Results 1 – 2 of 2) sorted by relevance
/external/deqp/modules/gles31/functional/ |
D | es31fSampleVariableTests.cpp | 1885 const deUint32 maskA = sampleCoverage[sampleNdxA].getAccess().getPixelUint(x, y).x(); in postTest() local 1889 if (maskA != maskB) in postTest() 1892 if (maskA & maskB) in postTest() 1903 << "\tMask" << sampleNdxA << " = " << tcu::Format::Hex<8>(maskA) << "\n" in postTest()
|
/external/neon_2_sse/ |
D | NEON_2_SSE.h | 8335 __m128i c1, maskA, saturation_mask, c7ffffff_mask, shift_res, shift_res_mask; variable 8337 maskA = _mm_srli_epi32(c1, b + 1); //mask for positive numbers (32-b+1) zeros and b-1 ones 8338 saturation_mask = _mm_cmpgt_epi32 (a, maskA); //0xff...ff if we need saturation, 0 otherwise 8345 maskA = _mm_slli_epi32(c1, 31 - b); //mask for negative numbers b-1 ones and (32-b+1) zeros 8346 saturation_mask = _mm_cmpgt_epi32 (maskA,a); //0xff...ff if we need saturation, 0 otherwise 8505 __m128i zero, maskA, maskGT0, a0, a_masked, a_shift; variable 8507 maskA = _mm_cmpeq_epi32(a, a); 8508 maskA = _mm_slli_epi32(maskA,(32 - b)); // b ones and (32-b)zeros 8513 a_masked = _mm_and_si128 (a0, maskA); 9036 __m128i maskA, a_masked; variable [all …]
|