Home
last modified time | relevance | path

Searched refs:andmask (Results 1 – 3 of 3) sorted by relevance

/third_party/mesa3d/src/mesa/tnl/
Dt_vb_vertex.c49 GLubyte andmask; member
188 store->andmask = CLIP_FRUSTUM_BITS; in run_vertex_stage()
196 &store->andmask, in run_vertex_stage()
206 &store->andmask, in run_vertex_stage()
211 if (store->andmask) in run_vertex_stage()
223 &store->andmask ); in run_vertex_stage()
225 if (store->andmask) in run_vertex_stage()
229 VB->ClipAndMask = store->andmask; in run_vertex_stage()
Dt_vb_program.c71 GLubyte ormask, andmask; /**< for clipping */ member
135 store->andmask = CLIP_FRUSTUM_BITS; in do_ndc_cliptest()
145 &store->andmask, in do_ndc_cliptest()
155 &store->andmask, in do_ndc_cliptest()
160 if (store->andmask) { in do_ndc_cliptest()
175 &store->andmask ); in do_ndc_cliptest()
177 if (store->andmask) { in do_ndc_cliptest()
182 VB->ClipAndMask = store->andmask; in do_ndc_cliptest()
/third_party/ltp/tools/sparse/sparse-src/
Dexpand.c86 long long ormask, andmask; in get_longlong() local
90 andmask = mask | (mask-1); in get_longlong()
91 ormask = ~andmask; in get_longlong()
94 return (value & andmask) | ormask; in get_longlong()