Home
last modified time | relevance | path

Searched refs:resultL (Results 1 – 3 of 3) sorted by relevance

/external/neven/Embedded/common/src/b_BasicEm/
DMathSSE2.c40 int32 resultL = 0; in bbs_dotProduct_64SSE2() local
99 resultL = _mm_cvtsi128_si32( m_XMM7 ); in bbs_dotProduct_64SSE2()
106 resultL += ( int32 )*vec1L++ * *vec2L++; in bbs_dotProduct_64SSE2()
108 resultL += ( int32 )*vec1L++ * *vec2L++; in bbs_dotProduct_64SSE2()
110 resultL += ( int32 )*vec1L++ * *vec2L++; in bbs_dotProduct_64SSE2()
112 resultL += ( int32 )*vec1L++ * *vec2L++; in bbs_dotProduct_64SSE2()
114 resultL += ( int32 )*vec1L++ * *vec2L++; in bbs_dotProduct_64SSE2()
116 resultL += ( int32 )*vec1L++ * *vec2L++; in bbs_dotProduct_64SSE2()
118 resultL += ( int32 )*vec1L++ * *vec2L++; in bbs_dotProduct_64SSE2()
120 resultL += ( int32 )*vec1L++ * *vec2L++; in bbs_dotProduct_64SSE2()
[all …]
DComplex.c120 struct bbs_Complex resultL; in bbs_Complex_conj() local
121 resultL.imagE = - complA.imagE; in bbs_Complex_conj()
122 resultL.realE = complA.realE; in bbs_Complex_conj()
123 return resultL; in bbs_Complex_conj()
DMath.c420 int32 resultL; in bbs_dotProduct_intelMMX16() local
478 : "=&g" ( resultL ) in bbs_dotProduct_intelMMX16()
482 return resultL; in bbs_dotProduct_intelMMX16()
501 int32 resultL; in bbs_dotProduct_dsp() local
502 resultL = dotProduct_C62x( vec1A, vec2A, sizeA - 1 ); in bbs_dotProduct_dsp()
503 return resultL + ( int32 ) *( vec1A + sizeA - 1 ) * *( vec2A + sizeA - 1 ); in bbs_dotProduct_dsp()
521 int32 resultL = 0, in bbs_dotProduct_EE() local
556 resultL += accL[ 0 ] + accL[ 1 ] + accL[ 2 ] + accL[ 3 ]; in bbs_dotProduct_EE()
560 for( ; jL--; ) resultL += ( int32 ) *vec1A++ * *vec2A++; in bbs_dotProduct_EE()
562 return resultL; in bbs_dotProduct_EE()