Lines Matching refs:comb
229 for (deUint32 comb = 0; comb < (1<<2); comb++)
232 if (((comb & isTrue) | (~comb & isFalse)) != (1<<2)-1)
235 const bool cmp0True = ((comb>>0)&1) != 0;
236 const bool cmp1True = ((comb>>1)&1) != 0;
339 for (deUint32 comb = 0; comb < (1<<4); comb++)
342 // 1) True bit is set in comb but not in isTrue => sample can not be true
343 // 2) True bit is NOT set in comb and not in isFalse => sample can not be false
344 if (((comb & isTrue) | (~comb & isFalse)) != (1<<4)-1)
347 const BVec4 cmpTrue = extractBVec4(comb, 0);
479 for (deUint32 comb = 0; comb < (1<<8); comb++)
482 if (((comb & isTrue) | (~comb & isFalse)) != (1<<8)-1)
485 const BVec4 cmpTrue0 = extractBVec4(comb, 0);
486 const BVec4 cmpTrue1 = extractBVec4(comb, 4);