Home | History | Annotate | Download | only in jpeg

Lines Matching refs:quantptrSSE

110   short __attribute__((aligned(16))) quantptrSSE[DCTSIZE2];
274 memcpy((char*)quantptrSSE, (char*)compptr->dct_table, sizeof(quantptrSSE));
283 row0 = _mm_mullo_epi16( row0, *(__m128i const*)quantptrSSE );
284 row2 = _mm_mullo_epi16( row2, *(__m128i const*)(quantptrSSE+8*2) );
294 row0 = _mm_mullo_epi16(row0, *(__m128i const*)(quantptrSSE+8*4) );
295 row2 = _mm_mullo_epi16(row2, *(__m128i const*)(quantptrSSE+8*6) );
305 row0 = _mm_mullo_epi16(row0, *(__m128i const*)(quantptrSSE+24) );
306 row2 = _mm_mullo_epi16(row2, *(__m128i const*)(quantptrSSE+8) );
316 row0 = _mm_mullo_epi16(row0, *(__m128i const*)(quantptrSSE+40) );
317 row2 = _mm_mullo_epi16(row2, *(__m128i const*)(quantptrSSE+56));