OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:plane_1
(Results
1 - 2
of
2
) sorted by null
/external/libavc/common/x86/
ih264_ihadamard_scaling_sse42.c
211
__m128i src, plane_0,
plane_1
, temp0, temp1, sign_reg;
local
219
plane_1
= _mm_unpackhi_epi16(src, sign_reg); //b0 b1 b2 b3 -- 32 bits
221
temp0 = _mm_hadd_epi32(plane_0,
plane_1
); //a0+a1 a2+a3 b0+b1 b2+b3
222
temp1 = _mm_hsub_epi32(plane_0,
plane_1
); //a0-a1 a2-a3 b0-b1 b2-b3
224
plane_1
= _mm_hsub_epi32(temp0, temp1); //a0+a1-a2-a3 b0+b1-b2-b3 a0-a1-a2+a3 b0-b1-b2+b3
225
temp0 = _mm_unpacklo_epi32(plane_0,
plane_1
); //a0+a1+a2+a3 a0+a1-a2-a3 b0+b1+b2+b3 b0+b1-b2-b3
226
temp1 = _mm_unpackhi_epi32(plane_0,
plane_1
); //a0-a1+a2-a3 a0-a1-a2+a3 b0-b1+b2-b3 b0-b1-b2+b3
229
plane_1
= _mm_unpackhi_epi64(temp0, temp1); //b0+b1+b2+b3 b0+b1-b2-b3 b0-b1+b2-b3 b0-b1-b2+b3
232
plane_1
= _mm_shuffle_epi32(
plane_1
, 0xd8); //b0+b1+b2+b3 b0-b1+b2-b3 b0+b1-b2-b3 b0-b1-b2+b
[
all
...]
ih264_resi_trans_quant_sse42.c
904
__m128i src, plane_0,
plane_1
, temp0, temp1, sign_reg;
local
[
all
...]
Completed in 555 milliseconds