Searched refs:s_mask (Results 1 – 5 of 5) sorted by relevance
/third_party/boost/boost/mpl/set/aux_/ |
D | item.hpp | 53 struct s_mask struct 56 typedef s_mask<T,Base> item_; argument 61 typedef s_mask type; argument 63 BOOST_MPL_AUX_SET_OVERLOAD( aux::yes_tag, IS_MASKED, s_mask, aux::type_wrapper<T>* );
|
D | erase_key_impl.hpp | 43 , identity< s_mask<T,typename Set::item_> >
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_state_fs.c | 416 LLVMValueRef s_mask = LLVMBuildLoad(builder, s_mask_ptr, ""); in lp_build_sample_alpha_to_coverage() local 417 s_mask = LLVMBuildAnd(builder, s_mask, test, ""); in lp_build_sample_alpha_to_coverage() 418 LLVMBuildStore(builder, s_mask, s_mask_ptr); in lp_build_sample_alpha_to_coverage() 733 LLVMValueRef s_mask = lp_build_pointer_get(builder, mask_store, s_mask_idx); in generate_fs_loop() local 735 mask_val = s_mask; in generate_fs_loop() 737 mask_val = LLVMBuildOr(builder, s_mask, mask_val, ""); in generate_fs_loop() 739 …LLVMValueRef mask_in = LLVMBuildAnd(builder, s_mask, lp_build_const_int_vec(gallivm, type, (1ll <<… in generate_fs_loop() 767 LLVMValueRef s_mask = NULL, s_mask_ptr = NULL; in generate_fs_loop() local 807 s_mask = LLVMBuildLoad(builder, s_mask_ptr, ""); in generate_fs_loop() 808 s_mask = LLVMBuildAnd(builder, s_mask, mask_val, ""); in generate_fs_loop() [all …]
|
D | lp_bld_depth.c | 932 unsigned s_shift, s_mask; in lp_build_depth_stencil_test() local 938 have_s = get_s_shift_and_mask(format_desc, &s_shift, &s_mask); in lp_build_depth_stencil_test() 965 if (s_mask != 0xffffffff) { in lp_build_depth_stencil_test() 966 LLVMValueRef mask = lp_build_const_int_vec(gallivm, s_type, s_mask); in lp_build_depth_stencil_test()
|
/third_party/ffmpeg/libavcodec/ |
D | mpegvideo.c | 1462 const int s_mask = (2 << lowres) - 1; in hpel_motion_lowres() local 1471 sx = motion_x & s_mask; in hpel_motion_lowres() 1472 sy = motion_y & s_mask; in hpel_motion_lowres() 1516 const int s_mask = (2 << lowres) - 1; in mpeg_motion_lowres() local 1532 sx = motion_x & s_mask; in mpeg_motion_lowres() 1533 sy = motion_y & s_mask; in mpeg_motion_lowres() 1538 uvsx = ((motion_x >> 1) & s_mask) | (sx & 1); in mpeg_motion_lowres() 1539 uvsy = ((motion_y >> 1) & s_mask) | (sy & 1); in mpeg_motion_lowres() 1546 uvsx = (2 * mx) & s_mask; in mpeg_motion_lowres() 1547 uvsy = (2 * my) & s_mask; in mpeg_motion_lowres() [all …]
|