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

  /external/neven/Embedded/common/src/b_BasicEm/
MathSSE2.c 32 * Return Value: int32 containing resultL of dot product
40 int32 resultL = 0;
99 resultL = _mm_cvtsi128_si32( m_XMM7 );
106 resultL += ( int32 )*vec1L++ * *vec2L++;
108 resultL += ( int32 )*vec1L++ * *vec2L++;
110 resultL += ( int32 )*vec1L++ * *vec2L++;
112 resultL += ( int32 )*vec1L++ * *vec2L++;
114 resultL += ( int32 )*vec1L++ * *vec2L++;
116 resultL += ( int32 )*vec1L++ * *vec2L++;
118 resultL += ( int32 )*vec1L++ * *vec2L++
    [all...]
Complex.c 120 struct bbs_Complex resultL;
121 resultL.imagE = - complA.imagE;
122 resultL.realE = complA.realE;
123 return resultL;
Math.c 420 int32 resultL;
478 : "=&g" ( resultL )
482 return resultL;
501 int32 resultL;
502 resultL = dotProduct_C62x( vec1A, vec2A, sizeA - 1 );
503 return resultL + ( int32 ) *( vec1A + sizeA - 1 ) * *( vec2A + sizeA - 1 );
521 int32 resultL = 0,
556 resultL += accL[ 0 ] + accL[ 1 ] + accL[ 2 ] + accL[ 3 ];
560 for( ; jL--; ) resultL += ( int32 ) *vec1A++ * *vec2A++;
562 return resultL;
    [all...]

Completed in 2109 milliseconds