Searched defs:scaleA (Results 1 - 8 of 8) sorted by relevance

/external/neven/Embedded/common/src/b_TensorEm/
H A DFlt16Alt3D.c138 struct bts_Flt16Alt3D bts_Flt16Alt3D_createScale( int32 scaleA, argument
143 altL.matE = bts_Flt16Mat3D_createScale( scaleA, scaleBbpA );
H A DFlt16Mat3D.c150 struct bts_Flt16Mat3D bts_Flt16Mat3D_createScale( int32 scaleA, int32 scaleBbpA ) argument
153 bts_Flt16Mat3D_scale( &matL, scaleA, scaleBbpA );
241 void bts_Flt16Mat3D_scale( struct bts_Flt16Mat3D* ptrA, int32 scaleA, int32 scaleBbpA ) argument
244 uint32 scaleExpL = bts_absIntLog2( scaleA );
248 scaleA = ( ( scaleA >> ( shiftL - 1 ) ) + 1 ) >> 1;
252 *ptrA = bts_Flt16Mat3D_create32( ptrA->xxE * scaleA, ptrA->xyE * scaleA, ptrA->xzE * scaleA,
253 ptrA->yxE * scaleA, ptr
[all...]
H A DFlt16Alt2D.c164 struct bts_Flt16Alt2D bts_Flt16Alt2D_createScale( int32 scaleA, argument
169 altL.matE = bts_Flt16Mat2D_createScale( scaleA, scaleBbpA );
177 int32 scaleA,
182 altL.matE = bts_Flt16Mat2D_createRigid( angleA, scaleA, scaleBbpA );
176 bts_Flt16Alt2D_createRigid( phase16 angleA, int32 scaleA, int32 scaleBbpA, const struct bts_Flt16Vec2D* centerPtrA ) argument
H A DFlt16Mat2D.c205 struct bts_Flt16Mat2D bts_Flt16Mat2D_createScale( int32 scaleA, int32 scaleBbpA ) argument
208 bts_Flt16Mat2D_scale( &matL, scaleA, scaleBbpA );
214 struct bts_Flt16Mat2D bts_Flt16Mat2D_createRigid( phase16 angleA, int32 scaleA, int32 scaleBbpA ) argument
217 bts_Flt16Mat2D_scale( &matL, scaleA, scaleBbpA );
276 void bts_Flt16Mat2D_scale( struct bts_Flt16Mat2D* ptrA, int32 scaleA, int32 scaleBbpA ) argument
279 uint32 scaleExpL = bts_absIntLog2( scaleA );
283 scaleA = ( ( scaleA >> ( shiftL - 1 ) ) + 1 ) >> 1;
287 *ptrA = bts_Flt16Mat2D_create32( (int32)ptrA->xxE * scaleA,
288 (int32)ptrA->xyE * scaleA,
[all...]
H A DCluster2D.c42 uint32* scaleA, /* resulting scale factor */
72 *scaleA = bbs_fastSqrt32( quotientL );
38 bts_Cluster2D_computeScale( uint32 enumA, int32 bbp_enumA, uint32 denomA, int32 bbp_denomA, uint32* scaleA, int32* bbp_scaleA ) argument
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_texcombine.c100 const GLfloat scaleA = (GLfloat) (1 << combine->ScaleShiftA); local
465 rgba[i][ACOMP] = arg0[i][ACOMP] * scaleA;
470 rgba[i][ACOMP] = arg0[i][ACOMP] * arg1[i][ACOMP] * scaleA;
478 arg2[i][ACOMP] * arg3[i][ACOMP]) * scaleA;
484 rgba[i][ACOMP] = (arg0[i][ACOMP] + arg1[i][ACOMP]) * scaleA;
494 0.5F) * scaleA;
500 rgba[i][ACOMP] = (arg0[i][ACOMP] + arg1[i][ACOMP] - 0.5F) * scaleA;
508 * scaleA;
513 rgba[i][ACOMP] = (arg0[i][ACOMP] - arg1[i][ACOMP]) * scaleA;
519 + arg1[i][ACOMP]) * scaleA;
[all...]
/external/mesa3d/src/mesa/swrast/
H A Ds_texcombine.c92 const GLfloat scaleA = (GLfloat) (1 << combine->ScaleShiftA); local
457 rgba[i][ACOMP] = arg0[i][ACOMP] * scaleA;
462 rgba[i][ACOMP] = arg0[i][ACOMP] * arg1[i][ACOMP] * scaleA;
470 arg2[i][ACOMP] * arg3[i][ACOMP]) * scaleA;
476 rgba[i][ACOMP] = (arg0[i][ACOMP] + arg1[i][ACOMP]) * scaleA;
486 0.5F) * scaleA;
492 rgba[i][ACOMP] = (arg0[i][ACOMP] + arg1[i][ACOMP] - 0.5F) * scaleA;
500 * scaleA;
505 rgba[i][ACOMP] = (arg0[i][ACOMP] - arg1[i][ACOMP]) * scaleA;
511 + arg1[i][ACOMP]) * scaleA;
[all...]
/external/neven/Embedded/common/src/b_BitFeatureEm/
H A DScanner.c34 uint32 bbf_Scanner_scalePrd( uint32 scaleA, uint32 factorA /*0.32 */ )\ argument
36 return ( scaleA >> 16 ) * ( factorA >> 16 ) +
37 ( ( ( scaleA & 0x0FFFF ) * ( factorA >> 16 ) ) >> 16 ) +
38 ( ( ( scaleA >> 16 ) * ( factorA & 0x0FFFF ) ) >> 16 );
987 int32 xA, int32 yA, uint32 scaleA )
992 if( ptrA->scaleE != scaleA )
1064 uint32 scaleA,
1071 ptrA->outArrE.arrPtrE[ ptrA->outCountE * 4 + 2 ] = scaleA;
1097 ptrA->idxArrE.arrPtrE[ minIdxL * 4 + 2 ] = scaleA;
1060 bbf_Scanner_addOutPos( struct bbs_Context* cpA, struct bbf_Scanner* ptrA, int32 xA, int32 yA, uint32 scaleA, int32 actA ) argument

Completed in 735 milliseconds