Searched refs:negmask (Results 1 – 2 of 2) sorted by relevance
/third_party/ffmpeg/libavcodec/alpha/ |
D | mpegvideo_alpha.c | 36 uint64_t levels, negmask, zeros, add, sub; in dct_unquantize_h263_axp() local 45 negmask = maxsw4(levels, -1); /* negative -> ffff (-1) */ in dct_unquantize_h263_axp() 46 negmask = minsw4(negmask, 0); /* positive -> 0000 (0) */ in dct_unquantize_h263_axp() 48 negmask = cmpbge(WORD_VEC(0x7fff), levels); in dct_unquantize_h263_axp() 49 negmask &= (negmask >> 1) | (1 << 7); in dct_unquantize_h263_axp() 50 negmask = zap(-1, negmask); in dct_unquantize_h263_axp() 59 levels -= correction & (negmask << 16); in dct_unquantize_h263_axp() 61 add = qadd & ~negmask; in dct_unquantize_h263_axp() 62 sub = qadd & negmask; in dct_unquantize_h263_axp()
|
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_arit.c | 3492 LLVMValueRef negmask, infmask, zmask; in lp_build_log2_approx() local 3493 negmask = lp_build_cmp(bld, PIPE_FUNC_LESS, x, in lp_build_log2_approx() 3509 res = lp_build_select(bld, negmask, in lp_build_log2_approx()
|