HomeSort by relevance Sort by last modified time
    Searched refs:scaleA (Results 1 - 17 of 17) sorted by null

  /external/neven/Embedded/common/src/b_TensorEm/
Int16Mat2D.h 81 struct bts_Int16Mat2D bts_Int16Mat2D_createRigid( phase16 angleA, struct flt16 scaleA );
84 void bts_Int16Mat2D_scale( struct bts_Int16Mat2D* ptrA, struct flt16 scaleA );
Int16Mat2D.c 104 struct bts_Int16Mat2D bts_Int16Mat2D_createRigid( phase16 angleA, struct flt16 scaleA )
107 bts_Int16Mat2D_scale( &matL, scaleA );
113 void bts_Int16Mat2D_scale( struct bts_Int16Mat2D* ptrA, struct flt16 scaleA )
115 int32 xxL = ( int32 ) ptrA->xxE * scaleA.valE;
116 int32 xyL = ( int32 ) ptrA->xyE * scaleA.valE;
117 int32 yxL = ( int32 ) ptrA->yxE * scaleA.valE;
118 int32 yyL = ( int32 ) ptrA->yyE * scaleA.valE;
127 ptrA->bbpE += scaleA.bbpE - shiftL;
Flt16Mat2D.h 103 struct bts_Flt16Mat2D bts_Flt16Mat2D_createScale( int32 scaleA, int32 scaleBbpA );
106 struct bts_Flt16Mat2D bts_Flt16Mat2D_createRigid( phase16 angleA, int32 scaleA, int32 scaleBbpA );
115 void bts_Flt16Mat2D_scale( struct bts_Flt16Mat2D* ptrA, int32 scaleA, int32 scaleBbpA );
Flt16Mat3D.c 150 struct bts_Flt16Mat3D bts_Flt16Mat3D_createScale( int32 scaleA, int32 scaleBbpA )
153 bts_Flt16Mat3D_scale( &matL, scaleA, scaleBbpA );
241 void bts_Flt16Mat3D_scale( struct bts_Flt16Mat3D* ptrA, int32 scaleA, int32 scaleBbpA )
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, ptrA->yyE * scaleA, ptrA->yzE * scaleA
    [all...]
Flt16Mat2D.c 205 struct bts_Flt16Mat2D bts_Flt16Mat2D_createScale( int32 scaleA, int32 scaleBbpA )
208 bts_Flt16Mat2D_scale( &matL, scaleA, scaleBbpA );
214 struct bts_Flt16Mat2D bts_Flt16Mat2D_createRigid( phase16 angleA, int32 scaleA, int32 scaleBbpA )
217 bts_Flt16Mat2D_scale( &matL, scaleA, scaleBbpA );
276 void bts_Flt16Mat2D_scale( struct bts_Flt16Mat2D* ptrA, int32 scaleA, int32 scaleBbpA )
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...]
Flt16Alt2D.h 108 struct bts_Flt16Alt2D bts_Flt16Alt2D_createScale( int32 scaleA,
114 int32 scaleA,
Flt16Mat3D.h 115 struct bts_Flt16Mat3D bts_Flt16Mat3D_createScale( int32 scaleA, int32 scaleBbpA );
130 void bts_Flt16Mat3D_scale( struct bts_Flt16Mat3D* ptrA, int32 scaleA, int32 scaleBbpA );
Flt16Alt2D.c 164 struct bts_Flt16Alt2D bts_Flt16Alt2D_createScale( int32 scaleA,
169 altL.matE = bts_Flt16Mat2D_createScale( scaleA, scaleBbpA );
177 int32 scaleA,
182 altL.matE = bts_Flt16Mat2D_createRigid( angleA, scaleA, scaleBbpA );
Flt16Alt3D.c 138 struct bts_Flt16Alt3D bts_Flt16Alt3D_createScale( int32 scaleA,
143 altL.matE = bts_Flt16Mat3D_createScale( scaleA, scaleBbpA );
Flt16Alt3D.h 90 struct bts_Flt16Alt3D bts_Flt16Alt3D_createScale( int32 scaleA,
Cluster2D.c 42 uint32* scaleA, /* resulting scale factor */
72 *scaleA = bbs_fastSqrt32( quotientL );
  /external/chromium_org/third_party/skia/src/effects/
SkColorFilters.cpp 263 unsigned scaleA = SkAlpha255To256(a);
264 unsigned r = pin(SkAlphaMul(SkGetPackedR32(c), scaleR) + SkAlphaMul(addR, scaleA), a);
265 unsigned g = pin(SkAlphaMul(SkGetPackedG32(c), scaleG) + SkAlphaMul(addG, scaleA), a);
266 unsigned b = pin(SkAlphaMul(SkGetPackedB32(c), scaleB) + SkAlphaMul(addB, scaleA), a);
317 unsigned scaleA = SkAlpha255To256(a);
318 unsigned r = pin(SkGetPackedR32(c) + SkAlphaMul(addR, scaleA), a);
319 unsigned g = pin(SkGetPackedG32(c) + SkAlphaMul(addG, scaleA), a);
320 unsigned b = pin(SkGetPackedB32(c) + SkAlphaMul(addB, scaleA), a);
448 unsigned scaleA = SkAlpha255To256(a);
449 unsigned r = SkAlphaMul(SkGetPackedR32(c), scaleR) + SkAlphaMul(addR, scaleA);
    [all...]
  /external/skia/src/effects/
SkColorFilters.cpp 263 unsigned scaleA = SkAlpha255To256(a);
264 unsigned r = pin(SkAlphaMul(SkGetPackedR32(c), scaleR) + SkAlphaMul(addR, scaleA), a);
265 unsigned g = pin(SkAlphaMul(SkGetPackedG32(c), scaleG) + SkAlphaMul(addG, scaleA), a);
266 unsigned b = pin(SkAlphaMul(SkGetPackedB32(c), scaleB) + SkAlphaMul(addB, scaleA), a);
317 unsigned scaleA = SkAlpha255To256(a);
318 unsigned r = pin(SkGetPackedR32(c) + SkAlphaMul(addR, scaleA), a);
319 unsigned g = pin(SkGetPackedG32(c) + SkAlphaMul(addG, scaleA), a);
320 unsigned b = pin(SkGetPackedB32(c) + SkAlphaMul(addB, scaleA), a);
448 unsigned scaleA = SkAlpha255To256(a);
449 unsigned r = SkAlphaMul(SkGetPackedR32(c), scaleR) + SkAlphaMul(addR, scaleA);
    [all...]
  /external/neven/Embedded/common/src/b_BitFeatureEm/
Scanner.h 273 int32 xA, int32 yA, uint32 scaleA );
291 uint32 scaleA,
Scanner.c 34 uint32 bbf_Scanner_scalePrd( uint32 scaleA, uint32 factorA /*0.32 */ )\
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 )
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_texcombine.c 100 const GLfloat scaleA = (GLfloat) (1 << combine->ScaleShiftA);
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/
s_texcombine.c 92 const GLfloat scaleA = (GLfloat) (1 << combine->ScaleShiftA);
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...]

Completed in 304 milliseconds