OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:b_u
(Results
1 - 2
of
2
) sorted by null
/external/libavc/common/x86/
ih264_chroma_intra_pred_filters_ssse3.c
247
WORD32 a_u, a_v,
b_u
, b_v, c_u, c_v;
local
307
b_u
= ((h_u << 4) + h_u + 32) >> 6;
327
b_u2 =
b_u
<< 1;
329
b_u3 =
b_u
+ b_u2;
333
res1_l_8x16b = _mm_setr_epi16(-b_u3, -b_v3, -b_u2, -b_v2, -
b_u
, -b_v, 0, 0);
335
res1_h_8x16b = _mm_setr_epi16(
b_u
, b_v, b_u2, b_v2, b_u3, b_v3,
b_u
<< 2, b_v << 2);
/external/libavc/common/
ih264_chroma_intra_pred_filters.c
439
WORD32 a_u,
b_u
, c_u, h_u, v_u; /* Implementing section 8.3.4.4 . The variables represent the corresponding variables in the section*/
local
443
a_u =
b_u
= c_u = h_u = v_u = 0;
460
b_u
= (34 * h_u + 32) >> 6;/*section 8.3.3.4 equation (8-142)*/
469
val = (a_u +
b_u
* (cols - 3) + c_u * (rows - 3) );/*section 8.3.4.4 equation (8-140)*/
Completed in 4324 milliseconds