Searched refs:alpha1 (Results 1 - 8 of 8) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_s3tc.c835 LLVMValueRef alpha1,
871 alpha1 = LLVMBuildBitCast(builder, alpha1, bld16.vec_type, "");
881 delta = LLVMBuildSub(builder, alpha1, alpha0, "");
915 LLVMValueRef rgba, tmp, alpha0, alpha1, alphac, alphac0, bit_pos, shift; local in function:s3tc_dxt5_full_to_rgba_aos
955 alpha1 = LLVMBuildLShr(builder, alpha_lo,
957 alpha1 = LLVMBuildAnd(builder, alpha1,
1011 /* alpha0 > alpha1 selection */
1013 alpha0, alpha1);
833 lp_build_lerpdxta(struct gallivm_state * gallivm,LLVMValueRef alpha0,LLVMValueRef alpha1,LLVMValueRef code,LLVMValueRef sel_mask,unsigned n) argument
1512 lp_build_lerpdxta_block(struct gallivm_state * gallivm,LLVMValueRef alpha0,LLVMValueRef alpha1,LLVMValueRef code,LLVMValueRef sel_mask) argument
1572 LLVMValueRef alpha, alpha0, alpha1, ares; local in function:s3tc_decode_block_dxt5
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/util/
H A Dtexcompress_rgtc_tmp.h38 const TYPE alpha1 = blksrc[1]; local in function:TAG
48 decode = alpha1;
49 else if (alpha0 > alpha1)
50 decode = ((alpha0 * (8 - code) + (alpha1 * (code - 1))) / 7);
52 decode = ((alpha0 * (6 - code) + (alpha1 * (code - 1))) / 5);
108 /* could also thest for alpha0 == alpha1 (and not min/max), but probably not common, so don't bother */
124 /* find best encoding for alpha0 > alpha1 */
/xsrc/external/mit/MesaLib/dist/src/util/
H A Dtexcompress_rgtc_tmp.h38 const TYPE alpha1 = blksrc[1]; local in function:TAG
48 decode = alpha1;
49 else if (alpha0 > alpha1)
50 decode = ((alpha0 * (8 - code) + (alpha1 * (code - 1))) / 7);
52 decode = ((alpha0 * (6 - code) + (alpha1 * (code - 1))) / 5);
108 /* could also thest for alpha0 == alpha1 (and not min/max), but probably not common, so don't bother */
124 /* find best encoding for alpha0 > alpha1 */
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_s3tc.c833 LLVMValueRef alpha1,
869 alpha1 = LLVMBuildBitCast(builder, alpha1, bld16.vec_type, "");
879 delta = LLVMBuildSub(builder, alpha1, alpha0, "");
902 LLVMValueRef tmp, alpha0, alpha1, alphac, alphac0, bit_pos, shift; local in function:s3tc_dxt5_alpha_channel
935 alpha1 = LLVMBuildLShr(builder, alpha_lo,
937 alpha1 = LLVMBuildAnd(builder, alpha1,
940 alpha1 = LLVMBuildTrunc(builder, alpha1, lp_build_vec_typ
831 lp_build_lerpdxta(struct gallivm_state * gallivm,LLVMValueRef alpha0,LLVMValueRef alpha1,LLVMValueRef code,LLVMValueRef sel_mask,unsigned n) argument
1552 lp_build_lerpdxta_block(struct gallivm_state * gallivm,LLVMValueRef alpha0,LLVMValueRef alpha1,LLVMValueRef code,LLVMValueRef sel_mask) argument
1612 LLVMValueRef alpha, alpha0, alpha1, ares; local in function:s3tc_decode_block_dxt5
[all...]
/xsrc/external/mit/mesa-demos/dist/src/demos/
H A Dterrain.c80 float alpha1, alpha2; local in function:calcposobs
99 alpha1 = alpha + FOV / 2.0;
100 v1[0] = sin(alpha1 * M_PI / 180.0);
101 v1[1] = cos(alpha1 * M_PI / 180.0);
/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Dtexcompress_s3tc_tmp.h158 const GLubyte alpha1 = blksrc[1]; local in function:fetch_2d_texel_rgba_dxt5
168 rgba[ACOMP] = UBYTE_TO_CHAN( alpha1 );
169 else if (alpha0 > alpha1)
170 rgba[ACOMP] = UBYTE_TO_CHAN( ((alpha0 * (8 - code) + (alpha1 * (code - 1))) / 7) );
172 rgba[ACOMP] = UBYTE_TO_CHAN( ((alpha0 * (6 - code) + (alpha1 * (code - 1))) / 5) );
604 /* could also thest for alpha0 == alpha1 (and not min/max), but probably not common, so don't bother */
618 /* find best encoding for alpha0 > alpha1 */
/xsrc/external/mit/MesaLib/dist/src/mesa/main/
H A Dtexcompress_s3tc_tmp.h158 const GLubyte alpha1 = blksrc[1]; local in function:fetch_2d_texel_rgba_dxt5
168 rgba[ACOMP] = UBYTE_TO_CHAN( alpha1 );
169 else if (alpha0 > alpha1)
170 rgba[ACOMP] = UBYTE_TO_CHAN( ((alpha0 * (8 - code) + (alpha1 * (code - 1))) / 7) );
172 rgba[ACOMP] = UBYTE_TO_CHAN( ((alpha0 * (6 - code) + (alpha1 * (code - 1))) / 5) );
604 /* could also thest for alpha0 == alpha1 (and not min/max), but probably not common, so don't bother */
618 /* find best encoding for alpha0 > alpha1 */
/xsrc/external/mit/freetype/dist/src/base/
H A Dftstroke.c1460 FT_Angle alpha1; local in function:FT_Stroker_ConicTo
1467 alpha1 = FT_Atan2( end.x - start.x, end.y - start.y );
1471 if ( ft_pos_abs( FT_Angle_Diff( alpha0, alpha1 ) ) >
1488 sinA = ft_pos_abs( FT_Sin( alpha1 - gamma ) );
1673 FT_Angle alpha1; local in function:FT_Stroker_CubicTo
1680 alpha1 = FT_Atan2( end.x - start.x, end.y - start.y );
1684 if ( ft_pos_abs( FT_Angle_Diff( alpha0, alpha1 ) ) >
1701 sinA = ft_pos_abs( FT_Sin( alpha1 - gamma ) );

Completed in 15 milliseconds