Lines Matching refs:MIN2

266             rgba[i][RCOMP] = (GLubyte) MIN2( r, 255 );  in blend_add()
267 rgba[i][GCOMP] = (GLubyte) MIN2( g, 255 ); in blend_add()
268 rgba[i][BCOMP] = (GLubyte) MIN2( b, 255 ); in blend_add()
269 rgba[i][ACOMP] = (GLubyte) MIN2( a, 255 ); in blend_add()
282 rgba[i][RCOMP] = (GLshort) MIN2( r, 255 ); in blend_add()
283 rgba[i][GCOMP] = (GLshort) MIN2( g, 255 ); in blend_add()
284 rgba[i][BCOMP] = (GLshort) MIN2( b, 255 ); in blend_add()
285 rgba[i][ACOMP] = (GLshort) MIN2( a, 255 ); in blend_add()
325 rgba[i][RCOMP] = MIN2( rgba[i][RCOMP], dest[i][RCOMP] ); in blend_min()
326 rgba[i][GCOMP] = MIN2( rgba[i][GCOMP], dest[i][GCOMP] ); in blend_min()
327 rgba[i][BCOMP] = MIN2( rgba[i][BCOMP], dest[i][BCOMP] ); in blend_min()
328 rgba[i][ACOMP] = MIN2( rgba[i][ACOMP], dest[i][ACOMP] ); in blend_min()
337 rgba[i][RCOMP] = MIN2( rgba[i][RCOMP], dest[i][RCOMP] ); in blend_min()
338 rgba[i][GCOMP] = MIN2( rgba[i][GCOMP], dest[i][GCOMP] ); in blend_min()
339 rgba[i][BCOMP] = MIN2( rgba[i][BCOMP], dest[i][BCOMP] ); in blend_min()
340 rgba[i][ACOMP] = MIN2( rgba[i][ACOMP], dest[i][ACOMP] ); in blend_min()
350 rgba[i][RCOMP] = MIN2( rgba[i][RCOMP], dest[i][RCOMP] ); in blend_min()
351 rgba[i][GCOMP] = MIN2( rgba[i][GCOMP], dest[i][GCOMP] ); in blend_min()
352 rgba[i][BCOMP] = MIN2( rgba[i][BCOMP], dest[i][BCOMP] ); in blend_min()
353 rgba[i][ACOMP] = MIN2( rgba[i][ACOMP], dest[i][ACOMP] ); in blend_min()
761 r = MIN2( Rd, Rs ); in blend_general_float()
762 g = MIN2( Gd, Gs ); in blend_general_float()
763 b = MIN2( Bd, Bs ); in blend_general_float()
789 a = MIN2( Ad, As ); in blend_general_float()